add more logging around failure-to-open-intent

This commit is contained in:
Eric House 2019-05-16 11:58:50 -07:00
parent cf4a7d91a0
commit c6c8e4209f

View file

@ -2139,6 +2139,7 @@ public class GamesListDelegate extends ListDelegateBase
new GameLock.GotLockProc() { new GameLock.GotLockProc() {
@Override @Override
public void gotLock( GameLock lock ) { public void gotLock( GameLock lock ) {
Log.d( TAG, "startFirstHasDict.gotLock(%s)", lock );
if ( lock != null ) { if ( lock != null ) {
boolean haveDict = GameUtils boolean haveDict = GameUtils
.gameDictsHere( m_activity, lock ); .gameDictsHere( m_activity, lock );
@ -2150,6 +2151,7 @@ public class GamesListDelegate extends ListDelegateBase
} }
} ); } );
} }
Log.d( TAG, "startFirstHasDict(rowid=%d) => %b", rowid, handled );
return handled; return handled;
} }