am 994530d9: Show source dictionary name of suggestions in the debug mode

* commit '994530d9bdc7684cc4501b0ced567ae1b393c2e8':
  Show source dictionary name of suggestions in the debug mode
main
Satoshi Kataoka 2013-11-19 19:38:21 -08:00 committed by Android Git Automerger
commit f1c6b4df1c
1 changed files with 2 additions and 1 deletions

View File

@ -432,7 +432,8 @@ public final class Suggest {
final String scoreInfoString;
if (normalizedScore > 0) {
scoreInfoString = String.format(
Locale.ROOT, "%d (%4.2f)", cur.mScore, normalizedScore);
Locale.ROOT, "%d (%4.2f), %s", cur.mScore, normalizedScore,
cur.mSourceDict.mDictType);
} else {
scoreInfoString = Integer.toString(cur.mScore);
}