From 9cd65ffc0f46433b69de8f0ec0fc758b827fc471 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 22 Sep 2003 01:06:07 +0000 Subject: [PATCH] reenable log (as a trace, not a warning) --- stepmania/src/Course.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stepmania/src/Course.cpp b/stepmania/src/Course.cpp index a54880fa9e..e5bf3de035 100644 --- a/stepmania/src/Course.cpp +++ b/stepmania/src/Course.cpp @@ -221,9 +221,9 @@ void Course::LoadFromCRSFile( CString sPath ) { /* XXX: We need a place to put "user warnings". This is too loud for info.txt-- * it obscures important warnings--and regular users never look there, anyway. */ - //LOG->Warn( "Course file '%s' random_within_group entry '%s' specifies a group that doesn't exist. " - // "This entry will be ignored.", - // m_sPath.c_str(), sSong.c_str()); + LOG->Trace( "Course file '%s' random_within_group entry '%s' specifies a group that doesn't exist. " + "This entry will be ignored.", + m_sPath.c_str(), sSong.c_str()); continue; // skip this #SONG } }