slf4j:如何logging格式化的消息,对象数组,exception
loggingexception的填充消息和堆栈跟踪的正确方法是什么?
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
从SLF4J 1.6.0开始,在有多个参数的情况下,如果日志语句中的最后一个参数是一个exception,那么SLF4J将假定用户希望将最后一个参数视为exception,而不是一个简单的参数。 另请参阅相关的FAQ条目 。
所以,编写(在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: abc java.lang.Exception: something went wrong at Example.main(Example.java:13) at java.lang.reflect.Method.invoke(Method.java:597) at ...
确切的输出将取决于底层框架(如logback,log4j等)以及如何configuration底层框架。 但是,如果最后一个参数是一个例外,那么无论底层框架如何,它都将被解释为这样。
除了@Ceki的回答,如果你正在使用logback并在你的项目中设置一个configuration文件(通常是logback.xml),你可以定义日志来绘制堆栈跟踪
<encoder> <pattern>%date |%-5level| [%thread] [%file:%line] - %msg%n%ex{full}</pattern> </encoder>
模式中的%ex是造成差异的原因