mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2025-12-08 19:25:01 +00:00
OcDebugLogLib: Do not mask DisplayLog by PcdLevel to support all clients
This commit is contained in:
parent
87cd3c1321
commit
f4acfe5f14
@ -381,7 +381,7 @@ OcConfigureLogProtocol (
|
||||
//
|
||||
OcLog->Options = Options;
|
||||
OcLog->Delay = Delay;
|
||||
OcLog->DisplayLevel = DisplayLevel & PcdGet8 (PcdDebugPropertyMask);
|
||||
OcLog->DisplayLevel = DisplayLevel;
|
||||
OcLog->HaltLevel = HaltLevel;
|
||||
|
||||
//
|
||||
@ -406,7 +406,7 @@ OcConfigureLogProtocol (
|
||||
Private->OcLog.ResetTimers = OcLogResetTimers;
|
||||
Private->OcLog.Options = Options;
|
||||
Private->OcLog.Delay = Delay;
|
||||
Private->OcLog.DisplayLevel = DisplayLevel & PcdGet8 (PcdDebugPropertyMask);
|
||||
Private->OcLog.DisplayLevel = DisplayLevel;
|
||||
Private->OcLog.HaltLevel = HaltLevel;
|
||||
|
||||
Handle = NULL;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user