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

@@ -946,7 +946,7 @@ RedfishDumpJsonStringFractions (
return;
}
DEBUG ((DEBUG_INFO, "JSON text:\n"));
DEBUG ((DEBUG_MANAGEABILITY, "JSON text:\n"));
NextFraction = String;
StrLen = AsciiStrLen (String);
if (StrLen == 0) {
@@ -956,13 +956,13 @@ RedfishDumpJsonStringFractions (
for (Count = 0; Count < (StrLen / StringFractionSize); Count++) {
BackupChar = *(NextFraction + StringFractionSize);
*(NextFraction + StringFractionSize) = 0;
DEBUG ((DEBUG_INFO, "%a", NextFraction));
DEBUG ((DEBUG_MANAGEABILITY, "%a", NextFraction));
*(NextFraction + StringFractionSize) = BackupChar;
NextFraction += StringFractionSize;
}
if ((StrLen % StringFractionSize) != 0) {
DEBUG ((DEBUG_INFO, "%a\n\n", NextFraction));
DEBUG ((DEBUG_MANAGEABILITY, "%a\n\n", NextFraction));
}
}
@@ -1101,7 +1101,7 @@ RedfishIsValidOdataType (
}
}
DEBUG ((DEBUG_INFO, "%a: This Odata type is not in the list.\n", __func__));
DEBUG ((DEBUG_MANAGEABILITY, "%a: This Odata type is not in the list.\n", __func__));
return FALSE;
}