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>
This commit is contained in:
Michael Kubacki 2021-09-09 11:46:00 +08:00 committed by mergify[bot]
parent 6c80564b89
commit 6f501a7c9b
1 changed files with 1 additions and 1 deletions

View File

@ -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);