summaryrefslogtreecommitdiffstats
path: root/emailcommon
diff options
context:
space:
mode:
authorMartin Hibdon <mhibdon@google.com>2014-08-28 11:00:08 -0700
committerMartin Hibdon <mhibdon@google.com>2014-08-28 11:53:51 -0700
commit51c653646d14d841fbe527aee9fab7a1886338f8 (patch)
treeeca87fdc28862d0b9ac463c68f210619799ea0dd /emailcommon
parent1c0aa4c0fc1e77a917efb1168db42e14dc78231d (diff)
downloadandroid_packages_apps_Email-51c653646d14d841fbe527aee9fab7a1886338f8.tar.gz
android_packages_apps_Email-51c653646d14d841fbe527aee9fab7a1886338f8.tar.bz2
android_packages_apps_Email-51c653646d14d841fbe527aee9fab7a1886338f8.zip
Put debug screen back into settings
There is still work to be done here: * The debug setting is not persisted in Exchange, so if the exchange service is killed, when it restarts the logging will not be active. * Nothing in Exchange actually does any additional logging if this logging is turned on. Change-Id: Ic578e6956f70dd47fba9b2895385312f71c47abf
Diffstat (limited to 'emailcommon')
-rw-r--r--emailcommon/src/com/android/emailcommon/service/EmailServiceProxy.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/emailcommon/src/com/android/emailcommon/service/EmailServiceProxy.java b/emailcommon/src/com/android/emailcommon/service/EmailServiceProxy.java
index 1c1f0ebc9..36a0d336e 100644
--- a/emailcommon/src/com/android/emailcommon/service/EmailServiceProxy.java
+++ b/emailcommon/src/com/android/emailcommon/service/EmailServiceProxy.java
@@ -65,13 +65,13 @@ public class EmailServiceProxy extends ServiceProxy implements IEmailService {
private final boolean isRemote;
// Standard debugging
- public static final int DEBUG_BIT = 1;
+ public static final int DEBUG_BIT = 0x01;
// Verbose (parser) logging
- public static final int DEBUG_VERBOSE_BIT = 2;
+ public static final int DEBUG_EXCHANGE_BIT = 0x02;
// File (SD card) logging
- public static final int DEBUG_FILE_BIT = 4;
+ public static final int DEBUG_FILE_BIT = 0x04;
// Enable strict mode
- public static final int DEBUG_ENABLE_STRICT_MODE = 8;
+ public static final int DEBUG_ENABLE_STRICT_MODE = 0x08;
// The first two constructors are used with local services that can be referenced by class
public EmailServiceProxy(Context _context, Class<?> _class) {