diff options
author | Laszlo Ersek <lersek@redhat.com> | 2017-09-04 20:28:57 +0200 |
---|---|---|
committer | Laszlo Ersek <lersek@redhat.com> | 2017-09-11 22:39:26 +0200 |
commit | d2f0ff1e49686fe945f7c531972bd843f0f7da8e (patch) | |
tree | 90df6487f007ad9312583af97fc1499cab3cb68b /UefiCpuPkg/CpuDxe | |
parent | 1dac45f53058a314e66daa54fbb7a26e4fa00b0a (diff) | |
download | edk2-d2f0ff1e49686fe945f7c531972bd843f0f7da8e.tar.gz edk2-d2f0ff1e49686fe945f7c531972bd843f0f7da8e.tar.bz2 edk2-d2f0ff1e49686fe945f7c531972bd843f0f7da8e.zip |
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>
Diffstat (limited to 'UefiCpuPkg/CpuDxe')
-rw-r--r-- | UefiCpuPkg/CpuDxe/CpuMp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/UefiCpuPkg/CpuDxe/CpuMp.c b/UefiCpuPkg/CpuDxe/CpuMp.c index 372c1e3ce4..b3c0178d07 100644 --- a/UefiCpuPkg/CpuDxe/CpuMp.c +++ b/UefiCpuPkg/CpuDxe/CpuMp.c @@ -622,7 +622,7 @@ InitializeMpSupport ( MpInitLibGetNumberOfProcessors (&NumberOfProcessors, &NumberOfEnabledProcessors);
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
|