Print traces also on stderr
This commit is contained in:
parent
621e43563f
commit
b1c7385204
@ -80,6 +80,7 @@ class Handler(logging.Handler):
|
|||||||
def __exception_handler(typ, exc, tb):
|
def __exception_handler(typ, exc, tb):
|
||||||
trace = StringIO()
|
trace = StringIO()
|
||||||
traceback.print_exception(typ, exc, tb, None, trace)
|
traceback.print_exception(typ, exc, tb, None, trace)
|
||||||
|
print >> sys.stderr, trace.getvalue()
|
||||||
|
|
||||||
__queue.append(logging.ERROR, trace.getvalue())
|
__queue.append(logging.ERROR, trace.getvalue())
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user