ソースを参照

Android: print stack trace on exception in generic failure case

Gaëtan Renaudeau 8 年 前
コミット
fe167f0a25
共有1 個のファイルを変更した1 個の追加0 個の削除を含む
  1. 1
    0
      android/src/main/java/fr/greweb/reactnativeviewshot/ViewShot.java

+ 1
- 0
android/src/main/java/fr/greweb/reactnativeviewshot/ViewShot.java ファイルの表示

@@ -89,6 +89,7 @@ public class ViewShot implements UIBlock {
89 89
             }
90 90
         }
91 91
         catch (Exception e) {
92
+            e.printStackTrace();
92 93
             promise.reject(ERROR_UNABLE_TO_SNAPSHOT, "Failed to capture view snapshot");
93 94
         }
94 95
         finally {