To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / CollidoscopeApp / include / Log.h @ 3:7fb593d53361
History | View | Annotate | Download (377 Bytes)
| 1 | 0:02467299402e | f | #pragma once
|
|---|---|---|---|
| 2 | |||
| 3 | |||
| 4 | 3:7fb593d53361 | f | /**
|
| 5 | * Utility function to log errors using the cinder::log library.
|
||
| 6 | * Errors are logged to collidoscope_error.log file.
|
||
| 7 | *
|
||
| 8 | */
|
||
| 9 | 0:02467299402e | f | void logError( const std::string &errorMsg ); |
| 10 | |||
| 11 | |||
| 12 | 3:7fb593d53361 | f | /**
|
| 13 | * Utility function to log info using the cinder::log library.
|
||
| 14 | * Errors are logged to the terminal. Used only for debugging.
|
||
| 15 | *
|
||
| 16 | */
|
||
| 17 | void logInfo( const std::string &infoMsg ); |