log when more than one game found with a given ID.

This commit is contained in:
Eric House 2012-05-20 10:33:26 -07:00
parent 1ca36044a0
commit 469f63f96f

View file

@ -456,6 +456,10 @@ public class DBUtils {
cursor.close();
db.close();
}
if ( null != result && 1 < result.length ) {
DbgUtils.logf( "getRowIDsFor(%x)=>length %d array", gameID,
result.length );
}
return result;
}