Author: khornicek
Date: Mon Feb 20 14:45:03 2017
New Revision: 73858
URL:
http://svn.reactos.org/svn/reactos?rev=73858&view=rev
Log:
[EVENTLOG]
- Silence some debug prints. This commit bears the "Hermès' seal of
approval".
Modified:
trunk/reactos/base/services/eventlog/file.c
Modified: trunk/reactos/base/services/eventlog/file.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/services/eventlog/fil…
==============================================================================
--- trunk/reactos/base/services/eventlog/file.c [iso-8859-1] (original)
+++ trunk/reactos/base/services/eventlog/file.c [iso-8859-1] Mon Feb 20 14:45:03 2017
@@ -332,7 +332,7 @@
NULL,
NULL);
- DPRINT1("Going to create or open %wZ\n", FileName);
+ DPRINT("Going to create or open %wZ\n", FileName);
Status = NtCreateFile(&pLogFile->FileHandle,
Backup ? (GENERIC_READ | SYNCHRONIZE)
: (GENERIC_READ | GENERIC_WRITE | SYNCHRONIZE),
@@ -352,7 +352,7 @@
}
CreateNew = (IoStatusBlock.Information == FILE_CREATED);
- DPRINT1("%wZ %s successfully\n", FileName, CreateNew ? "created"
: "opened");
+ DPRINT("%wZ %s successfully\n", FileName, CreateNew ? "created" :
"opened");
/*
* Retrieve the log file size and check whether the file is not too large;
@@ -504,7 +504,7 @@
OBJECT_ATTRIBUTES ObjectAttributes;
IO_STATUS_BLOCK IoStatusBlock;
- DPRINT1("LogfBackupFile(%p, %wZ)\n", LogFile, BackupFileName);
+ DPRINT("LogfBackupFile(%p, %wZ)\n", LogFile, BackupFileName);
/* Lock the log file shared */
RtlAcquireResourceShared(&LogFile->Lock, TRUE);