[Python-Dev] PEP 282 comments

Jeremy Hylton jeremy@zope.com
Wed, 20 Mar 2002 16:26:45 -0500


On Wed, 20 Mar 2002 16:16:28 -0500
 Guido van Rossum <guido@python.org> wrote:
> > logger.info("A normal exception occurred",
> >     exc_info=sys.exc_info())
> 
> Or you could have a call logger.exception("message") that
> knows to
> call sys.exc_info().  That would reduce the boilerplate.

But how would logger.exception() know what log level to use?

Jeremy