Send an ERROR log message to android logcat. */
| 107 | |
| 108 | /* Send an ERROR log message to android logcat. */ |
| 109 | void log_error(string message) { |
| 110 | __android_log_write(ANDROID_LOG_ERROR, LOG_TAG, message.c_str()); |
| 111 | } |
| 112 | |
| 113 | /* Send an WARN log message to android logcat. */ |
| 114 | void log_warn(string message) { |