From c56df82b3333be6195e91ea798f3a320d71be621 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Thu, 26 Feb 2004 09:52:19 +0000 Subject: [PATCH] add debugging --- stepmania/src/arch/MemoryCard/MemoryCardDriver_Linux.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/stepmania/src/arch/MemoryCard/MemoryCardDriver_Linux.cpp b/stepmania/src/arch/MemoryCard/MemoryCardDriver_Linux.cpp index 7000218a73..3bfe05e2b4 100644 --- a/stepmania/src/arch/MemoryCard/MemoryCardDriver_Linux.cpp +++ b/stepmania/src/arch/MemoryCard/MemoryCardDriver_Linux.cpp @@ -173,13 +173,14 @@ void MemoryCardDriver_Linux::GetStorageDevices( vector& vDevic } else if( strcmp(szTemp,"No")==0 ) { - break; // this device isn't attached. Ignore it. + LOG->Trace( "iUsbStorageIndex: %d is not attached", iUsbStorageIndex ); } else { LOG->Warn( "Invalid value for Attached: '%s'", szTemp ); - break; } + + break; // we're done handling this device } } }