| 75 | } |
| 76 | |
| 77 | void vlogx(LogSeverity::Enum sev, System system, const char *format, va_list args) |
| 78 | { |
| 79 | ScopedMutex sm(s_mutex); |
| 80 | |
| 81 | char buf[8192]; |
| 82 | stbsp_vsnprintf(buf, sizeof(buf), format, args); |
| 83 | |
| 84 | stdout_log(sev, system, buf); |
| 85 | console_log(sev, system, buf); |
| 86 | } |
| 87 | |
| 88 | void logx(LogSeverity::Enum sev, System system, const char *format, ...) |
| 89 | { |
no test coverage detected