diff options
author | Ben Woosley <ben.woosley@gmail.com> | 2020-02-07 16:24:51 +0000 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2020-04-30 18:02:04 +0800 |
commit | 49f6178c3e5e3ad54a419da9d8523207da17fc64 (patch) | |
tree | 4b11d3c3b02665b2ce4e04b7a52b9057d31ff55c /src/logging | |
parent | 5d4999951ee32e333b511245862628e80f83b703 (diff) |
Drop unused LOG_TIME_MICROS helper
Diffstat (limited to 'src/logging')
-rw-r--r-- | src/logging/timer.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/logging/timer.h b/src/logging/timer.h index 21bb3d121e..7094098802 100644 --- a/src/logging/timer.h +++ b/src/logging/timer.h @@ -93,8 +93,6 @@ private: } // namespace BCLog -#define LOG_TIME_MICROS(end_msg, ...) \ - BCLog::Timer<std::chrono::microseconds> PASTE2(logging_timer, __COUNTER__)(__func__, end_msg, ## __VA_ARGS__) #define LOG_TIME_MILLIS(end_msg, ...) \ BCLog::Timer<std::chrono::milliseconds> PASTE2(logging_timer, __COUNTER__)(__func__, end_msg, ## __VA_ARGS__) #define LOG_TIME_SECONDS(end_msg, ...) \ |