| 1565 | #endif // OS_WIN |
| 1566 | |
| 1567 | void CloseLogFile() { |
| 1568 | LoggingLock logging_lock; |
| 1569 | CloseLogFileUnlocked(); |
| 1570 | } |
| 1571 | |
| 1572 | void RawLog(int level, const char* message) { |
| 1573 | if (level >= FLAGS_minloglevel) { |
nothing calls this directly
no test coverage detected