[issue8214] Add exception logging function to syslog module

STINNER Victor report at bugs.python.org
Thu Mar 25 02:58:27 CET 2010


STINNER Victor <victor.stinner at haypocalc.com> added the comment:

syslog_exception() should be declared outside logexceptions(), so it's possible to call it directly. Example:

try:
  ...
except Exception:
  syslog_exception(*sys.exc_info())

----------
nosy: +haypo

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue8214>
_______________________________________


More information about the Python-bugs-list mailing list