diff --git a/Platform/OpenCore/OpenCoreMisc.c b/Platform/OpenCore/OpenCoreMisc.c index 3164533a342d08f98db81356592c763bb19688a6..d46d75628e1a80180a641c60b6c2d2d8a90d0124 100644 --- a/Platform/OpenCore/OpenCoreMisc.c +++ b/Platform/OpenCore/OpenCoreMisc.c @@ -187,22 +187,24 @@ OcMiscLateInit ( DEBUG (( DEBUG_INFO, - "OC: Requested resolution is %u:%u@%u (max: %d)\n", + "OC: Requested resolution is %u:%u@%u (max: %d) from %a\n", Width, Height, Bpp, - SetMax + SetMax, + OC_BLOB_GET (&Config->Misc.Boot.Resolution) )); if (SetMax || (Width > 0 && Height > 0)) { Status = SetConsoleResolution (Width, Height, Bpp); DEBUG (( - DEBUG_INFO, - "OC: Changed resolution to %u:%u@%u (max: %d) - %r\n", + EFI_ERROR (Status) ? DEBUG_WARN : DEBUG_INFO, + "OC: Changed resolution to %u:%u@%u (max: %d) from %a - %r\n", Width, Height, Bpp, SetMax, + OC_BLOB_GET (&Config->Misc.Boot.Resolution), Status )); }