Logging documentation - further update.
authorVinay Sajip <vinay_sajip@yahoo.co.uk>
Sun, 12 Dec 2010 22:30:17 +0000 (22:30 +0000)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>
Sun, 12 Dec 2010 22:30:17 +0000 (22:30 +0000)
Doc/library/logging.rst

index 54d72b3d25045ec2beeaa8a1a294beb1ec1e1131..b11dbc5f6271ab7aeb8041d370087aadaf174cfd 100644 (file)
@@ -12,7 +12,7 @@
 .. index:: pair: Errors; logging
 
 This module defines functions and classes which implement a flexible error
-logging system for applications.
+logging system for applications and libraries.
 
 The key benefit of having the logging API provided by a standard library module
 is that all Python modules can participate in logging, so your application log
@@ -224,8 +224,9 @@ will display::
 As you can see, merging of variable data into the event description message
 uses the old, %-style of string formatting. This is for backwards
 compatibility: the logging package pre-dates newer formatting options such as
-:meth:`str.format` and :class:`string.Template`. These formatting options *are*
-supported, but exploring them is outside the scope of this tutorial.
+:meth:`str.format` and :class:`string.Template`. These newer formatting
+options *are* supported, but exploring them is outside the scope of this
+tutorial.
 
 
 Changing the format of displayed messages