mirror of
https://gitee.com/dromara/hutool.git
synced 2025-05-06 21:58:03 +08:00
fix bug #263
This commit is contained in:
parent
8e2c153512
commit
c4ce66a991
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
-------------------------------------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
# 5.5.8 (2021-01-18)
|
# 5.5.8 (2021-01-19)
|
||||||
|
|
||||||
### 新特性
|
### 新特性
|
||||||
* 【extra 】 增加自动装配SpringUtil类(pr#1366@Github)
|
* 【extra 】 增加自动装配SpringUtil类(pr#1366@Github)
|
||||||
@ -12,6 +12,7 @@
|
|||||||
|
|
||||||
### Bug修复
|
### Bug修复
|
||||||
* 【core 】 修复FileUtil.move以及PathUtil.copy等无法自动创建父目录的问题(issue#I2CKTI@Gitee)
|
* 【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) {
|
public static void log(Throwable t, String template, Object... values) {
|
||||||
out.println(StrUtil.format(template, values));
|
out.println(StrUtil.format(template, values));
|
||||||
if (null != t) {
|
if (null != t) {
|
||||||
|
//noinspection CallToPrintStackTrace
|
||||||
t.printStackTrace();
|
t.printStackTrace();
|
||||||
out.flush();
|
out.flush();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user