From 098a5a316f74cc22b843ffc615ffb91244f337d3 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 1 Jun 2004 01:34:54 +0000 Subject: [PATCH] cmdline args don't belong in the log header --- stepmania/src/StepMania.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/StepMania.cpp b/stepmania/src/StepMania.cpp index c13f78ab90..69cbf0334e 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -858,6 +858,8 @@ static void WriteLogHeader() LOG->Info( "Log starting %.4d-%.2d-%.2d %.2d:%.2d:%.2d", 1900+now.tm_year, now.tm_mon+1, now.tm_mday, now.tm_hour+1, now.tm_min, now.tm_sec ); + LOG->Trace( " " ); + if( g_argc > 1 ) { CString args; @@ -872,7 +874,6 @@ static void WriteLogHeader() } LOG->Info( "Command line args (count=%d): %s", (g_argc - 1), args.c_str()); } - LOG->Trace( " " ); } static void ApplyLogPreferences()