From: Vinay Sajip Date: Mon, 13 Dec 2010 08:54:02 +0000 (+0000) Subject: Logging documentatio update. X-Git-Tag: v3.2b2~115 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9466fe88a7cf586052a35537f50859fef8284d25;p=python Logging documentatio update. --- diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index 490f69ff04..b59315e018 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -167,7 +167,8 @@ following example:: # command line argument. Convert to upper case to allow the user to # specify --log=DEBUG or --log=debug numeric_level = getattr(logging, loglevel.upper(), None) - assert numeric_level is not None, 'Invalid log level: %s' % loglevel + if not isinstance(numeric_level, int): + raise ValueError('Invalid log level: %s' % loglevel) logging.basicConfig(level=numeric_level, ...) The call to :func:`basicConfig` should come *before* any calls to :func:`debug`,