revert unintended checkin: logging should not always be on.

This commit is contained in:
Andy2 2011-11-07 06:49:55 -08:00
parent ac875894a6
commit 995c410b7c

View file

@ -62,7 +62,7 @@ public class Utils {
SharedPreferences sp
= PreferenceManager.getDefaultSharedPreferences( context );
String key = context.getString( R.string.key_logging_on );
boolean on = true;//sp.getBoolean( key, false );
boolean on = sp.getBoolean( key, false );
logEnable( on );
}