mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-23 07:27:22 +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() ) {
|
if ( 1 == cursor.getCount() && cursor.moveToFirst() ) {
|
||||||
result = cursor.getBlob( cursor
|
result = cursor.getBlob( cursor
|
||||||
.getColumnIndex(DBHelper.SNAPSHOT));
|
.getColumnIndex(DBHelper.SNAPSHOT));
|
||||||
|
} else {
|
||||||
|
DbgUtils.logf( "DBUtils.loadGame: none for rowid=%d",
|
||||||
|
rowid );
|
||||||
}
|
}
|
||||||
cursor.close();
|
cursor.close();
|
||||||
db.close();
|
db.close();
|
||||||
|
|
Loading…
Add table
Reference in a new issue