diff options
author | xandox <xandox@yandex-team.ru> | 2022-02-10 16:50:09 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:09 +0300 |
commit | 3d5b41f030a455d440f7aabc83786259ebb1c8e0 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/monlib/counters | |
parent | 18a7a7238872285be04420b26293943111302767 (diff) | |
download | ydb-3d5b41f030a455d440f7aabc83786259ebb1c8e0.tar.gz |
Restoring authorship annotation for <xandox@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/monlib/counters')
-rw-r--r-- | library/cpp/monlib/counters/counters.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/monlib/counters/counters.h b/library/cpp/monlib/counters/counters.h index 2c6d8929fe..038b55f0c8 100644 --- a/library/cpp/monlib/counters/counters.h +++ b/library/cpp/monlib/counters/counters.h @@ -26,7 +26,7 @@ namespace NMonitoring { out.Flush(); \ } -#define OUTPUT_NAMED_COUNTER(var, name) out << name << ": \t" << var << NMonitoring::PrettyNum(var, prettyBuf, 32) << '\n' +#define OUTPUT_NAMED_COUNTER(var, name) out << name << ": \t" << var << NMonitoring::PrettyNum(var, prettyBuf, 32) << '\n' #define OUTPUT_COUNTER(var) OUTPUT_NAMED_COUNTER(var, #var); char* PrettyNumShort(i64 val, char* buf, size_t size); |