| 91 | |
| 92 | |
| 93 | void Log::println(const char *format, ...) |
| 94 | { |
| 95 | CriticalSection::SafeLock l(mutex); |
| 96 | va_list arglist; |
| 97 | va_start(arglist, format); |
| 98 | vfprintf(logFile, format, arglist); |
| 99 | va_end(arglist); |
| 100 | fprintf(logFile, "\n"); |
| 101 | } |
| 102 | |
| 103 | |
| 104 | void Log::PRINTLN(const char *format, ...) |
no outgoing calls
no test coverage detected