Samuel Serapion <samcharly@hotmail.com>

- Make the ext2 dbgprint not annoying.

svn path=/trunk/; revision=32526
This commit is contained in:
Aleksey Bragin 2008-02-28 14:51:41 +00:00
parent 36f0da37ea
commit 3c8c05443a

View file

@ -185,15 +185,14 @@ extern Ext2Data Ext2GlobalData;
{ \ { \
if( ( TYPE ) & ( PERMITTED_DEBUG_TRACE_TYPES ) ) \ if( ( TYPE ) & ( PERMITTED_DEBUG_TRACE_TYPES ) ) \
{ \ { \
DbgPrint(" "); \ if( ( DEBUG_TRACE_LINENO ) & ( PERMITTED_DEBUG_TRACE_TYPES ) ) \
{ \
DbgPrint("(%s:%ld) ", __FILE__, __LINE__ ); \
} \
DbgPrint(X,Y); \ DbgPrint(X,Y); \
if( ( DEBUG_TRACE_IRQL ) & ( PERMITTED_DEBUG_TRACE_TYPES ) ) \ if( ( DEBUG_TRACE_IRQL ) & ( PERMITTED_DEBUG_TRACE_TYPES ) ) \
{ \ { \
DbgPrint( " IRQL = %d ", KeGetCurrentIrql( ) ); \ DbgPrint( ",IRQL = %d ", KeGetCurrentIrql( ) ); \
} \
if( ( DEBUG_TRACE_LINENO ) & ( PERMITTED_DEBUG_TRACE_TYPES ) ) \
{ \
DbgPrint( " [%s] Line No = %ld", __FILE__, __LINE__ ); \
} \ } \
DbgPrint("\n"); \ DbgPrint("\n"); \
} \ } \