1

我使用 mx4j 和 logback,这是我的代码示例:

class ABC {

  public void ABCD throws Exception {
      initlog();
      mylog.debug("here 1234");
      try {
         ........
      } catch (Throwable t) {
         throw new MyException(MygErrors.GENERAL_ERROR,
                "Failed to do it: " + e.getMessage(), e);
      }
  }
}

但调试日志“here 1234”从未打印,MyException 和整个异常堆栈跟踪都打印了,谁能给我一个线索这里发生了什么

4

1 回答 1

0

问题解决了。这是因为我在 logback.xml 中使用了 '()',这会导致很多奇怪的问题。

于 2015-05-15T07:07:42.597 回答