diff options
author | Devtools Arcadia <arcadia-devtools@yandex-team.ru> | 2022-02-07 18:08:42 +0300 |
---|---|---|
committer | Devtools Arcadia <arcadia-devtools@mous.vla.yp-c.yandex.net> | 2022-02-07 18:08:42 +0300 |
commit | 1110808a9d39d4b808aef724c861a2e1a38d2a69 (patch) | |
tree | e26c9fed0de5d9873cce7e00bc214573dc2195b7 /library/cpp/logger/element.cpp | |
download | ydb-1110808a9d39d4b808aef724c861a2e1a38d2a69.tar.gz |
intermediate changes
ref:cde9a383711a11544ce7e107a78147fb96cc4029
Diffstat (limited to 'library/cpp/logger/element.cpp')
-rw-r--r-- | library/cpp/logger/element.cpp | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/library/cpp/logger/element.cpp b/library/cpp/logger/element.cpp new file mode 100644 index 0000000000..b510fe16e1 --- /dev/null +++ b/library/cpp/logger/element.cpp @@ -0,0 +1,38 @@ +#include "log.h" +#include "element.h" + +#include <utility> + +TLogElement::TLogElement(const TLog* parent) + : Parent_(parent) + , Priority_(Parent_->DefaultPriority()) +{ + Reset(); +} + +TLogElement::TLogElement(const TLog* parent, ELogPriority priority) + : Parent_(parent) + , Priority_(priority) +{ + Reset(); +} + +TLogElement::~TLogElement() { + try { + Finish(); + } catch (...) { + } +} + +void TLogElement::DoFlush() { + if (IsNull()) { + return; + } + + const size_t filled = Filled(); + + if (filled) { + Parent_->Write(Priority_, Data(), filled); + Reset(); + } +} |