forked from organicmaps/organicmaps
Renaming to ScopedLogLevelChanger.
This commit is contained in:
parent
cfae9d4ba4
commit
d2622868bf
1 changed files with 3 additions and 3 deletions
|
@ -36,11 +36,11 @@ namespace my
|
|||
/// LogLevelSuppressor onlyLERRORAndLCriticalLogsAreEnabled;
|
||||
/// TEST(SomeFunctionWhichHasDebugOrInfoOrWarningLogs(), ());
|
||||
/// }
|
||||
struct LogLevelSuppressor
|
||||
struct ScopedLogLevelChanger
|
||||
{
|
||||
LogLevel m_old = g_LogLevel;
|
||||
LogLevelSuppressor(LogLevel temporaryLogLevel = LERROR) { g_LogLevel = temporaryLogLevel; }
|
||||
~LogLevelSuppressor() { g_LogLevel = m_old; }
|
||||
ScopedLogLevelChanger(LogLevel temporaryLogLevel = LERROR) { g_LogLevel = temporaryLogLevel; }
|
||||
~ScopedLogLevelChanger() { g_LogLevel = m_old; }
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue