From 12f01e0ab9b92ccda7bb749ff5885a24cc660459 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Thu, 17 Dec 2015 20:03:46 +0300 Subject: [PATCH] Helper to suppress unnecessary log messages in unit tests. --- base/logging.hpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/base/logging.hpp b/base/logging.hpp index 384d33d7d3..f97af58be6 100644 --- a/base/logging.hpp +++ b/base/logging.hpp @@ -25,6 +25,19 @@ namespace my void LogMessageDefault(LogLevel level, SrcPoint const & srcPoint, string const & msg); void LogMessageTests(LogLevel level, SrcPoint const & srcPoint, string const & msg); + + /// Scope Guard to temporarily suppress specific log level, for example, in unit tests: + /// ... + /// { + /// LogLevelSuppressor onlyLERRORAndLCriticalLogsAreEnabled; + /// TEST(SomeFunctionWhichHasDebugOrInfoOrWarningLogs(), ()); + /// } + struct LogLevelSuppressor + { + LogLevel m_old = g_LogLevel; + LogLevelSuppressor(LogLevel temporaryLogLevel = LERROR) { g_LogLevel = temporaryLogLevel; } + ~LogLevelSuppressor() { g_LogLevel = m_old; } + }; } using ::my::LDEBUG;