소스 검색

Log user-facing exceptions in app log.

pull/24/head
Ben Kurtovic 10 년 전
부모
커밋
8321a22f05
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. +2
    -0
      app.fcgi

+ 2
- 0
app.fcgi 파일 보기

@@ -35,8 +35,10 @@ def catch_errors(func):
try:
return func(*args, **kwargs)
except TemplateError as exc:
app.logger.error(u"Caught exception:\n{0}".format(exc.text))
return render_template("error.mako", traceback=exc.text)
except Exception:
app.logger.exception(u"Caught exception:")
return render_template("error.mako", traceback=format_exc())
return inner



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