From: Mark Huang Date: Thu, 11 Jan 2007 22:05:15 +0000 (+0000) Subject: - print the actual exception X-Git-Tag: pycurl-7_13_1~116 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=1d27404fac941754438e07ee7920caff81580423;p=plcapi.git - print the actual exception --- diff --git a/ModPython.py b/ModPython.py index 2f46b17..55dfdca 100644 --- a/ModPython.py +++ b/ModPython.py @@ -5,7 +5,7 @@ # Mark Huang # # Copyright (C) 2004-2006 The Trustees of Princeton University -# $Id: ModPython.py,v 1.2 2006/10/25 21:05:05 mlhuang Exp $ +# $Id: ModPython.py,v 1.3 2006/10/30 16:39:24 mlhuang Exp $ # import sys @@ -52,7 +52,7 @@ def handler(req): return apache.OK - except: + except Exception, err: # Log error in /var/log/httpd/(ssl_)?error_log - print >> log, traceback.format_exc() + print >> log, err, traceback.format_exc() return apache.HTTP_INTERNAL_SERVER_ERROR