diff options
author | Rebecca Cran <rebecca@bsdio.com> | 2024-11-26 21:45:56 -0700 |
---|---|---|
committer | Ard Biesheuvel <workofard@gmail.com> | 2024-11-27 15:11:26 +0100 |
commit | d90bf1f973cb69d18b4d994530bd4692b7fd7195 (patch) | |
tree | 3916147fdf6870b080adcf1a64749e1296b71a39 | |
parent | b78b4da1fb7f09622363770638f67229cea8f701 (diff) | |
download | edk2-d90bf1f973cb69d18b4d994530bd4692b7fd7195.tar.gz |
EmbeddedPkg: reduce "Found ACPI table" messages from ERROR to INFO
The "Found ACPI table" messages are informative and don't indicate an
error, so reduce the debug level from DEBUG_ERROR to DEBUG_INFO.
Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
-rw-r--r-- | EmbeddedPkg/Library/AcpiLib/AcpiLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/EmbeddedPkg/Library/AcpiLib/AcpiLib.c b/EmbeddedPkg/Library/AcpiLib/AcpiLib.c index 0f75cd5bf9..00bcddefd1 100644 --- a/EmbeddedPkg/Library/AcpiLib/AcpiLib.c +++ b/EmbeddedPkg/Library/AcpiLib/AcpiLib.c @@ -122,7 +122,7 @@ LocateAndInstallAcpiFromFvConditional ( ASSERT (SectionSize >= AcpiTableSize);
DEBUG ((
- DEBUG_ERROR,
+ DEBUG_INFO,
"- Found '%c%c%c%c' ACPI Table\n",
(((EFI_ACPI_DESCRIPTION_HEADER *)AcpiTable)->Signature & 0xFF),
((((EFI_ACPI_DESCRIPTION_HEADER *)AcpiTable)->Signature >> 8) & 0xFF),
|