mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-12 09:11:55 -06:00
Print PublicError traceback when in debug mode
The framework only shows traceback for the internal/unknown errors, recognized PublicErrors are simply passed back to the FreeIPA clients. However, sometimes it would help to see a traceback of the PublicError to for example see exactly which line returns it. https://fedorahosted.org/freeipa/ticket/4847 Reviewed-By: Martin Basti <mbasti@redhat.com>
This commit is contained in:
parent
5b9902499b
commit
877321ec74
@ -29,6 +29,7 @@ import os
|
||||
import datetime
|
||||
import urlparse
|
||||
import json
|
||||
import traceback
|
||||
|
||||
import ldap.controls
|
||||
from pyasn1.type import univ, namedtype
|
||||
@ -347,6 +348,8 @@ class WSGIExecutioner(Executioner):
|
||||
else:
|
||||
result = self.Command[name](*args, **options)
|
||||
except PublicError, e:
|
||||
if self.api.env.debug:
|
||||
self.debug('WSGI wsgi_execute PublicError: %s', traceback.format_exc())
|
||||
error = e
|
||||
except StandardError, e:
|
||||
self.exception(
|
||||
|
Loading…
Reference in New Issue
Block a user