]> granicus.if.org Git - python/commitdiff
Issue 7199: Documentation made slightly more consistent w.r.t. logging level enumeration.
authorVinay Sajip <vinay_sajip@yahoo.co.uk>
Wed, 28 Oct 2009 23:28:16 +0000 (23:28 +0000)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>
Wed, 28 Oct 2009 23:28:16 +0000 (23:28 +0000)
Doc/library/logging.rst

index aea96530eaeeffc9ec4125719efadfcde026e156..715bc319f83195b8491421f3074ba13d6ba1c8a3 100644 (file)
@@ -121,7 +121,7 @@ Another useful feature of the logging API is the ability to produce different
 messages at different log levels.  This allows you to instrument your code with
 debug messages, for example, but turning the log level down so that those debug
 messages are not written for your production system.  The default levels are
-``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, ``DEBUG`` and ``NOTSET``.
+``NOTSET``, ``DEBUG``, ``INFO``, ``WARNING``, ``ERROR`` and ``CRITICAL``.
 
 The logger, handler, and log message call each specify a level.  The log message
 is only emitted if the handler and logger are configured to emit messages of