gpt4 book ai didi

java - log4j2:模式参数的自定义格式

转载 作者:行者123 更新时间:2023-12-01 22:38:55 25 4
gpt4 key购买 nike

通常日志记录如下所示:

Duration duration = ...;
log.info("Duration: {}", duration);

但是如果您需要自定义格式怎么办?

if (log.isInfoEnabled()) {
String value = duration.toSeconds() + "." + duration.toMillis();
log.info("Duration: {}", value);
}

在这种情况下代码很复杂。我正在寻找一种方法来执行第一个示例中的简单日志记录,但能够使用某种机制自定义值格式,例如,为给定类型定义格式函数:

LogSystem.install(Duration.class, duration -> {
return String.format("%d.%d", duration.toSeconds(), duration.toMillis();
});

问题:

  • log4j 2.x 有这样或类似的功能吗?
  • 它可能存在于其他日志库中吗?
  • 如果不是,可以以某种方式简化 if (log.isInfoEnabled()) { ... } 吗?

最佳答案

does log4j 2.x have such or similar feature?

是的,您可以使用

log.info("Duration: {}.{}", duration.toSeconds(), duration.toMillis());

您可以传递任意数量的参数。如果您使用参数化日志记录,则不需要检查 log.isInfoEnabled()。

may be it exists in other logging libraries?

SLF4j 还支持参数化日志记录。

关于java - log4j2:模式参数的自定义格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58510000/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com