Change the debug message about a string that couldn't be found from an error message into a warning message because it seems to occur quite often
git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@5667 4a71c877-e1ca-e34f-864e-861f7616d084master
parent
b40e7a6a90
commit
f2bc3c056f
|
@ -110,7 +110,7 @@ const char* strresGetStringByID(const STR_RES* psRes, const char* ID)
|
|||
string = treapFind(psRes->psIDTreap, ID);
|
||||
if (!string)
|
||||
{
|
||||
debug(LOG_ERROR, "Couldn't find string for id \"%s\"", ID);
|
||||
debug(LOG_WARNING, "Couldn't find string for id \"%s\"", ID);
|
||||
}
|
||||
|
||||
return string;
|
||||
|
|
Loading…
Reference in New Issue