aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinKeyboardShiftState.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinKeyboardShiftState.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinKeyboardShiftState.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinKeyboardShiftState.java b/java/src/com/android/inputmethod/latin/LatinKeyboardShiftState.java
index 74c474293..e916306c8 100644
--- a/java/src/com/android/inputmethod/latin/LatinKeyboardShiftState.java
+++ b/java/src/com/android/inputmethod/latin/LatinKeyboardShiftState.java
@@ -30,7 +30,7 @@ public class LatinKeyboardShiftState {
}
}
if (DEBUG)
- Log.d(TAG, "setShifted: " + toString(oldState) + " > " + this);
+ Log.d(TAG, "setShifted(" + newShiftState + "): " + toString(oldState) + " > " + this);
return mState != oldState;
}
@@ -44,7 +44,8 @@ public class LatinKeyboardShiftState {
mState = NORMAL;
}
if (DEBUG)
- Log.d(TAG, "setShiftLocked: " + toString(oldState) + " > " + this);
+ Log.d(TAG, "setShiftLocked(" + newShiftLockState + "): " + toString(oldState)
+ + " > " + this);
}
public void setAutomaticTemporaryUpperCase() {