| 33 | namespace cinder { namespace android { |
| 34 | |
| 35 | void dbg_app_log( const std::string& s ) |
| 36 | { |
| 37 | std::stringstream ss; |
| 38 | ss << s; |
| 39 | DBG_APP_LOGI( ss.str().c_str() ); |
| 40 | } |
| 41 | |
| 42 | void dbg_app_warn( const std::string& s ) |
| 43 | { |
no test coverage detected