| 107 | } |
| 108 | |
| 109 | void Log::Error(const char* fmt, ...) |
| 110 | { |
| 111 | va_list args; |
| 112 | va_start(args, fmt); |
| 113 | LogWrite("ERR ", fmt, args); |
| 114 | va_end(args); |
| 115 | } |
| 116 | |
| 117 | void Log::Debug(const char* fmt, ...) |
| 118 | { |
nothing calls this directly
no test coverage detected