output cleanup

This commit is contained in:
Glenn Maynard
2004-01-13 03:11:25 +00:00
parent 5d34bff39d
commit f1a1246dcd
3 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -82,7 +82,7 @@ void Bookkeeper::ReadFromDisk()
RageFile f;
if( !f.Open(COINS_DAT, RageFile::READ) )
{
LOG->Warn( "Couldn't open file '%s'", COINS_DAT.c_str() );
LOG->Trace( "Couldn't open file \"%s\": %s", COINS_DAT.c_str(), f.GetError().c_str() );
return;
}
@@ -114,7 +114,7 @@ void Bookkeeper::WriteToDisk()
RageFile f;
if( !f.Open(COINS_DAT, RageFile::WRITE) )
{
LOG->Warn( "Couldn't open file '%s'", COINS_DAT.c_str() );
LOG->Warn( "Couldn't open file \"%s\" for writing: %s", COINS_DAT.c_str(), f.GetError().c_str() );
return;
}