Skip to content

Commit

Permalink
print error log information above of throwable
Browse files Browse the repository at this point in the history
  • Loading branch information
kezong committed Dec 13, 2020
1 parent 49b29bf commit 1f655a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -558,10 +558,10 @@ class VariantProcessor {
}
FatUtils.mergeFiles(files, of)
} catch (Exception e) {
e.printStackTrace()
FatUtils.logAnytime(("If you see this error message, please submit issue to " +
"https://github.com/kezong/fat-aar-android/issues with version of AGP and Gradle. Thank you.")
)
e.printStackTrace()
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ protected void doTaskAction() {
try {
doFullTaskAction();
} catch (Exception e) {
e.printStackTrace();
System.out.println("Gradle Plugin Version:" + mGradlePluginVersion);
System.out.println("Gradle Version:" + mGradleVersion);
System.out.println("If you see this error message, please submit issue to " +
"https://github.com/kezong/fat-aar-android/issues with Gradle version. Thank you.");
e.printStackTrace();
}
}

Expand Down

0 comments on commit 1f655a7

Please sign in to comment.