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
57ba6ab693
commit
536d220ba7
2 changed files with 3 additions and 3 deletions
|
@ -2075,7 +2075,7 @@ public class DBUtils {
|
||||||
|
|
||||||
public static void setBoolFor( Context context, String key, boolean value )
|
public static void setBoolFor( Context context, String key, boolean value )
|
||||||
{
|
{
|
||||||
DbgUtils.logdf( "DBUtils.setBoolFor(key=%s, val=%b)", key, value );
|
// DbgUtils.logdf( "DBUtils.setBoolFor(key=%s, val=%b)", key, value );
|
||||||
String asStr = String.format( "%b", value );
|
String asStr = String.format( "%b", value );
|
||||||
setStringFor( context, key, asStr );
|
setStringFor( context, key, asStr );
|
||||||
}
|
}
|
||||||
|
|
|
@ -103,14 +103,14 @@ public class DevID {
|
||||||
s_relayDevID = devID;
|
s_relayDevID = devID;
|
||||||
|
|
||||||
DBUtils.setBoolFor( context, DEVID_ACK_KEY, true );
|
DBUtils.setBoolFor( context, DEVID_ACK_KEY, true );
|
||||||
DbgUtils.printStack();
|
// DbgUtils.printStack();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void clearRelayDevID( Context context )
|
public static void clearRelayDevID( Context context )
|
||||||
{
|
{
|
||||||
DbgUtils.logf( "DevID.clearRelayDevID()" );
|
DbgUtils.logf( "DevID.clearRelayDevID()" );
|
||||||
DBUtils.setStringFor( context, DEVID_KEY, "" );
|
DBUtils.setStringFor( context, DEVID_KEY, "" );
|
||||||
DbgUtils.printStack();
|
// DbgUtils.printStack();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void setGCMDevID( Context context, String devID )
|
public static void setGCMDevID( Context context, String devID )
|
||||||
|
|
Loading…
Add table
Reference in a new issue