summaryrefslogtreecommitdiffstats
path: root/Doc/library/logging.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-02-22 12:31:45 (GMT)
committerGeorg Brandl <georg@python.org>2008-02-22 12:31:45 (GMT)
commit907a720f894a7b267e15b3bb1ba39f2d8677c0fe (patch)
tree35117e67e538ba92d38b987683440fee89ad93cc /Doc/library/logging.rst
parenta14a4e8b84093184fefc908b241523915893850d (diff)
downloadcpython-907a720f894a7b267e15b3bb1ba39f2d8677c0fe.zip
cpython-907a720f894a7b267e15b3bb1ba39f2d8677c0fe.tar.gz
cpython-907a720f894a7b267e15b3bb1ba39f2d8677c0fe.tar.bz2
A lot more typo fixes by Ori Avtalion.
Diffstat (limited to 'Doc/library/logging.rst')
-rw-r--r--Doc/library/logging.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst
index 3011399..23a0f22 100644
--- a/Doc/library/logging.rst
+++ b/Doc/library/logging.rst
@@ -43,7 +43,7 @@ can include messages from third-party modules.
It is, of course, possible to log messages with different verbosity levels or to
different destinations. Support for writing log messages to files, HTTP
GET/POST locations, email via SMTP, generic sockets, or OS-specific logging
-mechnisms are all supported by the standard module. You can also create your
+mechanisms are all supported by the standard module. You can also create your
own log destination class if you have special requirements not met by any of the
built-in classes.
@@ -267,7 +267,7 @@ destination. Logger objects can add zero or more handler objects to themselves
with an :func:`addHandler` method. As an example scenario, an application may
want to send all log messages to a log file, all log messages of error or higher
to stdout, and all messages of critical to an email address. This scenario
-requires three individual handlers where each hander is responsible for sending
+requires three individual handlers where each handler is responsible for sending
messages of a specific severity to a specific location.
The standard library includes quite a few handler types; this tutorial uses only