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

Method AddLog

library/cpp/logger/log.cpp:150–159  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

148}
149
150void TLog::AddLog(const char* format, ...) const {
151 va_list args;
152 va_start(args, format);
153
154 Y_DEFER {
155 va_end(args);
156 };
157
158 Impl_->AddLog(Impl_->DefaultPriority(), format, args);
159}
160
161void TLog::AddLog(ELogPriority priority, const char* format, ...) const {
162 va_list args;

Callers 6

AddLogVAListMethod · 0.45
TestFileMethod · 0.45
TestThreadedMethod · 0.45
TestNoFlushMethod · 0.45
PrintErrorsMethod · 0.45

Calls 1

DefaultPriorityMethod · 0.45

Tested by 4

TestFileMethod · 0.36
TestThreadedMethod · 0.36
TestNoFlushMethod · 0.36