!716 Console.log应该把异常信息打印到out而不是err

Merge pull request !716 from uyong/dict-fixed
This commit is contained in:
Looly 2022-07-20 04:12:56 +00:00 committed by Gitee
commit d09498a1a6
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -86,7 +86,7 @@ public class Console {
out.println(StrUtil.format(template, values));
if (null != t) {
//noinspection CallToPrintStackTrace
t.printStackTrace();
t.printStackTrace(out);
out.flush();
}
}