From 6f501a7c9bb196ce1ad9dd5b0024974d1b6784be Mon Sep 17 00:00:00 2001 From: Michael Kubacki Date: Thu, 9 Sep 2021 11:46:00 +0800 Subject: [PATCH] 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 Cc: Liming Gao Cc: Dandan Bi Signed-off-by: Michael Kubacki Reviewed-by: Liming Gao --- MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.2