Remove some debug messages at boot
authorHervé Poussineau <hpoussin@reactos.org>
Fri, 20 May 2005 01:08:37 +0000 (01:08 +0000)
committerHervé Poussineau <hpoussin@reactos.org>
Fri, 20 May 2005 01:08:37 +0000 (01:08 +0000)
svn path=/trunk/; revision=15419

reactos/ntoskrnl/io/iomgr.c
reactos/ntoskrnl/kdbg/kdb_cli.c

index e83ecc3..52a8a9d 100644 (file)
@@ -113,7 +113,7 @@ IopInitLookasideLists(VOID)
     {
         /* Get the PRCB for this CPU */
         Prcb = ((PKPCR)(KPCR_BASE + i * PAGE_SIZE))->Prcb;
-        DPRINT1("Setting up lookaside for CPU: %x, PRCB: %p\n", i, Prcb);
+        DPRINT("Setting up lookaside for CPU: %x, PRCB: %p\n", i, Prcb);
         
         /* Set the Large IRP List */
         Prcb->PPLookasideList[LookasideLargeIrpList].L = &IoLargeIrpLookaside.L;
@@ -182,7 +182,7 @@ IopInitLookasideLists(VOID)
         Prcb->PPLookasideList[LookasideCompletionList].P = &CurrentList->L;
     }
     
-    DPRINT1("Done allocation\n");
+    DPRINT("Done allocation\n");
 }
 
 VOID
@@ -411,10 +411,10 @@ IoInit3(VOID)
     IoCreateArcNames();
 
     /* Create the SystemRoot symbolic link */
-    CPRINT("CommandLine: %s\n", (PCHAR)KeLoaderBlock.CommandLine);
+    DPRINT("CommandLine: %s\n", (PCHAR)KeLoaderBlock.CommandLine);
     Status = IoCreateSystemRootLink((PCHAR)KeLoaderBlock.CommandLine);
     if (!NT_SUCCESS(Status)) {
-        DbgPrint("IoCreateSystemRootLink FAILED: (0x%x) - ", Status);
+        CPRINT("IoCreateSystemRootLink FAILED: (0x%x) - ", Status);
         KEBUGCHECK(INACCESSIBLE_BOOT_DEVICE);
     }
 
index bb96f7e..1952819 100644 (file)
@@ -2278,7 +2278,7 @@ KdbpCliInterpretInitFile()
    CHAR c;
 
    /* Execute the commands in the init file */
-   DbgPrint("KDB: Executing KDBinit file...\n");
+   DPRINT("KDB: Executing KDBinit file...\n");
    p1 = KdbInitFileBuffer;
    while (p1[0] != '\0')
    {
@@ -2309,7 +2309,7 @@ KdbpCliInterpretInitFile()
       while (p1[0] == '\r' || p1[0] == '\n')
          p1++;
    }
-   DbgPrint("KDB: KDBinit executed\n");
+   DPRINT("KDB: KDBinit executed\n");
 }
 
 /*!\brief Called when KDB is initialized