@@ -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)
@@ -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();
}