MCPcopy Create free account
hub / github.com/ddnet/ddnet / Log

Method Log

src/base/log.cpp:462–470  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

460{
461public:
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};
472std::unique_ptr<ILogger> log_logger_windows_debugger()
473{

Callers

nothing calls this directly

Calls 2

windows_utf8_to_wideFunction · 0.85
FiltersMethod · 0.80

Tested by

no test coverage detected