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 @ 4:ab6db404403a
History | View | Annotate | Download (377 Bytes)
| 1 |
#pragma once
|
|---|---|
| 2 |
|
| 3 |
|
| 4 |
/**
|
| 5 |
* Utility function to log errors using the cinder::log library.
|
| 6 |
* Errors are logged to collidoscope_error.log file.
|
| 7 |
*
|
| 8 |
*/
|
| 9 |
void logError( const std::string &errorMsg ); |
| 10 |
|
| 11 |
|
| 12 |
/**
|
| 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 ); |