From fa5ef010e058f55d5bea88009edd87aae02012c2 Mon Sep 17 00:00:00 2001 From: Thad Ward Date: Thu, 4 Sep 2003 13:41:35 +0000 Subject: [PATCH] add a little bit more info to a couple of existing LOG->Trace() statements --- stepmania/src/SongManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/SongManager.cpp b/stepmania/src/SongManager.cpp index b4d9cfa836..917f39d658 100644 --- a/stepmania/src/SongManager.cpp +++ b/stepmania/src/SongManager.cpp @@ -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 )