mirror of https://github.com/acidanthera/audk.git
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:
parent
6c80564b89
commit
6f501a7c9b
|
@ -993,7 +993,7 @@ MigratePeim (
|
||||||
AsciiString[Index] = 0;
|
AsciiString[Index] = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
DEBUG ((DEBUG_INFO, "%a", AsciiString));
|
DEBUG ((DEBUG_VERBOSE, "%a", AsciiString));
|
||||||
DEBUG_CODE_END ();
|
DEBUG_CODE_END ();
|
||||||
|
|
||||||
Pe32Data = (VOID *) ((UINTN) ImageAddress - (UINTN) MigratedFileHandle + (UINTN) FileHandle);
|
Pe32Data = (VOID *) ((UINTN) ImageAddress - (UINTN) MigratedFileHandle + (UINTN) FileHandle);
|
||||||
|
|
Loading…
Reference in New Issue