diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-04-09 19:05:23 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-04-09 19:05:23 (GMT) |
commit | d47f0d6d1b8f1eb125fb8a831ad80c125a96bd4a (patch) | |
tree | ca221c2ed2848f822b918aa36a030796ae43ff34 | |
parent | ca819c3c9d2651bcaeec311915a83dd176acbd13 (diff) | |
parent | 838e638a9677e06d7a30e3c3bc0d153ccede31ba (diff) | |
download | cpython-d47f0d6d1b8f1eb125fb8a831ad80c125a96bd4a.zip cpython-d47f0d6d1b8f1eb125fb8a831ad80c125a96bd4a.tar.gz cpython-d47f0d6d1b8f1eb125fb8a831ad80c125a96bd4a.tar.bz2 |
merge heads
-rw-r--r-- | Doc/howto/logging-cookbook.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index 2b5444a..7ee6412 100644 --- a/Doc/howto/logging-cookbook.rst +++ b/Doc/howto/logging-cookbook.rst @@ -1350,7 +1350,7 @@ works:: A simple handler for logging events. It runs in the listener process and dispatches events to loggers based on the name in the received record, which then get dispatched, by the logging system, to the handlers - configured for those records. + configured for those loggers. """ def handle(self, record): logger = logging.getLogger(record.name) |