Updated AUTHORS
This commit is contained in:
parent
99fa4dbfed
commit
3d3de96e64
2
AUTHORS
2
AUTHORS
|
@ -27,7 +27,7 @@ provided guidance in the entire effort.
|
|||
|
||||
Adam Langley made the original valiant effort to port Tor to Android.
|
||||
|
||||
Sathyanarayanan <gsathya.ceg@gmail.com> created a patch for the wizard
|
||||
Sathyanarayanan <gsathya@torproject.org> created a patch for the wizard
|
||||
which updated the icon and link for the secure chat app info to point
|
||||
to Gibberbot, and hopefully will continue to contribute useful patches.
|
||||
|
||||
|
|
|
@ -43,7 +43,7 @@ import android.util.Log;
|
|||
public class TorService extends Service implements TorServiceConstants, Runnable, EventHandler
|
||||
{
|
||||
|
||||
public static boolean ENABLE_DEBUG_LOG = false;
|
||||
public static boolean ENABLE_DEBUG_LOG = true;
|
||||
|
||||
private static int currentStatus = STATUS_OFF;
|
||||
|
||||
|
@ -1275,7 +1275,8 @@ public class TorService extends Service implements TorServiceConstants, Runnable
|
|||
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
|
||||
|
||||
ENABLE_DEBUG_LOG = prefs.getBoolean("pref_enable_logging",false);
|
||||
//ENABLE_DEBUG_LOG = prefs.getBoolean("pref_enable_logging",false);
|
||||
ENABLE_DEBUG_LOG = true;
|
||||
Log.i(TAG,"debug logging:" + ENABLE_DEBUG_LOG);
|
||||
|
||||
boolean useBridges = prefs.getBoolean(TorConstants.PREF_BRIDGES_ENABLED, false);
|
||||
|
|
Loading…
Reference in New Issue