aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/RichInputConnection.java
diff options
context:
space:
mode:
authorKen Wakasa <kwakasa@google.com>2013-06-25 08:20:56 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-06-25 08:20:57 +0000
commit12ef7d37021e2f99de5cc15826cc6dcd3250c41a (patch)
tree838a29f6b88e3ac324a8c0ff97acab408a8f6c85 /java/src/com/android/inputmethod/latin/RichInputConnection.java
parent81c5c3ce7f0b9919e7cbd9a8d8b767bb8fdd1752 (diff)
parent03118a276014cd44d44d0d46f4f39622765e8e0c (diff)
downloadlatinime-12ef7d37021e2f99de5cc15826cc6dcd3250c41a.tar.gz
latinime-12ef7d37021e2f99de5cc15826cc6dcd3250c41a.tar.xz
latinime-12ef7d37021e2f99de5cc15826cc6dcd3250c41a.zip
Merge "Cleanup under the utils package"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/RichInputConnection.java')
-rw-r--r--java/src/com/android/inputmethod/latin/RichInputConnection.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/RichInputConnection.java b/java/src/com/android/inputmethod/latin/RichInputConnection.java
index dc3aaaa9b..6e3e7b218 100644
--- a/java/src/com/android/inputmethod/latin/RichInputConnection.java
+++ b/java/src/com/android/inputmethod/latin/RichInputConnection.java
@@ -28,7 +28,7 @@ import android.view.inputmethod.InputConnection;
import com.android.inputmethod.latin.define.ProductionFlag;
import com.android.inputmethod.latin.utils.CapsModeUtils;
-import com.android.inputmethod.latin.utils.LogUtils;
+import com.android.inputmethod.latin.utils.DebugLogUtils;
import com.android.inputmethod.latin.utils.StringUtils;
import com.android.inputmethod.research.ResearchLogger;
@@ -107,7 +107,7 @@ public final class RichInputConnection {
+ "\nActual text = " + reference.length() + " " + reference;
((LatinIME)mParent).debugDumpStateAndCrashWithException(context);
} else {
- Log.e(TAG, LogUtils.getStackTrace(2));
+ Log.e(TAG, DebugLogUtils.getStackTrace(2));
Log.e(TAG, "Exp <> Actual : " + mCurrentCursorPosition + " <> " + et.selectionStart);
}
}
@@ -156,7 +156,7 @@ public final class RichInputConnection {
if (mNestLevel != 1) {
// TODO: exception instead
Log.e(TAG, "Batch edit level incorrect : " + mNestLevel);
- Log.e(TAG, LogUtils.getStackTrace(4));
+ Log.e(TAG, DebugLogUtils.getStackTrace(4));
}
}