| 31 | } // anon. |
| 32 | |
| 33 | LogGuard::LogGuard() |
| 34 | : m_logLevel(GetLoggingLevel()) |
| 35 | { |
| 36 | SetLoggingLevel(LOGGING_LEVEL_DEBUG); |
| 37 | SetLoggingFunction(&CustomLoggingFunction); |
| 38 | } |
| 39 | |
| 40 | LogGuard::LogGuard(LoggingLevel level) |
| 41 | : m_logLevel(GetLoggingLevel()) |
nothing calls this directly
no test coverage detected