| 6 | {} |
| 7 | |
| 8 | THolder<TLogBackend> TOwningThreadedLogBackendCreator::DoCreateLogBackend() const { |
| 9 | return MakeHolder<TOwningThreadedLogBackend>(Slave->CreateLogBackend().Release(), QueueLen, QueueOverflowCallback); |
| 10 | } |
| 11 | |
| 12 | bool TOwningThreadedLogBackendCreator::Init(const IInitContext& ctx) { |
| 13 | ctx.GetValue("QueueLen", QueueLen); |
nothing calls this directly
no test coverage detected