add a little bit more info to a couple of existing LOG->Trace() statements

This commit is contained in:
Thad Ward
2003-09-04 13:41:35 +00:00
parent cf9bd57729
commit fa5ef010e0
+2 -2
View File
@@ -522,7 +522,7 @@ void SongManager::SaveCourseRankingsToFile( CString fn )
void SongManager::SaveNoteScoresToFile( CString fn, int c )
{
// notes scores
LOG->Trace("Writing note scores");
LOG->Trace("Writing note scores to %s", fn.c_str());
{
FILE* fp = fopen( fn, "w" );
if( fp )
@@ -576,7 +576,7 @@ void SongManager::SaveNoteScoresToFile( CString fn, int c )
void SongManager::SaveCourseScoresToFile( CString fn, int c )
{
// course scores
LOG->Trace("Writing course scores");
LOG->Trace("Writing course scores to %s", fn.c_str());
{
FILE* fp = fopen( fn, "w" );
if( fp )