This commit is contained in:
Looly
2024-08-26 14:52:07 +08:00
parent d8e3c7157d
commit 4e53a9c0b5
14 changed files with 195 additions and 103 deletions

View File

@@ -143,7 +143,7 @@ public class ConsoleLog extends AbstractLog {
.set("name", this.name)
.set("msg", StrUtil.format(format, arguments));
final String logMsg = StrUtil.format(logFormat, dict);
final String logMsg = StrUtil.formatByMap(logFormat, dict);
//WARN以上级别打印至System.err
if (level.ordinal() >= Level.WARN.ordinal()) {