| 52 | } |
| 53 | |
| 54 | static void logBuffer(Level level, const WCHAR *tag, const WCHAR *msg) { |
| 55 | LogHandler h = mHandler; |
| 56 | if (h == nullptr) { |
| 57 | return; |
| 58 | } |
| 59 | h(level, tag, msg); |
| 60 | } |
| 61 | |
| 62 | static inline LogHandler getLogHandler() noexcept { |
| 63 | return mHandler; |
nothing calls this directly
no outgoing calls
no test coverage detected