| 460 | { |
| 461 | public: |
| 462 | void Log(const CLogMessage *pMessage) override |
| 463 | { |
| 464 | if(m_Filter.Filters(pMessage)) |
| 465 | { |
| 466 | return; |
| 467 | } |
| 468 | const std::wstring WideMessage = windows_utf8_to_wide(pMessage->m_aLine); |
| 469 | OutputDebugStringW(WideMessage.c_str()); |
| 470 | } |
| 471 | }; |
| 472 | std::unique_ptr<ILogger> log_logger_windows_debugger() |
| 473 | { |
nothing calls this directly
no test coverage detected