Make logs less spammy.
Bug 19987461. Change-Id: Ibf58f2b26c2d01f765ef32abb47c84be49e2ba9fmain
parent
6bb7011559
commit
7f386acdd1
|
@ -271,10 +271,14 @@ public abstract class AndroidWordLevelSpellCheckerSession extends Session {
|
||||||
final int capitalizeType = StringUtils.getCapitalizationType(text);
|
final int capitalizeType = StringUtils.getCapitalizationType(text);
|
||||||
|
|
||||||
if (isInDictForAnyCapitalization(text, capitalizeType)) {
|
if (isInDictForAnyCapitalization(text, capitalizeType)) {
|
||||||
|
if (DebugFlags.DEBUG_ENABLED) {
|
||||||
Log.i(TAG, "onGetSuggestionsInternal() : [" + text + "] is a valid word");
|
Log.i(TAG, "onGetSuggestionsInternal() : [" + text + "] is a valid word");
|
||||||
|
}
|
||||||
return AndroidSpellCheckerService.getInDictEmptySuggestions();
|
return AndroidSpellCheckerService.getInDictEmptySuggestions();
|
||||||
}
|
}
|
||||||
|
if (DebugFlags.DEBUG_ENABLED) {
|
||||||
Log.i(TAG, "onGetSuggestionsInternal() : [" + text + "] is NOT a valid word");
|
Log.i(TAG, "onGetSuggestionsInternal() : [" + text + "] is NOT a valid word");
|
||||||
|
}
|
||||||
|
|
||||||
final Keyboard keyboard = mService.getKeyboardForLocale(mLocale);
|
final Keyboard keyboard = mService.getKeyboardForLocale(mLocale);
|
||||||
if (null == keyboard) {
|
if (null == keyboard) {
|
||||||
|
|
Loading…
Reference in New Issue