| 102 | |
| 103 | |
| 104 | void Log::PRINTLN(const char *format, ...) |
| 105 | { |
| 106 | CriticalSection::SafeLock l(mutex); |
| 107 | va_list arglist; |
| 108 | va_start(arglist, format); |
| 109 | vfprintf(logFile, format, arglist); |
| 110 | va_end(arglist); |
| 111 | fprintf(logFile, "\n"); |
| 112 | flush(); |
| 113 | } |
no outgoing calls
no test coverage detected