MCPcopy Create free account
hub / github.com/catboost/catboost / DoCreateLogBackend

Method DoCreateLogBackend

library/cpp/logger/composite_creator.cpp:5–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3#include "uninitialized_creator.h"
4
5THolder<TLogBackend> TCompositeBackendCreator::DoCreateLogBackend() const {
6 auto res = MakeHolder<TCompositeLogBackend>();
7 for (const auto& child : Children) {
8 res->AddLogBackend(child->CreateLogBackend());
9 }
10 return std::move(res);
11}
12
13
14TCompositeBackendCreator::TCompositeBackendCreator()

Callers

nothing calls this directly

Calls 3

AddLogBackendMethod · 0.80
CreateLogBackendMethod · 0.80
moveFunction · 0.50

Tested by

no test coverage detected