add debugging

This commit is contained in:
Chris Danford
2004-02-26 09:52:19 +00:00
parent 55c4fc8d06
commit c56df82b33
@@ -173,13 +173,14 @@ void MemoryCardDriver_Linux::GetStorageDevices( vector<UsbStorageDevice>& vDevic
} }
else if( strcmp(szTemp,"No")==0 ) else if( strcmp(szTemp,"No")==0 )
{ {
break; // this device isn't attached. Ignore it. LOG->Trace( "iUsbStorageIndex: %d is not attached", iUsbStorageIndex );
} }
else else
{ {
LOG->Warn( "Invalid value for Attached: '%s'", szTemp ); LOG->Warn( "Invalid value for Attached: '%s'", szTemp );
break;
} }
break; // we're done handling this device
} }
} }
} }