Don't log stack trace for missing LM.

We only have "en" included in the APK. Everything else shows a stack trace.

Bug 19946159

Change-Id: Ie213529d52175eb929b2c875a5558aea347af01f
main
Dan Zivkovic 2015-03-27 13:47:30 -07:00
parent 23a7998edd
commit 43ea67c23d
1 changed files with 1 additions and 1 deletions

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) {