[NTFS] - Decrease debug spam

svn path=/branches/GSoC_2016/NTFS/; revision=74694
This commit is contained in:
Trevor Thompson 2017-05-28 20:51:31 +00:00 committed by Thomas Faber
parent 037d88201d
commit 4ca9151300
2 changed files with 2 additions and 3 deletions

View file

@ -32,7 +32,6 @@
#include "ntfs.h"
#define NDEBUG
#undef NDEBUG
#include <debug.h>
/* FUNCTIONS ****************************************************************/

View file

@ -165,7 +165,7 @@ NtfsReadFile(PDEVICE_EXTENSION DeviceExt,
AllocatedBuffer = TRUE;
}
DPRINT1("Effective read: %lu at %lu for stream '%S'\n", RealLength, RealReadOffset, Fcb->Stream);
DPRINT("Effective read: %lu at %lu for stream '%S'\n", RealLength, RealReadOffset, Fcb->Stream);
RealLengthRead = ReadAttribute(DeviceExt, DataContext, RealReadOffset, (PCHAR)ReadBuffer, RealLength);
if (RealLengthRead == 0)
{
@ -184,7 +184,7 @@ NtfsReadFile(PDEVICE_EXTENSION DeviceExt,
*LengthRead = ToRead;
DPRINT1("%lu got read\n", *LengthRead);
DPRINT("%lu got read\n", *LengthRead);
if (AllocatedBuffer)
{