This commit is contained in:
Looly 2021-01-19 10:06:56 +08:00
parent 8e2c153512
commit c4ce66a991
2 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,7 @@
-------------------------------------------------------------------------------------------------------------
# 5.5.8 (2021-01-18)
# 5.5.8 (2021-01-19)
### 新特性
* 【extra 】 增加自动装配SpringUtil类pr#1366@Github
@ -12,6 +12,7 @@
### Bug修复
* 【core 】 修复FileUtil.move以及PathUtil.copy等无法自动创建父目录的问题issue#I2CKTI@Gitee
* 【core 】 修复Console.input读取不全问题pr#263@Gitee
-------------------------------------------------------------------------------------------------------------

View File

@ -85,6 +85,7 @@ public class Console {
public static void log(Throwable t, String template, Object... values) {
out.println(StrUtil.format(template, values));
if (null != t) {
//noinspection CallToPrintStackTrace
t.printStackTrace();
out.flush();
}