| 28 | ILogBackendCreator::TFactory::TRegistrator<TCompositeBackendCreator> TCompositeBackendCreator::Registrar("composite"); |
| 29 | |
| 30 | void TCompositeBackendCreator::DoToJson(NJson::TJsonValue& value) const { |
| 31 | for (const auto& child: Children) { |
| 32 | child->ToJson(value["SubLogger"].AppendValue(NJson::JSON_MAP)); |
| 33 | } |
| 34 | } |
nothing calls this directly
no test coverage detected