mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-22 07:28:16 +01:00
update commented-out log statements
This commit is contained in:
parent
515a253028
commit
9e4a889b6c
1 changed files with 4 additions and 4 deletions
|
@ -302,7 +302,7 @@ public class NetLaunchInfo implements Serializable {
|
|||
this( gi );
|
||||
|
||||
for ( CommsConnType typ : summary.conTypes.getTypes() ) {
|
||||
// DbgUtils.logf( "NetLaunchInfo(): got type %s", typ.toString() );
|
||||
// Log.d( TAG, "NetLaunchInfo(): got type %s", typ );
|
||||
switch( typ ) {
|
||||
case COMMS_CONN_BT:
|
||||
addBTInfo();
|
||||
|
@ -346,7 +346,7 @@ public class NetLaunchInfo implements Serializable {
|
|||
String result = inviteID;
|
||||
if ( null == result ) {
|
||||
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;
|
||||
}
|
||||
|
@ -358,7 +358,7 @@ public class NetLaunchInfo implements Serializable {
|
|||
Assert.assertNotNull( inviteID );
|
||||
Log.i( TAG, "gameID(): looking at inviteID: %s", inviteID );
|
||||
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;
|
||||
}
|
||||
Assert.assertTrue( 0 != result );
|
||||
|
@ -472,7 +472,7 @@ public class NetLaunchInfo implements Serializable {
|
|||
} catch ( org.json.JSONException jse ) {
|
||||
Log.ex( TAG, jse );
|
||||
}
|
||||
// DbgUtils.logf( "makeLaunchJSON() => %s", result );
|
||||
// Log.d( TAG, "makeLaunchJSON() => %s", result );
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue