如何记录格式化的消息,对象数组,异常?

2022-08-31 05:06:19

记录填充的消息和异常的堆栈跟踪的正确方法是什么?

logger.error(
    "\ncontext info one two three: {} {} {}\n",
    new Object[] {"1", "2", "3"},
    new Exception("something went wrong"));

我想生成一个类似于以下内容的输出:

context info one two three: 1 2 3
java.lang.Exception: something went wrong
stacktrace 0
stacktrace 1
stacktrace ...

我的SLF4J版本是1.6.1。


答案 1

从 SLF4J 1.6.0 开始,如果存在多个参数,并且日志记录语句中的最后一个参数是异常,则 SLF4J 将假定用户希望将最后一个参数视为异常而不是简单参数。另请参阅相关的常见问题解答条目

所以,写作(在SLF4J版本1.7.x及更高版本中)

 logger.error("one two three: {} {} {}", "a", "b", 
              "c", new Exception("something went wrong"));

或写入(在 SLF4J 版本 1.6.x 中)

 logger.error("one two three: {} {} {}", new Object[] {"a", "b", 
              "c", new Exception("something went wrong")});

将产生

one two three: a b c
java.lang.Exception: something went wrong
    at Example.main(Example.java:13)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at ...

确切的输出将取决于底层框架(例如logback,log4j等)以及底层框架的配置方式。但是,如果最后一个参数是异常,则无论底层框架如何,它都将被解释为异常。


答案 2

除了@Ceki的答案之外,如果您正在使用logback并在项目中设置配置文件(通常是logback.xml),则可以定义日志以绘制堆栈跟踪,以及使用

<encoder>
    <pattern>%date |%-5level| [%thread] [%file:%line] - %msg%n%ex{full}</pattern> 
</encoder>

模式中的 %ex 是造成差异的原因