| 9 | namespace logging::android { |
| 10 | |
| 11 | static void android_log_handler(Log::Level level, const char *tag, const char *msg) { |
| 12 | #ifdef __ANDROID__ |
| 13 | __android_log_print(static_cast<int>(level), "TMoe", "%s: %s", tag, msg); |
| 14 | #endif |
| 15 | } |
| 16 | |
| 17 | static bool sInitialized = false; |
| 18 |
nothing calls this directly
no outgoing calls
no test coverage detected