Dump mount points in debug builds.

This commit is contained in:
Steve Checkoway
2006-08-21 13:05:21 +00:00
parent 86880827c3
commit 0448234e68
+5 -1
View File
@@ -448,7 +448,11 @@ bool RageFileManager::Mount( const RString &sType, const RString &sRoot_, const
ASSERT( !sRoot.empty() );
CHECKPOINT_M( ssprintf("\"%s\", \"%s\", \"%s\"", sType.c_str(), sRoot.c_str(), sMountPoint.c_str() ) );
const RString &sPaths = ssprintf( "\"%s\", \"%s\", \"%s\"", sType.c_str(), sRoot.c_str(), sMountPoint.c_str() );
CHECKPOINT_M( sPaths );
#if defined(DEBUG)
puts( sPaths );
#endif
// Unmount anything that was previously mounted here.
Unmount( sType, sRoot, sMountPoint );