From 870ede0379d0a7fa6b1e63de00a4b202293d04ca Mon Sep 17 00:00:00 2001 From: Geoffrey Merck Date: Sun, 3 Mar 2024 20:23:11 +0100 Subject: [PATCH] change initial threshold to 2 #44 --- BaseCommon/Log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseCommon/Log.cpp b/BaseCommon/Log.cpp index 2007d7f..6f749e1 100644 --- a/BaseCommon/Log.cpp +++ b/BaseCommon/Log.cpp @@ -29,7 +29,7 @@ std::recursive_mutex CLog::m_targetsMutex; std::vector CLog::m_targets = { new CLogConsoleTarget(LOG_DEBUG) }; std::string CLog::m_prevMsg = ""; uint CLog::m_prevMsgCount = 0U; -uint CLog::m_repeatThreshold = 1U; +uint CLog::m_repeatThreshold = 2U; void CLog::addTarget(CLogTarget* target)