summaryrefslogtreecommitdiff
path: root/redfish-core/include/utils
diff options
context:
space:
mode:
authorEd Tanous <ed@tanous.net>2020-09-30 02:04:08 +0300
committerEd Tanous <ed@tanous.net>2020-10-07 23:57:58 +0300
commit33102b0b67b7546a601169b494dac92ec1c1b4ae (patch)
treef8ccfc33bf751e8f2eeee97726bc5045037e43da /redfish-core/include/utils
parentb9c0b581bb5e032dd64f27fc3d89c73758ca96a0 (diff)
downloadbmcweb-33102b0b67b7546a601169b494dac92ec1c1b4ae.tar.xz
Fix a weird log function
__FUNCTION__ isn't needed; It's included in the log macro. Signed-off-by: Ed Tanous <ed@tanous.net> Change-Id: Icff2aaf778b494f3e9cfe487cdf538ccef52ffb2
Diffstat (limited to 'redfish-core/include/utils')
-rw-r--r--redfish-core/include/utils/fw_utils.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/redfish-core/include/utils/fw_utils.hpp b/redfish-core/include/utils/fw_utils.hpp
index 8e040701d1..0750b431b5 100644
--- a/redfish-core/include/utils/fw_utils.hpp
+++ b/redfish-core/include/utils/fw_utils.hpp
@@ -406,7 +406,7 @@ inline void getFwUpdateableStatus(std::shared_ptr<AsyncResp> asyncResp,
const std::variant<std::vector<std::string>>& resp) {
if (ec)
{
- BMCWEB_LOG_DEBUG << __FUNCTION__ << " error_code = " << ec
+ BMCWEB_LOG_DEBUG << " error_code = " << ec
<< " error msg = " << ec.message();
// System can exist with no updateable firmware,
// so don't throw error here.