Skip to content

Commit

Permalink
close issue: HXSecurity#236
Browse files Browse the repository at this point in the history
  • Loading branch information
‘niuerzhuang’ committed Feb 10, 2022
1 parent a69d973 commit 282f77c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public static void sendErrorLog(Throwable t) {
StringWriter sw = new StringWriter();
PrintWriter pw = new PrintWriter(sw);
t.printStackTrace(pw);
sendErrorLog(t.toString());
sendErrorLog(sw.toString());
}
}

Expand Down

0 comments on commit 282f77c

Please sign in to comment.