From 734f292a3d80f7e883f64c782c90b189dbc058b1 Mon Sep 17 00:00:00 2001 From: jief666 Date: Wed, 2 Sep 2020 18:21:32 +0300 Subject: [PATCH] Comment out debug message. --- rEFIt_UEFI/Platform/Settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rEFIt_UEFI/Platform/Settings.cpp b/rEFIt_UEFI/Platform/Settings.cpp index eea6d0887..babaca196 100644 --- a/rEFIt_UEFI/Platform/Settings.cpp +++ b/rEFIt_UEFI/Platform/Settings.cpp @@ -3042,7 +3042,7 @@ XStringW GetBundleVersion(const XStringW& FullName) Status = egLoadFile(SelfRootDir, FullName.wc_str(), (UINT8**)&InfoPlistPtr, &Size); } if(!EFI_ERROR(Status)) { - DBG("file %ls\n", InfoPlistPath.wc_str()); + //DBG("about to parse xml file %ls\n", InfoPlistPath.wc_str()); Status = ParseXML(InfoPlistPtr, &InfoPlistDict, Size); if(!EFI_ERROR(Status) && (InfoPlistDict != nullptr)) { Prop = InfoPlistDict->propertyForKey("CFBundleVersion");