diff options
author | Abner Chang <abner.chang@amd.com> | 2023-05-30 15:06:13 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2023-05-31 08:42:58 +0000 |
commit | d15d2667d58d40c0748919ac4b5771b875c0780b (patch) | |
tree | 90afecfbda1cd97d68e3f656a6342db9d9f87493 /RedfishPkg/RedfishHostInterfaceDxe | |
parent | d8e5d35ede7158ccbb9abf600e65b9aa6e043f74 (diff) | |
download | edk2-d15d2667d58d40c0748919ac4b5771b875c0780b.tar.gz |
RedfishPkg: Use DEBUG_MANAGEABILITY
Use debug print level DEBUG_MANAGEABILITY in
RedfishPkg.
Signed-off-by: Abner Chang <abner.chang@amd.com>
Cc: Nickle Wang <nicklew@nvidia.com>
Cc: Igor Kulchytskyy <igork@ami.com>
Reviewed-by: Nickle Wang <nicklew@nvidia.com>
Diffstat (limited to 'RedfishPkg/RedfishHostInterfaceDxe')
-rw-r--r-- | RedfishPkg/RedfishHostInterfaceDxe/RedfishHostInterfaceDxe.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/RedfishPkg/RedfishHostInterfaceDxe/RedfishHostInterfaceDxe.c b/RedfishPkg/RedfishHostInterfaceDxe/RedfishHostInterfaceDxe.c index c4fa59193a..55a66decfc 100644 --- a/RedfishPkg/RedfishHostInterfaceDxe/RedfishHostInterfaceDxe.c +++ b/RedfishPkg/RedfishHostInterfaceDxe/RedfishHostInterfaceDxe.c @@ -221,7 +221,7 @@ RedfishCreateSmbiosTable42 ( &MemArrayMappedAddrSmbiosHandle,
(EFI_SMBIOS_TABLE_HEADER *)Type42Record
);
- DEBUG ((DEBUG_INFO, "RedfishPlatformDxe: Smbios->Add() - %r\n", Status));
+ DEBUG ((DEBUG_MANAGEABILITY, "RedfishPlatformDxe: Smbios->Add() - %r\n", Status));
if (EFI_ERROR (Status)) {
goto ON_EXIT;
}
@@ -259,7 +259,7 @@ PlatformHostInterfaceInformationReady ( IN VOID *Context
)
{
- DEBUG ((DEBUG_INFO, "%a: Platform Redfish Host Interface informtion is ready\n", __func__));
+ DEBUG ((DEBUG_MANAGEABILITY, "%a: Platform Redfish Host Interface informtion is ready\n", __func__));
RedfishCreateSmbiosTable42 ();
@@ -291,7 +291,7 @@ RedfishHostInterfaceDxeEntryPoint ( EFI_STATUS Status;
EFI_GUID *ReadyGuid;
- DEBUG ((DEBUG_INFO, "%a: Entry\n.", __func__));
+ DEBUG ((DEBUG_MANAGEABILITY, "%a: Entry\n.", __func__));
//
// Check if the Redfish Host Interface depends on
@@ -299,8 +299,8 @@ RedfishHostInterfaceDxeEntryPoint ( //
Status = RedfishPlatformHostInterfaceNotification (&ReadyGuid);
if (Status == EFI_SUCCESS) {
- DEBUG ((DEBUG_INFO, " Create protocol install notification to know the installation of platform Redfish host interface readiness\n"));
- DEBUG ((DEBUG_INFO, " Protocol GUID: %g\n", ReadyGuid));
+ DEBUG ((DEBUG_MANAGEABILITY, " Create protocol install notification to know the installation of platform Redfish host interface readiness\n"));
+ DEBUG ((DEBUG_MANAGEABILITY, " Protocol GUID: %g\n", ReadyGuid));
//
// Register event for ReadyGuid protocol installed by
// platform Redfish host interface library.
|