From 31eba10f3ee0ea5f607d852bf419a1bd356afcf1 Mon Sep 17 00:00:00 2001 From: Thad Ward Date: Fri, 21 May 2004 11:48:35 +0000 Subject: [PATCH] add trace output so people aren't left wondering why SM is just sitting there apparently doing nothing. --- stepmania/src/CatalogXml.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/stepmania/src/CatalogXml.cpp b/stepmania/src/CatalogXml.cpp index 79f016f21d..7918e832fc 100644 --- a/stepmania/src/CatalogXml.cpp +++ b/stepmania/src/CatalogXml.cpp @@ -12,6 +12,7 @@ #include "CatalogXml.h" #include "SongManager.h" +#include "RageLog.h" #include "song.h" #include "Steps.h" @@ -21,6 +22,8 @@ void SaveCatalogXml( CString sDir ) { CString fn = sDir + CATALOG_XML; + LOG->Trace( "Writing %s ...", fn.c_str() ); + XNode xml; xml.name = "Catalog"; @@ -56,4 +59,5 @@ void SaveCatalogXml( CString sDir ) // bool bSaved = xml.SaveToFile(fn); + LOG->Trace( "Done." ); }