From d90bf1f973cb69d18b4d994530bd4692b7fd7195 Mon Sep 17 00:00:00 2001 From: Rebecca Cran Date: Tue, 26 Nov 2024 21:45:56 -0700 Subject: 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 --- EmbeddedPkg/Library/AcpiLib/AcpiLib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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), -- cgit