update commented-out log statements

This commit is contained in:
Eric House 2021-05-17 17:26:30 -07:00
parent 515a253028
commit 9e4a889b6c

View file

@ -302,7 +302,7 @@ public class NetLaunchInfo implements Serializable {
this( gi ); this( gi );
for ( CommsConnType typ : summary.conTypes.getTypes() ) { for ( CommsConnType typ : summary.conTypes.getTypes() ) {
// DbgUtils.logf( "NetLaunchInfo(): got type %s", typ.toString() ); // Log.d( TAG, "NetLaunchInfo(): got type %s", typ );
switch( typ ) { switch( typ ) {
case COMMS_CONN_BT: case COMMS_CONN_BT:
addBTInfo(); addBTInfo();
@ -346,7 +346,7 @@ public class NetLaunchInfo implements Serializable {
String result = inviteID; String result = inviteID;
if ( null == result ) { if ( null == result ) {
result = GameUtils.formatGameID( gameID ); result = GameUtils.formatGameID( gameID );
// DbgUtils.logf( "inviteID(): m_inviteID null so substituting %s", result ); // Log.d( TAG, "inviteID(): m_inviteID null so substituting %s", result );
} }
return result; return result;
} }
@ -358,7 +358,7 @@ public class NetLaunchInfo implements Serializable {
Assert.assertNotNull( inviteID ); Assert.assertNotNull( inviteID );
Log.i( TAG, "gameID(): looking at inviteID: %s", inviteID ); Log.i( TAG, "gameID(): looking at inviteID: %s", inviteID );
result = Integer.parseInt( inviteID, 16 ); result = Integer.parseInt( inviteID, 16 );
// DbgUtils.logf( "gameID(): gameID -1 so substituting %d", result ); // Log.d( TAG, "gameID(): gameID -1 so substituting %d", result );
gameID = result; gameID = result;
} }
Assert.assertTrue( 0 != result ); Assert.assertTrue( 0 != result );
@ -472,7 +472,7 @@ public class NetLaunchInfo implements Serializable {
} catch ( org.json.JSONException jse ) { } catch ( org.json.JSONException jse ) {
Log.ex( TAG, jse ); Log.ex( TAG, jse );
} }
// DbgUtils.logf( "makeLaunchJSON() => %s", result ); // Log.d( TAG, "makeLaunchJSON() => %s", result );
return result; return result;
} }