diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2010-12-12 22:47:13 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2010-12-12 22:47:13 (GMT) |
commit | 1d5d6856e2c605a8bcb589f3563ddfc8203febe6 (patch) | |
tree | c5ff063d52c19ab0c9c48de5bc8961f6c651acc5 /Doc | |
parent | 97b886dc8c786451465184ac87896075cfdb85bd (diff) | |
download | cpython-1d5d6856e2c605a8bcb589f3563ddfc8203febe6.zip cpython-1d5d6856e2c605a8bcb589f3563ddfc8203febe6.tar.gz cpython-1d5d6856e2c605a8bcb589f3563ddfc8203febe6.tar.bz2 |
Logging documentation - further update.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/logging.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index 17da172..490f69f 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -2,7 +2,7 @@ ============================================== .. module:: logging - :synopsis: Flexible error logging system for applications. + :synopsis: Flexible event logging system for applications. .. moduleauthor:: Vinay Sajip <vinay_sajip@red-dove.com> @@ -11,7 +11,7 @@ .. index:: pair: Errors; logging -This module defines functions and classes which implement a flexible error +This module defines functions and classes which implement a flexible event logging system for applications and libraries. The key benefit of having the logging API provided by a standard library module |