Merge "Don't log stack trace for missing LM."

This commit is contained in:
Dan Zivkovic 2015-03-27 21:00:20 +00:00 committed by Android (Google) Code Review
commit f267e84548

View file

@ -95,7 +95,7 @@ final public class BinaryDictionaryGetter {
try {
afd = context.getResources().openRawResourceFd(fallbackResId);
} catch (RuntimeException e) {
Log.e(TAG, "Resource not found: " + fallbackResId, e);
Log.e(TAG, "Resource not found: " + fallbackResId);
return null;
}
if (afd == null) {