summaryrefslogtreecommitdiffstats
path: root/src/com/android/email/DebugUtils.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/email/DebugUtils.java')
-rw-r--r--src/com/android/email/DebugUtils.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/com/android/email/DebugUtils.java b/src/com/android/email/DebugUtils.java
deleted file mode 100644
index 94ce78e75..000000000
--- a/src/com/android/email/DebugUtils.java
+++ /dev/null
@@ -1,48 +0,0 @@
-package com.android.email;
-
-import android.content.Context;
-
-import com.android.email.service.EmailServiceUtils;
-import com.android.emailcommon.service.EmailServiceProxy;
-import com.android.emailcommon.utility.Utility;
-import com.android.mail.utils.LogTag;
-
-public class DebugUtils {
- public static final String LOG_TAG = LogTag.getLogTag();
-
- public static boolean DEBUG;
- public static boolean DEBUG_EXCHANGE;
- public static boolean DEBUG_FILE;
-
- public static void init(final Context context) {
- final Preferences prefs = Preferences.getPreferences(context);
- DEBUG = prefs.getEnableDebugLogging();
- DEBUG_EXCHANGE = prefs.getEnableExchangeLogging();
- DEBUG_FILE = prefs.getEnableExchangeFileLogging();
-
- // Enable logging in the EAS service, so it starts up as early as possible.
- updateLoggingFlags(context);
- enableStrictMode(prefs.getEnableStrictMode());
- }
-
- /**
- * Load enabled debug flags from the preferences and update the EAS debug flag.
- */
- public static void updateLoggingFlags(Context context) {
- Preferences prefs = Preferences.getPreferences(context);
- int debugLogging = prefs.getEnableDebugLogging() ? EmailServiceProxy.DEBUG_BIT : 0;
- int exchangeLogging =
- prefs.getEnableExchangeLogging() ? EmailServiceProxy.DEBUG_EXCHANGE_BIT: 0;
- int fileLogging =
- prefs.getEnableExchangeFileLogging() ? EmailServiceProxy.DEBUG_FILE_BIT : 0;
- int enableStrictMode =
- prefs.getEnableStrictMode() ? EmailServiceProxy.DEBUG_ENABLE_STRICT_MODE : 0;
- int debugBits = debugLogging | exchangeLogging | fileLogging | enableStrictMode;
- EmailServiceUtils.setRemoteServicesLogging(context, debugBits);
- }
-
- public static void enableStrictMode(final boolean enable) {
- Utility.enableStrictMode(enable);
- }
-
-}