| 10 | } |
| 11 | |
| 12 | LogGuard::LogGuard() |
| 13 | : m_logLevel(OCIO::GetLoggingLevel()) |
| 14 | { |
| 15 | OCIO::SetLoggingLevel(OCIO::LOGGING_LEVEL_DEBUG); |
| 16 | OCIO::SetLoggingFunction(&CustomLoggingFunction); |
| 17 | } |
| 18 | |
| 19 | LogGuard::~LogGuard() |
| 20 | { |
nothing calls this directly
no test coverage detected