diff options
author | ivanfefer <ivanfefer@yandex-team.ru> | 2022-02-10 16:50:13 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:13 +0300 |
commit | 15ab2cc1596afd590aac55ef0aab6593ca64df74 (patch) | |
tree | 6dfabe9c72cae9d787286887c64b83d847ea362d /library/cpp/logger/global/common.cpp | |
parent | bd94f0cb1ab82877baa4f60df8328966d1501c9e (diff) | |
download | ydb-15ab2cc1596afd590aac55ef0aab6593ca64df74.tar.gz |
Restoring authorship annotation for <ivanfefer@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/logger/global/common.cpp')
-rw-r--r-- | library/cpp/logger/global/common.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/logger/global/common.cpp b/library/cpp/logger/global/common.cpp index 4fb05c19b4b..b8ae53a883f 100644 --- a/library/cpp/logger/global/common.cpp +++ b/library/cpp/logger/global/common.cpp @@ -23,10 +23,10 @@ namespace NLoggingImpl { } } -bool TLogFilter::CheckLoggingContext(TLog& log, const TLogRecordContext& context) { - return context.Priority <= log.FiltrationLevel(); -} - +bool TLogFilter::CheckLoggingContext(TLog& log, const TLogRecordContext& context) { + return context.Priority <= log.FiltrationLevel(); +} + TSimpleSharedPtr<TLogElement> TLogFilter::StartRecord(TLog& logger, const TLogRecordContext& context, TSimpleSharedPtr<TLogElement> earlier) { if (earlier) return earlier; |