Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7f386acd authored by Dan Zivkovic's avatar Dan Zivkovic
Browse files

Make logs less spammy.

Bug 19987461.

Change-Id: Ibf58f2b26c2d01f765ef32abb47c84be49e2ba9f
parent 6bb70115
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -271,10 +271,14 @@ public abstract class AndroidWordLevelSpellCheckerSession extends Session {
            final int capitalizeType = StringUtils.getCapitalizationType(text);

            if (isInDictForAnyCapitalization(text, capitalizeType)) {
                if (DebugFlags.DEBUG_ENABLED) {
                    Log.i(TAG, "onGetSuggestionsInternal() : [" + text + "] is a valid word");
                }
                return AndroidSpellCheckerService.getInDictEmptySuggestions();
            }
            if (DebugFlags.DEBUG_ENABLED) {
                Log.i(TAG, "onGetSuggestionsInternal() : [" + text + "] is NOT a valid word");
            }

            final Keyboard keyboard = mService.getKeyboardForLocale(mLocale);
            if (null == keyboard) {