add trace output so people aren't left wondering why SM is just sitting there apparently doing nothing.

This commit is contained in:
Thad Ward
2004-05-21 11:48:35 +00:00
parent 78a284376e
commit 31eba10f3e
+4
View File
@@ -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." );
}