ntdll: Print thread id by default in all traces.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c570224aa2
commit
ab9c5625ec
|
@ -38,7 +38,6 @@
|
|||
#include "winternl.h"
|
||||
#include "ntdll_misc.h"
|
||||
|
||||
WINE_DECLARE_DEBUG_CHANNEL(tid);
|
||||
WINE_DECLARE_DEBUG_CHANNEL(pid);
|
||||
WINE_DECLARE_DEBUG_CHANNEL(timestamp);
|
||||
|
||||
|
@ -173,8 +172,7 @@ static int NTDLL_dbg_vlog( enum __wine_debug_class cls, struct __wine_debug_chan
|
|||
}
|
||||
if (TRACE_ON(pid))
|
||||
ret += wine_dbg_printf( "%04x:", GetCurrentProcessId() );
|
||||
if (TRACE_ON(tid))
|
||||
ret += wine_dbg_printf( "%04x:", GetCurrentThreadId() );
|
||||
ret += wine_dbg_printf( "%04x:", GetCurrentThreadId() );
|
||||
if (cls < sizeof(classes)/sizeof(classes[0]))
|
||||
ret += wine_dbg_printf( "%s:%s:%s ", classes[cls], channel->name, function );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue