From: Vizzini Date: Fri, 5 Sep 2003 06:25:44 +0000 (+0000) Subject: returned debug level to MIN_TRACE X-Git-Tag: ReactOS-0.1.4~167 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=b078e28da78d44b4c6eb8eefacab15e6ccd2c1a3 returned debug level to MIN_TRACE svn path=/trunk/; revision=5991 --- diff --git a/reactos/drivers/net/ndis/ndis/main.c b/reactos/drivers/net/ndis/ndis/main.c index 3fb02dabcc7..b68806bd06a 100644 --- a/reactos/drivers/net/ndis/ndis/main.c +++ b/reactos/drivers/net/ndis/ndis/main.c @@ -17,7 +17,7 @@ #ifdef DBG /* See debug.h for debug/trace constants */ -DWORD DebugTraceLevel = -1; +DWORD DebugTraceLevel = MIN_TRACE; #endif /* DBG */ diff --git a/reactos/drivers/net/tcpip/tcpip/main.c b/reactos/drivers/net/tcpip/tcpip/main.c index 27d4020ec20..442f29ffd88 100644 --- a/reactos/drivers/net/tcpip/tcpip/main.c +++ b/reactos/drivers/net/tcpip/tcpip/main.c @@ -17,7 +17,7 @@ #include #ifdef DBG -DWORD DebugTraceLevel = MID_TRACE; +DWORD DebugTraceLevel = MIN_TRACE; #endif /* DBG */ PDEVICE_OBJECT TCPDeviceObject = NULL;