| 20 | } |
| 21 | |
| 22 | THolder<TOwningThreadedLogBackend> CreateOwningThreadedLogBackend(const TString& fname, size_t queueLen) { |
| 23 | return MakeHolder<TOwningThreadedLogBackend>(CreateLogBackend(fname, LOG_MAX_PRIORITY, false).Release(), queueLen); |
| 24 | } |
| 25 | |
| 26 | class TLog::TImpl: public TAtomicRefCount<TImpl> { |
| 27 | class TPriorityLogStream final: public IOutputStream { |
no test coverage detected