diff options
Diffstat (limited to 'src/common/Configuration/Config.cpp')
-rw-r--r-- | src/common/Configuration/Config.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/Configuration/Config.cpp b/src/common/Configuration/Config.cpp index d01d3f7b88..5e4c3ea413 100644 --- a/src/common/Configuration/Config.cpp +++ b/src/common/Configuration/Config.cpp @@ -374,7 +374,7 @@ T ConfigMgr::GetValueDefault(std::string const& name, T const& def, bool showLog if (showLogs) { LOG_WARN("server.loading", "Missing property {} in config file {}, recovered with environment '{}' value.", - name.c_str(), _filename.c_str(), envVar->c_str()); + name, _filename, envVar->c_str()); } strValue = *envVar; @@ -411,7 +411,7 @@ std::string ConfigMgr::GetValueDefault<std::string>(std::string const& name, std if (showLogs) { LOG_WARN("server.loading", "Missing property {} in config file {}, recovered with environment '{}' value.", - name.c_str(), _filename.c_str(), envVar->c_str()); + name, _filename, envVar->c_str()); } return *envVar; |