summaryrefslogtreecommitdiff
path: root/redfish-core
diff options
context:
space:
mode:
authorGunnar Mills <gmills@us.ibm.com>2024-03-29 05:55:01 +0300
committerGunnar Mills <gunnar@gmills.xyz>2024-04-01 00:06:52 +0300
commitf933a6a0945c6c698ff73c8d59c0153c2387e35b (patch)
tree05c5309fd547499831a7266931efc3b452cb3bb6 /redfish-core
parentc160ae72068a19b852861f6d2b542a5929c3eb9b (diff)
downloadbmcweb-f933a6a0945c6c698ff73c8d59c0153c2387e35b.tar.xz
Cable: Fix Logging Level Error
When we have an internal error, having the D-Bus response is really helpful. Follow our guide and have these be a Logging Level Error. Tested: None. Inspection only. Change-Id: Ie1d9f364c3af7f2a8839d878d68c82c10ddc0429 Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
Diffstat (limited to 'redfish-core')
-rw-r--r--redfish-core/lib/cable.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/redfish-core/lib/cable.hpp b/redfish-core/lib/cable.hpp
index a2d0b53fab..bc73267101 100644
--- a/redfish-core/lib/cable.hpp
+++ b/redfish-core/lib/cable.hpp
@@ -30,7 +30,7 @@ inline void
{
if (ec)
{
- BMCWEB_LOG_DEBUG("DBUS response error {}", ec);
+ BMCWEB_LOG_ERROR("DBUS response error {}", ec);
messages::internalError(resp);
return;
}