diff options
author | varvar4ik <varvar4ik@yandex-team.ru> | 2022-02-10 16:50:12 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:12 +0300 |
commit | f5256e2807bd0fc8626a4ce002a83b9b13860269 (patch) | |
tree | aabfc2cd4e19e47ba787880ae1834c7ccbc09916 /library/cpp/logger/backend.h | |
parent | bd077d09a08e659195376ee97dc24728bb554246 (diff) | |
download | ydb-f5256e2807bd0fc8626a4ce002a83b9b13860269.tar.gz |
Restoring authorship annotation for <varvar4ik@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/logger/backend.h')
-rw-r--r-- | library/cpp/logger/backend.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/library/cpp/logger/backend.h b/library/cpp/logger/backend.h index d088726d6d4..e530fb27744 100644 --- a/library/cpp/logger/backend.h +++ b/library/cpp/logger/backend.h @@ -16,15 +16,15 @@ public: virtual void WriteData(const TLogRecord& rec) = 0; virtual void ReopenLog() = 0; - - // Does not guarantee consistency with previous WriteData() calls: - // log entries could be written to the new (reopened) log file due to - // buffering effects. - virtual void ReopenLogNoFlush(); - + + // Does not guarantee consistency with previous WriteData() calls: + // log entries could be written to the new (reopened) log file due to + // buffering effects. + virtual void ReopenLogNoFlush(); + virtual ELogPriority FiltrationLevel() const; - static void ReopenAllBackends(bool flush = true); + static void ReopenAllBackends(bool flush = true); virtual size_t QueueSize() const; }; |