[NTOSKRNL] Silence lazy writer now we know it works
authorPierre Schweitzer <pierre@reactos.org>
Fri, 9 Feb 2018 10:05:44 +0000 (11:05 +0100)
committerPierre Schweitzer <pierre@reactos.org>
Fri, 9 Feb 2018 10:05:44 +0000 (11:05 +0100)
ntoskrnl/cc/lazywrite.c

index 261fcf3..adb9fb0 100644 (file)
@@ -143,13 +143,13 @@ CcLazyWriteScan(VOID)
     if (Target != 0)
     {
         /* Flush! */
-        DPRINT1("Lazy writer starting (%d)\n", Target);
+        DPRINT("Lazy writer starting (%d)\n", Target);
         CcRosFlushDirtyPages(Target, &Count, FALSE, TRUE);
 
         /* And update stats */
         CcLazyWritePages += Count;
         ++CcLazyWriteIos;
-        DPRINT1("Lazy writer done (%d)\n", Count);
+        DPRINT("Lazy writer done (%d)\n", Count);
     }
 
     /* If we have deferred writes, try them now! */