remove some logging

This commit is contained in:
Eric House 2013-11-18 06:33:59 -08:00
parent 03f532374b
commit 7ff9496d23

View file

@ -367,7 +367,7 @@ public class RelayService extends XWService
private boolean startFetchThreadIf() private boolean startFetchThreadIf()
{ {
DbgUtils.logf( "startFetchThreadIf()" ); // DbgUtils.logf( "startFetchThreadIf()" );
boolean handled = !XWApp.UDP_ENABLED; boolean handled = !XWApp.UDP_ENABLED;
if ( handled && null == m_fetchThread ) { if ( handled && null == m_fetchThread ) {
m_fetchThread = new Thread( null, new Runnable() { m_fetchThread = new Thread( null, new Runnable() {
@ -416,7 +416,7 @@ public class RelayService extends XWService
resetExitTimer(); resetExitTimer();
gotPacket( packet ); gotPacket( packet );
} catch ( java.io.InterruptedIOException iioe ) { } catch ( java.io.InterruptedIOException iioe ) {
DbgUtils.logf( "FYI: udp receive timeout" ); // DbgUtils.logf( "FYI: udp receive timeout" );
} catch( java.io.IOException ioe ) { } catch( java.io.IOException ioe ) {
break; break;
} }
@ -1191,7 +1191,7 @@ public class RelayService extends XWService
long interval = Utils.getCurSeconds() - m_lastGamePacketReceived; long interval = Utils.getCurSeconds() - m_lastGamePacketReceived;
result = interval < MAX_KEEPALIVE_SECS; result = interval < MAX_KEEPALIVE_SECS;
} }
DbgUtils.logf( "RelayService.shouldMaintainConnection=>%b", result ); // DbgUtils.logf( "RelayService.shouldMaintainConnection=>%b", result );
return result; return result;
} }