We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92d5870 commit 9becd49Copy full SHA for 9becd49
src/main/java/com/xtu/plugin/flutter/base/utils/LogUtils.java
@@ -17,8 +17,7 @@ public static void info(@NotNull String message) {
17
18
public static void error(@NotNull String entryPoint, @NotNull Exception exception) {
19
LOG.error(entryPoint + " : " + exception.getMessage());
20
- String content = "message: " + exception.getMessage() + "\n" +
21
- "stackTrace: \n" + getStackTrace(exception);
+ String content = String.format("message:\n%s\n\nerrorStack:\n%s", exception.getMessage(), getStackTrace(exception));
22
AdviceManager.getInstance().submitAdvice(null, "error catch", content);
23
}
24
0 commit comments