diff options
author | Laszlo Ersek <lersek@redhat.com> | 2017-09-04 20:34:18 +0200 |
---|---|---|
committer | Laszlo Ersek <lersek@redhat.com> | 2017-09-11 22:39:32 +0200 |
commit | 837d9eea7d276da1d85f3f2398561aeddccf571c (patch) | |
tree | 75df3b825e92ecbfe1d4180d5569acdfebaf7e34 /OvmfPkg | |
parent | 7707c9fd69dc49fae08378ce9524b1f8812ae650 (diff) | |
download | edk2-837d9eea7d276da1d85f3f2398561aeddccf571c.zip edk2-837d9eea7d276da1d85f3f2398561aeddccf571c.tar.gz edk2-837d9eea7d276da1d85f3f2398561aeddccf571c.tar.bz2 |
OvmfPkg/PlatformBootManagerLib: log informative message at DEBUG_INFO lvl
"Boot Mode:%x" is an informative message, not an error report. Set its
debug mask to DEBUG_INFO.
Cc: Jordan Justen <jordan.l.justen@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Diffstat (limited to 'OvmfPkg')
-rw-r--r-- | OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c b/OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c index cc35630..025252e 100644 --- a/OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c +++ b/OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c @@ -1440,7 +1440,7 @@ Routine Description: // Get current Boot Mode
//
BootMode = GetBootModeHob ();
- DEBUG ((EFI_D_ERROR, "Boot Mode:%x\n", BootMode));
+ DEBUG ((DEBUG_INFO, "Boot Mode:%x\n", BootMode));
//
// Go the different platform policy with different boot mode
|