diff options
author | varvar4ik <varvar4ik@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 | c1fc12057772730209766bc9bd09ed842310b1c8 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/logger/backend.h | |
parent | f5256e2807bd0fc8626a4ce002a83b9b13860269 (diff) | |
download | ydb-c1fc12057772730209766bc9bd09ed842310b1c8.tar.gz |
Restoring authorship annotation for <varvar4ik@yandex-team.ru>. Commit 2 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 e530fb27744..d088726d6d4 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; }; |