소스 검색

only print stack traces when debug logging

tags/2.0.1
Jonathan Cobb 5 년 전
부모
커밋
edf1c904e3
1개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. +7
    -1
      src/main/java/org/cobbzilla/util/daemon/ZillaRuntime.java

+ 7
- 1
src/main/java/org/cobbzilla/util/daemon/ZillaRuntime.java 파일 보기

@@ -155,7 +155,13 @@ public class ZillaRuntime {
if (cause instanceof Exception) errorApi.report(message, (Exception) cause);
else errorApi.report(e);
}
if (cause != null) log.error("Inner exception: " + message, cause);
if (cause != null) {
if (log.isDebugEnabled()) {
log.debug("Inner exception: " + message, cause);
} else {
log.error("Inner exception: " + message + ": "+ shortError(cause));
}
}
throw e;
}



불러오는 중...
취소
저장