am f267e845: Merge "Don\'t log stack trace for missing LM."

* commit 'f267e84548621319c34dcfb3a1c87e5943feb3af':
  Don't log stack trace for missing LM.
diff --git a/java/src/com/android/inputmethod/latin/BinaryDictionaryGetter.java b/java/src/com/android/inputmethod/latin/BinaryDictionaryGetter.java
index a1c1b6d..5f2a112 100644
--- a/java/src/com/android/inputmethod/latin/BinaryDictionaryGetter.java
+++ b/java/src/com/android/inputmethod/latin/BinaryDictionaryGetter.java
@@ -95,7 +95,7 @@
         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) {