Upgrade writing ini failure to a warning in an attempt to track down bug 1696113.

This commit is contained in:
Steve Checkoway
2007-07-22 08:57:38 +00:00
parent 5b0620ff88
commit 3a7ec2f937
+1 -1
View File
@@ -76,7 +76,7 @@ bool IniFile::WriteFile( const RString &sPath ) const
RageFile f;
if( !f.Open( sPath, RageFile::WRITE ) )
{
LOG->Trace( "Writing '%s' failed: %s", sPath.c_str(), f.GetError().c_str() );
LOG->Warn( "Writing '%s' failed: %s", sPath.c_str(), f.GetError().c_str() );
m_sError = f.GetError();
return false;
}