| 123 | }; |
| 124 | |
| 125 | TLog::TLog() |
| 126 | : Impl_(MakeIntrusive<TImpl>(nullptr)) |
| 127 | { |
| 128 | } |
| 129 | |
| 130 | TLog::TLog(const TString& fname, ELogPriority priority) |
| 131 | : TLog(CreateLogBackend(fname, priority, false)) |
nothing calls this directly
no test coverage detected