mirror of https://github.com/acidanthera/audk.git
UefiCpuPkg/CpuDxe: log informative message at DEBUG_INFO level
"Detect CPU count: %d\n" is an informative message, not an error report. Set its debug mask to DEBUG_INFO. Cc: Eric Dong <eric.dong@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Eric Dong <eric.dong@intel.com>
This commit is contained in:
parent
1dac45f530
commit
d2f0ff1e49
|
@ -622,7 +622,7 @@ InitializeMpSupport (
|
||||||
|
|
||||||
MpInitLibGetNumberOfProcessors (&NumberOfProcessors, &NumberOfEnabledProcessors);
|
MpInitLibGetNumberOfProcessors (&NumberOfProcessors, &NumberOfEnabledProcessors);
|
||||||
mNumberOfProcessors = NumberOfProcessors;
|
mNumberOfProcessors = NumberOfProcessors;
|
||||||
DEBUG ((DEBUG_ERROR, "Detect CPU count: %d\n", mNumberOfProcessors));
|
DEBUG ((DEBUG_INFO, "Detect CPU count: %d\n", mNumberOfProcessors));
|
||||||
|
|
||||||
//
|
//
|
||||||
// Update CPU healthy information from Guided HOB
|
// Update CPU healthy information from Guided HOB
|
||||||
|
|
Loading…
Reference in New Issue