| 170 | } |
| 171 | |
| 172 | void TLog::AddLogVAList(const char* format, va_list lst) { |
| 173 | Impl_->AddLog(Impl_->DefaultPriority(), format, lst); |
| 174 | } |
| 175 | |
| 176 | void TLog::ReopenLog() { |
| 177 | if (const auto copy = Impl_) { |
nothing calls this directly
no test coverage detected