summaryrefslogtreecommitdiffstats
path: root/RedfishPkg/PrivateLibrary/RedfishLib/RedfishLib.c
diff options
context:
space:
mode:
authorAbner Chang <abner.chang@amd.com>2023-05-30 15:06:13 +0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2023-05-31 08:42:58 +0000
commitd15d2667d58d40c0748919ac4b5771b875c0780b (patch)
tree90afecfbda1cd97d68e3f656a6342db9d9f87493 /RedfishPkg/PrivateLibrary/RedfishLib/RedfishLib.c
parentd8e5d35ede7158ccbb9abf600e65b9aa6e043f74 (diff)
downloadedk2-d15d2667d58d40c0748919ac4b5771b875c0780b.tar.gz
edk2-d15d2667d58d40c0748919ac4b5771b875c0780b.tar.bz2
edk2-d15d2667d58d40c0748919ac4b5771b875c0780b.zip
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/PrivateLibrary/RedfishLib/RedfishLib.c')
-rw-r--r--RedfishPkg/PrivateLibrary/RedfishLib/RedfishLib.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/RedfishPkg/PrivateLibrary/RedfishLib/RedfishLib.c b/RedfishPkg/PrivateLibrary/RedfishLib/RedfishLib.c
index 0a0a4e6458..cca0ea7748 100644
--- a/RedfishPkg/PrivateLibrary/RedfishLib/RedfishLib.c
+++ b/RedfishPkg/PrivateLibrary/RedfishLib/RedfishLib.c
@@ -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;
}