class MyException extends RuntimeException {
private final String myCustomField;
public MyException(myCustomFIeld) { this.myCustomField = myCustomField; }
public String getMyCustomField() { return myCustomField; }
@Override
public String getMessage() { return null; }
}
public class MainClass {
private static final Logger log = org.slf4j.LoggerFactory.getLogger(MainClass.class);
public static void main(String[] args) {
try {
if (true) { throw new MyException("myCustomField"); }
} catch (Exception ex) {
log.error("Exception: ", ex)
}
}
}
这将打印带有给定消息的堆栈跟踪。
是否可以将记录器全局配置为也打印抛出的异常的自定义字段(如果
ex
是MyException
的实例)? 最佳答案
您可以使用instanceof
检查异常是否是自定义异常的实例。
喜欢
if(ex instanceof MyException){
log.error("Exception: {}, myCustomField :: {} ", new Object[]{ex.getMessage(), ex.getMyCustomField() });
}
关于java - 配置SLF4J在打印异常堆栈跟踪时记录自定义字段?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60073793/