[0.4.9][SETUP] Silence some noisy DPRINT1

picked from 0.4.12-dev-260-g 0150bb964a
This commit is contained in:
Joachim Henze 2020-12-21 00:23:19 +01:00
parent 6cfc934c20
commit a4f88cc271
2 changed files with 5 additions and 5 deletions

View file

@ -600,7 +600,7 @@ IniCacheLoad(
&SectionName,
&SectionNameSize);
DPRINT1("[%.*s]\n", SectionNameSize, SectionName);
DPRINT("[%.*s]\n", SectionNameSize, SectionName);
Section = IniCacheAddSection(*Cache,
SectionName,
@ -629,7 +629,7 @@ IniCacheLoad(
&KeyValueSize,
String);
DPRINT1("'%.*s' = '%.*s'\n", KeyNameSize, KeyName, KeyValueSize, KeyValue);
DPRINT("'%.*s' = '%.*s'\n", KeyNameSize, KeyName, KeyValueSize, KeyValue);
Key = IniCacheAddKey(Section,
KeyName,

View file

@ -3185,7 +3185,7 @@ CheckActiveSystemPartition(
return;
}
DPRINT1("We are here (1)!\n");
DPRINT("We are here (1)!\n");
List->SystemDisk = NULL;
List->SystemPartition = NULL;
@ -3227,7 +3227,7 @@ CheckActiveSystemPartition(
DPRINT1("NewDisk TRUE but first partition is used?\n");
}
DPRINT1("We are here (2)!\n");
DPRINT("We are here (2)!\n");
/*
* The disk is not new, check if any partition is initialized;
@ -3274,7 +3274,7 @@ CheckActiveSystemPartition(
List->OriginalSystemDisk = NULL;
List->OriginalSystemPartition = NULL;
DPRINT1("We are here (3)!\n");
DPRINT("We are here (3)!\n");
/* The disk is not new, scan all partitions to find the (active) system partition */
ListEntry = DiskEntry->PrimaryPartListHead.Flink;