chore(Core/Misc): Correct some fmt outputs (#17091)
This commit is contained in:
parent
aea540181b
commit
3eb2463c69
3 changed files with 8 additions and 8 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue