summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2004-07-12 15:48:04 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2004-07-12 15:48:04 (GMT)
commit20f42c433b81f64a1e8ac51c895d5292c7881cd8 (patch)
treed17e8c1abbb45b807a2ea2666abef1c296c9d0d2 /Doc
parent2e39d80925437b8f5aac6bd130188ead381792ec (diff)
downloadcpython-20f42c433b81f64a1e8ac51c895d5292c7881cd8.zip
cpython-20f42c433b81f64a1e8ac51c895d5292c7881cd8.tar.gz
cpython-20f42c433b81f64a1e8ac51c895d5292c7881cd8.tar.bz2
Fixed minor bugs in the example configuration file
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/liblogging.tex8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/liblogging.tex b/Doc/lib/liblogging.tex
index 3658dd8..5f0fee3 100644
--- a/Doc/lib/liblogging.tex
+++ b/Doc/lib/liblogging.tex
@@ -1215,26 +1215,26 @@ formatter=form05
args=(('localhost', handlers.SYSLOG_UDP_PORT), handlers.SysLogHandler.LOG_USER)
[handler_hand06]
-class=NTEventLogHandler
+class=handlers.NTEventLogHandler
level=CRITICAL
formatter=form06
args=('Python Application', '', 'Application')
[handler_hand07]
-class=SMTPHandler
+class=handlers.SMTPHandler
level=WARN
formatter=form07
args=('localhost', 'from@abc', ['user1@abc', 'user2@xyz'], 'Logger Subject')
[handler_hand08]
-class=MemoryHandler
+class=handlers.MemoryHandler
level=NOTSET
formatter=form08
target=
args=(10, ERROR)
[handler_hand09]
-class=HTTPHandler
+class=handlers.HTTPHandler
level=NOTSET
formatter=form09
args=('localhost:9022', '/log', 'GET')