Fixed #949: Using Log:: in addons_manager. Thanks to alasin.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@12708 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk
2013-04-28 22:14:45 +00:00
parent 814282e20f
commit 0d02f21e04

View File

@@ -126,7 +126,7 @@ void AddonsManager::initOnline(const XMLNode *xml)
if(file_manager->fileExists(full_path))
{
if(UserConfigParams::logAddons())
printf("[addons] Removing cached icon '%s'.\n",
Log::warn("[addons] Removing cached icon '%s'.\n",
addon.getIconBasename().c_str());
file_manager->removeFile(full_path);
}
@@ -185,7 +185,7 @@ void AddonsManager::initOnline(const XMLNode *xml)
// This addon is not on the server anymore, and not installed. Remove
// it from the list.
if(UserConfigParams::logAddons())
printf(
Log::warn(
"[addons] Removing '%s' which is not on the server anymore.\n",
m_addons_list.getData()[i].getId().c_str() );
std::string icon = m_addons_list.getData()[i].getIconBasename();
@@ -243,7 +243,7 @@ void AddonsManager::checkInstalledAddons()
if(n<0) continue;
if(!m_addons_list.getData()[n].isInstalled())
{
printf("[addons] Marking '%s' as being installed.\n",
Log::info("[addons] Marking '%s' as being installed.\n",
kp->getIdent().c_str());
m_addons_list.getData()[n].setInstalled(true);
something_was_changed = true;
@@ -262,7 +262,7 @@ void AddonsManager::checkInstalledAddons()
if(n<0) continue;
if(!m_addons_list.getData()[n].isInstalled())
{
printf("[addons] Marking '%s' as being installed.\n",
Log::info("[addons] Marking '%s' as being installed.\n",
track->getIdent().c_str());
m_addons_list.getData()[n].setInstalled(true);
something_was_changed = true;