From 44ae214591e58af468eacb7b873eaa0bc187c4fa Mon Sep 17 00:00:00 2001 From: Samer El-Haj-Mahmoud Date: Sat, 20 Feb 2021 11:41:33 -0500 Subject: [PATCH] EmbeddedPkg/VirtualRealTimeClockLib: Reduce DEBUG message verbosity The DEBUG message for using compilation time epoch is appearing very frequently on DEBUG firmware builds, for example during UEFI SCT runs. Reduce verbosity to avoid the annoying repetitive message. Signed-off-by: Samer El-Haj-Mahmoud Reviewed-by: Ard Biesheuvel --- .../Library/VirtualRealTimeClockLib/VirtualRealTimeClockLib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EmbeddedPkg/Library/VirtualRealTimeClockLib/VirtualRealTimeClockLib.c b/EmbeddedPkg/Library/VirtualRealTimeClockLib/VirtualRealTimeClockLib.c index 5c13ed4cf1..4210708cff 100644 --- a/EmbeddedPkg/Library/VirtualRealTimeClockLib/VirtualRealTimeClockLib.c +++ b/EmbeddedPkg/Library/VirtualRealTimeClockLib/VirtualRealTimeClockLib.c @@ -88,7 +88,7 @@ LibGetTime ( // EpochSeconds = BUILD_EPOCH; DEBUG (( - DEBUG_INFO, + DEBUG_VERBOSE, "LibGetTime: %s non volatile variable was not found - Using compilation time epoch.\n", mEpochVariableName ));