| 184 | } |
| 185 | |
| 186 | void LogInfo(const std::string & text) |
| 187 | { |
| 188 | AutoMutex lock(g_logmutex); |
| 189 | InitLogging(); |
| 190 | |
| 191 | if(g_logginglevel<LOGGING_LEVEL_INFO) return; |
| 192 | |
| 193 | LogMessage("[OpenColorIO Info]: ", text); |
| 194 | } |
| 195 | |
| 196 | void LogDebug(const std::string & text) |
| 197 | { |