summaryrefslogtreecommitdiff
path: root/redfish-core/lib/cable.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'redfish-core/lib/cable.hpp')
-rw-r--r--redfish-core/lib/cable.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/redfish-core/lib/cable.hpp b/redfish-core/lib/cable.hpp
index 87e41d5324..265a1ea4d5 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_DEBUG("DBUS response error {}", ec);
messages::internalError(resp);
return;
}
@@ -83,7 +83,7 @@ inline void
const std::string& cableObjectPath,
const dbus::utility::MapperServiceMap& serviceMap)
{
- BMCWEB_LOG_DEBUG << "Get Properties for cable " << cableObjectPath;
+ BMCWEB_LOG_DEBUG("Get Properties for cable {}", cableObjectPath);
for (const auto& [service, interfaces] : serviceMap)
{
@@ -121,7 +121,7 @@ inline void requestRoutesCable(App& app)
{
return;
}
- BMCWEB_LOG_DEBUG << "Cable Id: " << cableId;
+ BMCWEB_LOG_DEBUG("Cable Id: {}", cableId);
constexpr std::array<std::string_view, 1> interfaces = {
"xyz.openbmc_project.Inventory.Item.Cable"};
dbus::utility::getSubTree(
@@ -137,7 +137,7 @@ inline void requestRoutesCable(App& app)
if (ec)
{
- BMCWEB_LOG_ERROR << "DBUS response error " << ec;
+ BMCWEB_LOG_ERROR("DBUS response error {}", ec);
messages::internalError(asyncResp->res);
return;
}