提交 221ed7d9 编写于 作者: J jp9000

make debug messages log to stdout on non-windows operating systems

上级 5f6cf614
......@@ -39,15 +39,17 @@ OBSAppBase::~OBSAppBase()
static void do_log(enum log_type type, const char *msg, va_list args)
{
#ifdef _WIN32
char bla[4096];
vsnprintf(bla, 4095, msg, args);
#ifdef _WIN32
OutputDebugStringA(bla);
OutputDebugStringA("\n");
if (type >= LOG_WARNING)
__debugbreak();
#else
vprintf(msg, args);
#endif
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册