| 99 | } |
| 100 | |
| 101 | void Log::Warn(const char* fmt, ...) |
| 102 | { |
| 103 | va_list args; |
| 104 | va_start(args, fmt); |
| 105 | LogWrite("WARN", fmt, args); |
| 106 | va_end(args); |
| 107 | } |
| 108 | |
| 109 | void Log::Error(const char* fmt, ...) |
| 110 | { |
nothing calls this directly
no test coverage detected