| 56 | } |
| 57 | |
| 58 | inline void ReopenLogNoFlush() { |
| 59 | if (!IsOpen()) { |
| 60 | return; |
| 61 | } |
| 62 | |
| 63 | Backend_->ReopenLogNoFlush(); |
| 64 | } |
| 65 | |
| 66 | inline void AddLog(ELogPriority priority, const char* format, va_list args) const { |
| 67 | if (!IsOpen()) { |
nothing calls this directly
no test coverage detected