mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-23 07:27:22 +01:00
remove some logging
This commit is contained in:
parent
3b48ee0ed8
commit
d8d0065e90
3 changed files with 5 additions and 5 deletions
|
@ -1520,7 +1520,7 @@ public class BTService extends XWService {
|
|||
try {
|
||||
Thread.sleep( 1000 * seconds );
|
||||
} catch ( InterruptedException ie ) {
|
||||
Log.w( TAG, "KillerIn: killed by owner" );
|
||||
// Log.d( TAG, "KillerIn: killed by owner" );
|
||||
}
|
||||
try {
|
||||
socket.close();
|
||||
|
|
|
@ -399,7 +399,7 @@ public class RelayService extends JobIntentService
|
|||
{
|
||||
MsgCmds cmd = cmdFrom( intent );
|
||||
if ( null != cmd ) {
|
||||
Log.d( TAG, "handleCommand(): cmd=%s", cmd.toString() );
|
||||
// Log.d( TAG, "handleCommand(): cmd=%s", cmd.toString() );
|
||||
switch( cmd ) {
|
||||
case PROCESS_GAME_MSGS:
|
||||
String[] relayIDs = new String[1];
|
||||
|
@ -606,7 +606,7 @@ public class RelayService extends JobIntentService
|
|||
if ( !skipAck ) {
|
||||
sendAckIf( header );
|
||||
}
|
||||
Log.d( TAG, "gotPacket(): cmd=%s", header.m_cmd.toString() );
|
||||
Log.d( TAG, "%s.gotPacket(): cmd=%s", this, header.m_cmd.toString() );
|
||||
switch ( header.m_cmd ) {
|
||||
case XWPDEV_UNAVAIL:
|
||||
int unavail = dis.readInt();
|
||||
|
|
|
@ -750,8 +750,8 @@ public class JNIThread extends Thread {
|
|||
public void handle( JNICmd cmd, Object... args )
|
||||
{
|
||||
if ( m_stopped && ! JNICmd.CMD_NONE.equals(cmd) ) {
|
||||
Log.w( TAG, "NOT adding %s to stopped thread!!!", cmd.toString() );
|
||||
DbgUtils.printStack( TAG );
|
||||
Log.w( TAG, "handle(%s): NOT adding to stopped thread!!!", cmd );
|
||||
// DbgUtils.printStack( TAG );
|
||||
} else {
|
||||
m_queue.add( new QueueElem( cmd, true, args ) );
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue