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-861f7616d084
master
Giel van Schijndel 2008-07-25 22:14:47 +00:00
parent b40e7a6a90
commit f2bc3c056f
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ const char* strresGetStringByID(const STR_RES* psRes, const char* ID)
string = treapFind(psRes->psIDTreap, ID); string = treapFind(psRes->psIDTreap, ID);
if (!string) 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; return string;