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
             StrictMode.setThreadPolicy(threadPolicy);
24
             StrictMode.setThreadPolicy(threadPolicy);
25
             return drawable;
25
             return drawable;
26
         } catch (Exception e) {
26
         } catch (Exception e) {
27
-            throw new RuntimeException(e);
27
+            throw new RuntimeException(iconDevUri, e);
28
         }
28
         }
29
     }
29
     }
30
 
30