]> granicus.if.org Git - python/commitdiff
Logging documentatio update.
authorVinay Sajip <vinay_sajip@yahoo.co.uk>
Mon, 13 Dec 2010 08:54:02 +0000 (08:54 +0000)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>
Mon, 13 Dec 2010 08:54:02 +0000 (08:54 +0000)
Doc/library/logging.rst

index 490f69ff04e86ed988ff1347499deef88c819109..b59315e0185157f24f6102dc82ab775e193ece17 100644 (file)
@@ -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`,