Corrected the error log message.
Change-Id: I682dda32c0482e0849289a70d5b3ffa624bb915d
Signed-off-by: Ratan Gupta <ratagupt@linux.vnet.ibm.com>
diff --git a/phosphor-ldap-config/ldap_configuration.cpp b/phosphor-ldap-config/ldap_configuration.cpp
index 0ce4c61..a54db9b 100644
--- a/phosphor-ldap-config/ldap_configuration.cpp
+++ b/phosphor-ldap-config/ldap_configuration.cpp
@@ -359,7 +359,8 @@
}
catch (const sdbusplus::exception::SdBusError& ex)
{
- log<level::ERR>("Failed to restart nslcd service",
+ log<level::ERR>("Failed to restart service",
+ entry("SERVICE=%s", service.c_str()),
entry("ERR=%s", ex.what()));
elog<InternalFailure>();
}
@@ -376,7 +377,8 @@
}
catch (const sdbusplus::exception::SdBusError& ex)
{
- log<level::ERR>("Failed to stop nslcd service",
+ log<level::ERR>("Failed to stop service",
+ entry("SERVICE=%s", service.c_str()),
entry("ERR=%s", ex.what()));
elog<InternalFailure>();
}