aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/logger/backend.h
diff options
context:
space:
mode:
authorvarvar4ik <varvar4ik@yandex-team.ru>2022-02-10 16:50:12 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:12 +0300
commitf5256e2807bd0fc8626a4ce002a83b9b13860269 (patch)
treeaabfc2cd4e19e47ba787880ae1834c7ccbc09916 /library/cpp/logger/backend.h
parentbd077d09a08e659195376ee97dc24728bb554246 (diff)
downloadydb-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.h14
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;
};