| 217 | } |
| 218 | |
| 219 | void CLog::OutputDebugString(const std::string& line) |
| 220 | { |
| 221 | #if defined(_DEBUG) || defined(PROFILE) |
| 222 | if(m_logLevel > LOG_LEVEL_NONE) { |
| 223 | ::OutputDebugString(line.c_str()); |
| 224 | ::OutputDebugString("\n"); |
| 225 | } |
| 226 | #endif |
| 227 | } |
nothing calls this directly
no outgoing calls
no test coverage detected