1
0
forked from 0ad/0ad

Change the LOGWARNING when a config setting doesn't exist to a LOGMESSAGE.

This was SVN commit r14101.
This commit is contained in:
JoshuaJB 2013-11-07 21:02:22 +00:00
parent 8d5d66e57b
commit 87e9c5694e

View File

@ -55,7 +55,7 @@ std::string JSI_ConfigDB::GetValue(void* UNUSED(cbdata), std::wstring cfgNsStrin
}
else
{
LOGWARNING(L"Config setting %hs does not exist!", name.c_str());
LOGMESSAGE(L"Config setting %hs does not exist!", name.c_str());
return std::string();
}
}