From 3a7ec2f937a374fec5d3229943fa2019f74e8272 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 22 Jul 2007 08:57:38 +0000 Subject: [PATCH] Upgrade writing ini failure to a warning in an attempt to track down bug 1696113. --- stepmania/src/IniFile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/IniFile.cpp b/stepmania/src/IniFile.cpp index 59c557e204..50a6592b3e 100644 --- a/stepmania/src/IniFile.cpp +++ b/stepmania/src/IniFile.cpp @@ -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; }