mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-06 20:45:54 +01:00
add debugging stuff -- don't push
This commit is contained in:
parent
d799b94169
commit
ef39a2fa62
1 changed files with 4 additions and 0 deletions
|
@ -561,6 +561,8 @@ public class MQTTUtils extends Thread
|
|||
private static void notifyNotHere( Context context, String addressee,
|
||||
int gameID )
|
||||
{
|
||||
Log.d( TAG, "notifyNotHere(devID=%s, gameID=%d)", addressee, gameID );
|
||||
DbgUtils.printStack( TAG );
|
||||
byte[] packet = XwJNI.dvc_makeMQTTNoSuchGame( gameID );
|
||||
addToSendQueue( context, addressee, gameID, packet );
|
||||
}
|
||||
|
@ -587,6 +589,8 @@ public class MQTTUtils extends Thread
|
|||
|
||||
public static void gameDied( Context context, String devID, int gameID )
|
||||
{
|
||||
Log.d( TAG, "gameDied(devID=%s, gameID=%d)", devID, gameID );
|
||||
DbgUtils.printStack( TAG );
|
||||
byte[] packet = XwJNI.dvc_makeMQTTNoSuchGame( gameID );
|
||||
addToSendQueue( context, devID, gameID, packet );
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue