| 174 | } |
| 175 | |
| 176 | void LogWarning(const std::string & text) |
| 177 | { |
| 178 | AutoMutex lock(g_logmutex); |
| 179 | InitLogging(); |
| 180 | |
| 181 | if(g_logginglevel<LOGGING_LEVEL_WARNING) return; |
| 182 | |
| 183 | LogMessage("[OpenColorIO Warning]: ", text); |
| 184 | } |
| 185 | |
| 186 | void LogInfo(const std::string & text) |
| 187 | { |