| 41 | static LogFunction logFunction = defaultLogFunction; |
| 42 | |
| 43 | void Log(LogLevel level, UString prefix, const UString &text) |
| 44 | { |
| 45 | std::lock_guard<std::mutex> lock(loggerMutex); |
| 46 | logFunction(level, prefix, text); |
| 47 | } |
| 48 | |
| 49 | void _logAssert(UString prefix, UString string, int line, UString file) |
| 50 | { |
no outgoing calls
no test coverage detected