diff options
author | Kitzunu <24550914+Kitzunu@users.noreply.github.com> | 2023-08-27 06:23:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-27 06:23:26 +0200 |
commit | 3eb2463c69e55f6e76683cca37811e8a8ca29605 (patch) | |
tree | c83ed8576db7dcd0f6f2a36247da399a4d8a7647 /src/common/Configuration/Config.cpp | |
parent | aea540181b38e191d6f237e6a26e561ca10094f6 (diff) |
chore(Core/Misc): Correct some fmt outputs (#17091)
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; |