diff options
author | 2014-07-16 18:41:46 -0700 | |
---|---|---|
committer | 2014-07-16 18:49:00 -0700 | |
commit | 2dae79b1966a7970c25c8b79beec1c95c13f6c87 (patch) | |
tree | 7864de33270995079b1e3d10d4725e68bf043b9e /java/src/com/android/inputmethod/latin/utils/DebugLogUtils.java | |
parent | 7f58115a861d1c7a926b8f2eb8612c02b388456a (diff) | |
download | latinime-2dae79b1966a7970c25c8b79beec1c95c13f6c87.tar.gz latinime-2dae79b1966a7970c25c8b79beec1c95c13f6c87.tar.xz latinime-2dae79b1966a7970c25c8b79beec1c95c13f6c87.zip |
Rename LatinImeLogger to DebugFlags
Bug: 15318007
Change-Id: Ic0268fd12865c9a692a5e7110a9beb76cb8b6d7f
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" |