diff options
author | Samer El-Haj-Mahmoud <Samer.El-Haj-Mahmoud@arm.com> | 2021-02-20 11:41:33 -0500 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-02-20 16:49:30 +0000 |
commit | 44ae214591e58af468eacb7b873eaa0bc187c4fa (patch) | |
tree | 4ab5c038e04532e678803e76abc1a7565a0a4541 /EmbeddedPkg | |
parent | 4f4d862c1c7232a18347616d94c343c929657fdb (diff) | |
download | edk2-44ae214591e58af468eacb7b873eaa0bc187c4fa.zip edk2-44ae214591e58af468eacb7b873eaa0bc187c4fa.tar.gz edk2-44ae214591e58af468eacb7b873eaa0bc187c4fa.tar.bz2 |
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 <Samer.El-Haj-Mahmoud@arm.com>
Reviewed-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'EmbeddedPkg')
-rw-r--r-- | EmbeddedPkg/Library/VirtualRealTimeClockLib/VirtualRealTimeClockLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/EmbeddedPkg/Library/VirtualRealTimeClockLib/VirtualRealTimeClockLib.c b/EmbeddedPkg/Library/VirtualRealTimeClockLib/VirtualRealTimeClockLib.c index 5c13ed4..4210708 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
));
|