diff options
author | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-08-01 22:51:15 +0000 |
---|---|---|
committer | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-08-01 22:51:15 +0000 |
commit | 520c9369195c2f56aadeb34f45b87d37f82c9eb4 (patch) | |
tree | 73b13f03c764981544e290ac341775ee545ccbc5 /MdeModulePkg/Library/GenericBdsLib | |
parent | 911361242b8a00ff8f1dc296abb3eb13cf83bd8a (diff) | |
download | edk2-platforms-520c9369195c2f56aadeb34f45b87d37f82c9eb4.tar.xz |
Simplify debug message for a selected boot option
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5603 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Library/GenericBdsLib')
-rw-r--r-- | MdeModulePkg/Library/GenericBdsLib/BdsBoot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Library/GenericBdsLib/BdsBoot.c b/MdeModulePkg/Library/GenericBdsLib/BdsBoot.c index 18738be8a8..30d3a50d90 100644 --- a/MdeModulePkg/Library/GenericBdsLib/BdsBoot.c +++ b/MdeModulePkg/Library/GenericBdsLib/BdsBoot.c @@ -195,7 +195,7 @@ BdsLibBootViaBootOption ( //
gBS->RestoreTPL (TPL_APPLICATION);
- DEBUG ((DEBUG_INFO | DEBUG_LOAD, "Booting EFI way %S\n", Option->Description));
+ DEBUG ((DEBUG_INFO | DEBUG_LOAD, "Booting %S\n", Option->Description));
Status = gBS->LoadImage (
TRUE,
|