Browse Source

print icon uri when failing to decode

Guy Carmeli 8 years ago
parent
commit
2768932566

+ 1
- 1
android/app/src/main/java/com/reactnativenavigation/react/JsDevImageLoader.java View File

@@ -24,7 +24,7 @@ public class JsDevImageLoader {
24 24
             StrictMode.setThreadPolicy(threadPolicy);
25 25
             return drawable;
26 26
         } catch (Exception e) {
27
-            throw new RuntimeException(e);
27
+            throw new RuntimeException(iconDevUri, e);
28 28
         }
29 29
     }
30 30