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>
This commit is contained in:
Abner Chang
2023-05-30 15:06:13 +08:00
committed by mergify[bot]
parent d8e5d35ede
commit d15d2667d5
12 changed files with 61 additions and 61 deletions

View File

@@ -66,7 +66,7 @@ LibStopRedfishService (
DEBUG ((DEBUG_ERROR, "%a: fail to remove bootstrap credential: %r\n", __func__, Status));
}
DEBUG ((DEBUG_INFO, "%a: bootstrap credential service stopped\n", __func__));
DEBUG ((DEBUG_MANAGEABILITY, "%a: bootstrap credential service stopped\n", __func__));
return EFI_SUCCESS;
}
@@ -216,7 +216,7 @@ GetBootstrapAccountCredentials (
}
}
DEBUG ((DEBUG_INFO, "%a: get bootstrap credential via IPMI: %r\n", __func__, Status));
DEBUG ((DEBUG_MANAGEABILITY, "%a: get bootstrap credential via IPMI: %r\n", __func__, Status));
return Status;
}
@@ -284,7 +284,7 @@ GetBootstrapAccountCredentialsFromVariable (
FreePool (Data);
DEBUG ((DEBUG_INFO, "%a: get bootstrap credential from variable\n", __func__));
DEBUG ((DEBUG_MANAGEABILITY, "%a: get bootstrap credential from variable\n", __func__));
return EFI_SUCCESS;
}
@@ -446,7 +446,7 @@ LibCredentialGetAuthInfo (
}
if (DisableCredentialService) {
DEBUG ((DEBUG_INFO, "%a: credential bootstrapping control disabled\n", __func__));
DEBUG ((DEBUG_MANAGEABILITY, "%a: credential bootstrapping control disabled\n", __func__));
}
Status = SetBootstrapAccountCredentialsToVariable (*UserId, *Password, FALSE);