Log more when using wgi
parent
6f2061ff37
commit
5eefe2c916
|
@ -872,7 +872,7 @@ def cgi_wrapper(environ, start_response):
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
headers = {'status': '500 Oops', 'content-type': 'text/plain'}
|
headers = {'status': '500 Oops', 'content-type': 'text/plain'}
|
||||||
start_response(headers['status'], headers.items(), sys.exc_info())
|
start_response(headers['status'], headers.items(), sys.exc_info())
|
||||||
log('ERROR: %s' % e.message, force=True)
|
log('ERROR <%s>: %s' % (url, e.message), force=True)
|
||||||
return 'An error happened'
|
return 'An error happened'
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue