mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-07 05:24:46 +01:00
log when unable open game based on rowid -- which may happen if
e.g. relay is sending packets to wrong device.
This commit is contained in:
parent
cd728853b9
commit
b7e00bfc0c
1 changed files with 3 additions and 0 deletions
|
@ -751,6 +751,9 @@ public class DBUtils {
|
|||
if ( 1 == cursor.getCount() && cursor.moveToFirst() ) {
|
||||
result = cursor.getBlob( cursor
|
||||
.getColumnIndex(DBHelper.SNAPSHOT));
|
||||
} else {
|
||||
DbgUtils.logf( "DBUtils.loadGame: none for rowid=%d",
|
||||
rowid );
|
||||
}
|
||||
cursor.close();
|
||||
db.close();
|
||||
|
|
Loading…
Reference in a new issue