chore(Core/Misc): Correct some fmt outputs (#17091)

This commit is contained in:
Kitzunu
2023-08-27 06:23:26 +02:00
committed by GitHub
parent aea540181b
commit 3eb2463c69
3 changed files with 8 additions and 8 deletions

View File

@@ -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;