From f0c0a76238d4ddff63c5cc191b8d792c54429af0 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sun, 24 Feb 2008 01:10:50 +0000 Subject: [PATCH] add logging of which song/steps are chosen --- stepmania/src/Course.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stepmania/src/Course.cpp b/stepmania/src/Course.cpp index 75337a4279..d23a6670b7 100644 --- a/stepmania/src/Course.cpp +++ b/stepmania/src/Course.cpp @@ -638,6 +638,8 @@ bool Course::GetTrailUnsorted( StepsType st, CourseDifficulty cd, Trail &trail ) te.dc = dc; } trail.m_vEntries.push_back( te ); + + LOG->Trace( "Chose: %s, %d", te.pSong->GetSongDir().c_str(), te.pSteps->GetMeter() ); if( IsAnEdit() && MAX_SONGS_IN_EDIT_COURSE > 0 && int(trail.m_vEntries.size()) >= MAX_SONGS_IN_EDIT_COURSE )