| 194 | } |
| 195 | |
| 196 | void LogDebug(const std::string & text) |
| 197 | { |
| 198 | AutoMutex lock(g_logmutex); |
| 199 | InitLogging(); |
| 200 | |
| 201 | if(g_logginglevel<LOGGING_LEVEL_DEBUG) return; |
| 202 | |
| 203 | LogMessage("[OpenColorIO Debug]: ", text); |
| 204 | } |
| 205 | |
| 206 | bool IsDebugLoggingEnabled() |
| 207 | { |