remove some logging

This commit is contained in:
Eric House 2018-12-17 08:26:00 -08:00
parent 3b48ee0ed8
commit d8d0065e90
3 changed files with 5 additions and 5 deletions

View file

@ -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();

View file

@ -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();

View file

@ -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 ) );
} }