Commit cd132376 authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard

Use WARN() instead of TRACE() in DebugOutputA().

parent b8171e8b
......@@ -129,7 +129,7 @@ void WINAPI OutputDebugStringA( LPCSTR str )
req->unicode = 0;
req->length = strlen(str) + 1;
server_call_noerr( REQ_OUTPUT_DEBUG_STRING );
TRACE("%s\n", str);
WARN("%s\n", str);
}
......@@ -143,7 +143,7 @@ void WINAPI OutputDebugStringW( LPCWSTR str )
req->unicode = 1;
req->length = (lstrlenW(str) + 1) * sizeof(WCHAR);
server_call_noerr( REQ_OUTPUT_DEBUG_STRING );
TRACE("%s\n", debugstr_w(str));
WARN("%s\n", debugstr_w(str));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment