Make file manager a bit less verbose, it's normal that createXMLTree does not always find the file

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@7453 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria 2011-01-16 19:42:52 +00:00
parent 6fa952766b
commit 78370b27ad

View File

@ -238,7 +238,10 @@ XMLNode *FileManager::createXMLTree(const std::string &filename)
}
catch (std::runtime_error& e)
{
fprintf(stderr, "[FileManager::createXMLTree] %s\n", e.what());
if (UserConfigParams::m_verbosity >= 3)
{
fprintf(stderr, "[FileManager::createXMLTree] %s\n", e.what());
}
return NULL;
}
} // getXMLTree