blob: 89bd3d198a2b22274a83efa204fe567306173833 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "cru/base/platform/win/DebugLogTarget.h"
namespace cru::platform::win {
void WinDebugLogTarget::Write(::cru::log::LogLevel level, StringView s) {
CRU_UNUSED(level)
String m = s.ToString();
::OutputDebugStringW(reinterpret_cast<const wchar_t*>(m.c_str()));
}
} // namespace cru::platform::win
|