From 67f1b58ea00de036a7b5f46764b6c6e3dca1e5b8 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 1 Nov 2003 22:16:42 +0000 Subject: [PATCH] improve trace --- stepmania/src/Song.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/stepmania/src/Song.cpp b/stepmania/src/Song.cpp index 5b8a8e6070..f7bfc9d8d1 100644 --- a/stepmania/src/Song.cpp +++ b/stepmania/src/Song.cpp @@ -1115,9 +1115,8 @@ void Song::SaveToSMFile( CString sPath, bool bSavingCache ) void Song::SaveToDWIFile() { - LOG->Trace( "Song::SaveToSongFileAndDWI()" ); - - CString sPath = SetExtension( GetSongFilePath(), "dwi" ); + const CString sPath = SetExtension( GetSongFilePath(), "dwi" ); + LOG->Trace( "Song::SaveToDWIFile(%s)", sPath.c_str() ); NotesWriterDWI wr; wr.Write(sPath, *this);