From e84fc727e293c5c0305eb3822a877419c067047a Mon Sep 17 00:00:00 2001 From: Borisov Sergey Date: Sun, 10 Dec 2023 09:38:37 +0500 Subject: [PATCH] Fix incorrect name --- quill/include/quill/detail/LogMacros.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quill/include/quill/detail/LogMacros.h b/quill/include/quill/detail/LogMacros.h index 56921174..8703eb6a 100644 --- a/quill/include/quill/detail/LogMacros.h +++ b/quill/include/quill/detail/LogMacros.h @@ -130,7 +130,7 @@ break; \ } \ \ - limit_us = now + min_interval; \ + next_log_time = now + min_interval; \ QUILL_LOGGER_CALL_NOFN(likelyhood, logger, log_statement_level, fmt, ##__VA_ARGS__); \ } \ } while (0) @@ -286,7 +286,7 @@ break; \ } \ \ - limit_us = now + min_interval; \ + next_log_time = now + min_interval; \ QUILL_LOGGER_CALL_NOFN_CFORMAT(likelyhood, logger, log_statement_level, fmt, ##__VA_ARGS__); \ } \ } while (0)