覆盖Logback错误输出

在我自定义的异常类中,我重写了toString()

@Override
public String toString() {
    final String msg = getLocalizedMessage();

    // base
    String str = getClass().getName() + ": [" + code + "]";

    // message
    if (msg != null)
        str += " " + msg;

    // extra
    if (extra != null) {
        str += 'n' + extra.toString();
    }

    return str;
}

(是的,我知道我应该在那里使用StringBuilder

但是,当我记录这样的异常(通过org.slf4j.Logger.warn(String msg, Throwable err) )时,输出与vanilla异常相同:

webersg.util.service.ServiceError: null
    at webersg.util.service.ServiceTools.decodeException(ServiceTools.java:39) ~[bin/:na]
    at tr.silvercar.rummikub.robot.LobbyConnection.sendRequestTo(LobbyConnection.java:143) ~[bin/:na]
    at tr.silvercar.rummikub.robot.LobbyConnection.sendRequest(LobbyConnection.java:98) ~[bin/:na]
    at tr.silvercar.rummikub.robot.Robot.<init>(Robot.java:32) ~[bin/:na]
    at tr.silvercar.rummikub.robot.RobotController.start(RobotController.java:81) ~[bin/:na]
    at tr.silvercar.rummikub.robot.runners.LocalAltinRobot.main(LocalSilverRobot.java:132) [bin/:na]

我怎样才能让我的额外数据出现? 我的日志实现是Logback。


一个快速和肮脏的方式是这样的:logger.warn(“your_message_here n {}”,err.toString());

更好的方法是编写自己的自定义转换说明符(请参阅logback手册,以便自定义错误处理从应用程序代码中抽象出来,并且可以通过logback.xml中的自定义转换字来配置它。

以下是一个简单的例子,它将完成您所追求的内容:

package com.example.logging;

import ch.qos.logback.classic.pattern.ClassicConverter;
import ch.qos.logback.classic.spi.ILoggingEvent;
import ch.qos.logback.classic.spi.IThrowableProxy;
import ch.qos.logback.classic.spi.ThrowableProxy;

/**
 * Simple exception converter.
 *
 */
public class MyExceptionConverter extends ClassicConverter {
    /* (non-Javadoc)
     * @see ch.qos.logback.core.pattern.Converter#convert(java.lang.Object)
     */
    @Override
    public String convert(ILoggingEvent event) {
        IThrowableProxy itp = event.getThrowableProxy();
        if (itp instanceof ThrowableProxy) {
            ThrowableProxy tp = (ThrowableProxy)itp;
            return tp.getThrowable().toString();
        }

        return "";
    }
}

然后在你的logback.xml中,你需要像这样引用它:

  <conversionRule conversionWord="myCon"
              converterClass="com.example.logging.MyExceptionConverter" />

然后在像这样的编码器模式中使用%myCon:

<encoder>
    <pattern>%d{dd MMM yyyy HH:mm:ss.SSS} %logger{0}: %myCon %nopex%n</pattern>
</encoder>

请注意,添加%nopex会停止通常的异常处理

链接地址: http://www.djcxy.com/p/6271.html

上一篇: Override Logback error output

下一篇: Failed to Execute URL