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 {
|
try {
|
||||||
Thread.sleep( 1000 * seconds );
|
Thread.sleep( 1000 * seconds );
|
||||||
} catch ( InterruptedException ie ) {
|
} catch ( InterruptedException ie ) {
|
||||||
Log.w( TAG, "KillerIn: killed by owner" );
|
// Log.d( TAG, "KillerIn: killed by owner" );
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
socket.close();
|
socket.close();
|
||||||
|
|
|
@ -399,7 +399,7 @@ public class RelayService extends JobIntentService
|
||||||
{
|
{
|
||||||
MsgCmds cmd = cmdFrom( intent );
|
MsgCmds cmd = cmdFrom( intent );
|
||||||
if ( null != cmd ) {
|
if ( null != cmd ) {
|
||||||
Log.d( TAG, "handleCommand(): cmd=%s", cmd.toString() );
|
// Log.d( TAG, "handleCommand(): cmd=%s", cmd.toString() );
|
||||||
switch( cmd ) {
|
switch( cmd ) {
|
||||||
case PROCESS_GAME_MSGS:
|
case PROCESS_GAME_MSGS:
|
||||||
String[] relayIDs = new String[1];
|
String[] relayIDs = new String[1];
|
||||||
|
@ -606,7 +606,7 @@ public class RelayService extends JobIntentService
|
||||||
if ( !skipAck ) {
|
if ( !skipAck ) {
|
||||||
sendAckIf( header );
|
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 ) {
|
switch ( header.m_cmd ) {
|
||||||
case XWPDEV_UNAVAIL:
|
case XWPDEV_UNAVAIL:
|
||||||
int unavail = dis.readInt();
|
int unavail = dis.readInt();
|
||||||
|
|
|
@ -750,8 +750,8 @@ public class JNIThread extends Thread {
|
||||||
public void handle( JNICmd cmd, Object... args )
|
public void handle( JNICmd cmd, Object... args )
|
||||||
{
|
{
|
||||||
if ( m_stopped && ! JNICmd.CMD_NONE.equals(cmd) ) {
|
if ( m_stopped && ! JNICmd.CMD_NONE.equals(cmd) ) {
|
||||||
Log.w( TAG, "NOT adding %s to stopped thread!!!", cmd.toString() );
|
Log.w( TAG, "handle(%s): NOT adding to stopped thread!!!", cmd );
|
||||||
DbgUtils.printStack( TAG );
|
// DbgUtils.printStack( TAG );
|
||||||
} else {
|
} else {
|
||||||
m_queue.add( new QueueElem( cmd, true, args ) );
|
m_queue.add( new QueueElem( cmd, true, args ) );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue