 |
Cinder
0.8.6
|
Go to the documentation of this file.
30 #if( CINDER_VERSION < 807 )
34 #if ! defined( NDEBUG )
38 #define CI_LOG_V( stream ) do{ ci::app::console() << CINDER_CURRENT_FUNCTION << " | " << stream << std::endl; } while( 0 )
39 #define CI_LOG_W( warningStream ) do{ CI_LOG_V( __LINE__ << " | WARNING | " << warningStream ); } while( 0 )
40 #define CI_LOG_E( errorStream ) do{ CI_LOG_V( __LINE__ << " | ERROR | " << errorStream ); } while( 0 )
44 #define CI_LOG_V( stream ) do{} while( 0 )
45 #define CI_LOG_W( warningStream ) do{} while( 0 )
46 #define CI_LOG_E( errorStream ) do{} while( 0 )
48 #endif // ! defined( NDEBUG )
50 #endif // CINDER_VERSION < 807