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

时间:2011-06-16 12:17:13

标签: java exception logging slf4j

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

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

2 个答案:

答案 0 :(得分:377)

从SLF4J 1.6.0开始,如果存在多个参数,并且如果日志语句中的最后一个参数是异常,则SLF4J将假定用户希望将最后一个参数视为异常而不是简单参数。另请参阅relevant FAQ entry

所以,写(在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等)以及底层框架的配置方式。但是,如果最后一个参数是异常,则无论底层框架如何,它都将被解释为。

答案 1 :(得分:7)

除了@Ceki的回答之外,如果您在项目中使用logback并设置配置文件(通常是logback.xml),您可以使用

定义日志以绘制堆栈跟踪。
<encoder>
    <pattern>%date |%-5level| [%thread] [%file:%line] - %msg%n%ex{full}</pattern> 
</encoder>

模式中的%ex是产生差异的原因