]> granicus.if.org Git - python/commitdiff
Logging documentation - further update.
authorVinay Sajip <vinay_sajip@yahoo.co.uk>
Sun, 12 Dec 2010 13:49:39 +0000 (13:49 +0000)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>
Sun, 12 Dec 2010 13:49:39 +0000 (13:49 +0000)
Doc/library/logging.rst

index 8cfb7d51c344eb9380b9514552ae1899167e5b8e..e6e285ed749868663a5ba91921fa854c3ade7266 100644 (file)
@@ -146,6 +146,11 @@ messages::
    INFO:root:So should this
    WARNING:root:And this, too
 
+The call to :func:`basicConfig` should come *before* any calls to :func:`debug`,
+:func:`info` etc. As it's intended as a one-off simple configuration facility,
+only the first call will actually do anything: subsequent calls are effectively
+no-ops.
+
 This example also shows how you can set the logging level which acts as the
 threshold for tracking. In this case, because we set the threshold to
 ``DEBUG``, all of the messages were printed.