summaryrefslogtreecommitdiffstats
path: root/MdeModulePkg
diff options
context:
space:
mode:
authorMichael Kubacki <michael.kubacki@microsoft.com>2021-09-09 11:46:00 +0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2021-09-16 01:51:36 +0000
commit6f501a7c9bb196ce1ad9dd5b0024974d1b6784be (patch)
tree48f275d47b80fe0d98ee526464156f487a7dc503 /MdeModulePkg
parent6c80564b8982cd669324097346ce646b01031629 (diff)
downloadedk2-6f501a7c9bb196ce1ad9dd5b0024974d1b6784be.tar.gz
edk2-6f501a7c9bb196ce1ad9dd5b0024974d1b6784be.tar.bz2
edk2-6f501a7c9bb196ce1ad9dd5b0024974d1b6784be.zip
MdeModulePkg/Core/Pei: Make migrated PEIM message verbose
Currently, the debug message that prints the name of a PEIM being migrated is DEBUG_INFO while similar messages are DEBUG_VERBOSE. This change updates the print level to DEBUG_VERBOSE for consistency. Cc: Jian J Wang <jian.j.wang@intel.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Cc: Dandan Bi <dandan.bi@intel.com> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
Diffstat (limited to 'MdeModulePkg')
-rw-r--r--MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c b/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c
index 8780297a77..a050a6ed96 100644
--- a/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c
+++ b/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c
@@ -993,7 +993,7 @@ MigratePeim (
AsciiString[Index] = 0;
}
}
- DEBUG ((DEBUG_INFO, "%a", AsciiString));
+ DEBUG ((DEBUG_VERBOSE, "%a", AsciiString));
DEBUG_CODE_END ();
Pe32Data = (VOID *) ((UINTN) ImageAddress - (UINTN) MigratedFileHandle + (UINTN) FileHandle);