| 80 | |
| 81 | |
| 82 | void Log::PRINT(const char *format, ...) |
| 83 | { |
| 84 | CriticalSection::SafeLock l(mutex); |
| 85 | va_list arglist; |
| 86 | va_start(arglist, format); |
| 87 | vfprintf(logFile, format, arglist); |
| 88 | va_end(arglist); |
| 89 | flush(); |
| 90 | } |
| 91 | |
| 92 | |
| 93 | void Log::println(const char *format, ...) |