diff options
Diffstat (limited to 'java/src/com/android/inputmethod/latin/utils/DebugLogUtils.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/utils/DebugLogUtils.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/utils/DebugLogUtils.java b/java/src/com/android/inputmethod/latin/utils/DebugLogUtils.java index ac654fa65..1ab834fc3 100644 --- a/java/src/com/android/inputmethod/latin/utils/DebugLogUtils.java +++ b/java/src/com/android/inputmethod/latin/utils/DebugLogUtils.java @@ -18,14 +18,14 @@ package com.android.inputmethod.latin.utils; import android.util.Log; -import com.android.inputmethod.latin.LatinImeLogger; +import com.android.inputmethod.latin.define.DebugFlags; /** * A class for logging and debugging utility methods. */ public final class DebugLogUtils { private final static String TAG = DebugLogUtils.class.getSimpleName(); - private final static boolean sDBG = LatinImeLogger.sDBG; + private final static boolean sDBG = DebugFlags.DEBUG_ENABLED; /** * Calls .toString() on its non-null argument or returns "null" |