summaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorerihel <erihel@gmail.com>2013-05-03 21:33:19 +0200
committererihel <erihel@gmail.com>2013-05-03 21:33:19 +0200
commit5a31a936105a070856740b3e2431350d97214b1d (patch)
tree7f8bff7cb0d9e1946993499f3aec838149f497ef /src/common
parent3c442d17dcc0d81a17a5ee8e25a5adc6f0b3d1bd (diff)
downloadcolobot-5a31a936105a070856740b3e2431350d97214b1d.tar.gz
colobot-5a31a936105a070856740b3e2431350d97214b1d.tar.bz2
colobot-5a31a936105a070856740b3e2431350d97214b1d.zip
Changed log level in profile.cpp to error
Diffstat (limited to 'src/common')
-rw-r--r--src/common/profile.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/common/profile.cpp b/src/common/profile.cpp
index f36baca..f165119 100644
--- a/src/common/profile.cpp
+++ b/src/common/profile.cpp
@@ -51,7 +51,7 @@ CProfile::~CProfile()
}
catch (std::exception & e)
{
- GetLogger()->Info("Error on storing profile: %s\n", e.what());
+ GetLogger()->Error("Error on storing profile: %s\n", e.what());
}
}
}
@@ -69,7 +69,7 @@ bool CProfile::InitCurrentDirectory()
}
catch (std::exception & e)
{
- GetLogger()->Info("Error on parsing profile: %s\n", e.what());
+ GetLogger()->Error("Error on parsing profile: %s\n", e.what());
return false;
}
return true;
@@ -86,7 +86,7 @@ bool CProfile::SetLocalProfileString(std::string section, std::string key, std::
}
catch (std::exception & e)
{
- GetLogger()->Info("Error on parsing profile: %s\n", e.what());
+ GetLogger()->Error("Error on parsing profile: %s\n", e.what());
return false;
}
return true;
@@ -101,7 +101,7 @@ bool CProfile::GetLocalProfileString(std::string section, std::string key, std::
}
catch (std::exception & e)
{
- GetLogger()->Info("Error on parsing profile: %s\n", e.what());
+ GetLogger()->Error("Error on parsing profile: %s\n", e.what());
return false;
}
return true;
@@ -117,7 +117,7 @@ bool CProfile::SetLocalProfileInt(std::string section, std::string key, int valu
}
catch (std::exception & e)
{
- GetLogger()->Info("Error on parsing profile: %s\n", e.what());
+ GetLogger()->Error("Error on parsing profile: %s\n", e.what());
return false;
}
return true;
@@ -132,7 +132,7 @@ bool CProfile::GetLocalProfileInt(std::string section, std::string key, int &val
}
catch (std::exception & e)
{
- GetLogger()->Info("Error on parsing profile: %s\n", e.what());
+ GetLogger()->Error("Error on parsing profile: %s\n", e.what());
return false;
}
return true;
@@ -148,7 +148,7 @@ bool CProfile::SetLocalProfileFloat(std::string section, std::string key, float
}
catch (std::exception & e)
{
- GetLogger()->Info("Error on parsing profile: %s\n", e.what());
+ GetLogger()->Error("Error on parsing profile: %s\n", e.what());
return false;
}
return true;
@@ -163,7 +163,7 @@ bool CProfile::GetLocalProfileFloat(std::string section, std::string key, float
}
catch (std::exception & e)
{
- GetLogger()->Info("Error on parsing profile: %s\n", e.what());
+ GetLogger()->Error("Error on parsing profile: %s\n", e.what());
return false;
}
return true;
@@ -187,7 +187,7 @@ std::vector< std::string > CProfile::GetLocalProfileSection(std::string section,
}
catch (std::exception & e)
{
- GetLogger()->Info("Error on parsing profile: %s\n", e.what());
+ GetLogger()->Error("Error on parsing profile: %s\n", e.what());
}
return ret_list;