diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2012-02-28 08:06:01 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2012-02-28 08:06:01 (GMT) |
commit | ff4b7bfaef084e90d9d5996607b2df90336f8a8c (patch) | |
tree | 18c09a05e4b1fb487a7f7a6f3c0438414d219de8 /Doc/howto/logging-cookbook.rst | |
parent | 86798d4ff96422fde089e51d92a565c24248096a (diff) | |
parent | 39b83ac77224b87ef4a09750d3d0456b818fa1ca (diff) | |
download | cpython-ff4b7bfaef084e90d9d5996607b2df90336f8a8c.zip cpython-ff4b7bfaef084e90d9d5996607b2df90336f8a8c.tar.gz cpython-ff4b7bfaef084e90d9d5996607b2df90336f8a8c.tar.bz2 |
Merged cookbook improvement from 3.2.
Diffstat (limited to 'Doc/howto/logging-cookbook.rst')
-rw-r--r-- | Doc/howto/logging-cookbook.rst | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index f014cb5..1f5bd37 100644 --- a/Doc/howto/logging-cookbook.rst +++ b/Doc/howto/logging-cookbook.rst @@ -972,12 +972,13 @@ Use of alternative formatting styles When logging was added to the Python standard library, the only way of formatting messages with variable content was to use the %-formatting method. Since then, Python has gained two new formatting approaches: -string.Template (added in Python 2.4) and str.format (added in Python 2.6). +:class:`string.Template` (added in Python 2.4) and :meth:`str.format` +(added in Python 2.6). -Logging now (as of 3.2) provides improved support for these two additional -formatting styles. The :class:`Formatter` class been enhanced for Python 3.2 to -take an additional, optional keyword parameter named ``style``. This defaults -to ``'%'``, but other possible values are ``'{'`` and ``'$'``, which correspond +Logging (as of 3.2) provides improved support for these two additional +formatting styles. The :class:`Formatter` class been enhanced to take an +additional, optional keyword parameter named ``style``. This defaults to +``'%'``, but other possible values are ``'{'`` and ``'$'``, which correspond to the other two formatting styles. Backwards compatibility is maintained by default (as you would expect), but by explicitly specifying a style parameter, you get the ability to specify format strings which work with @@ -1068,7 +1069,7 @@ they're declared in a module called ``wherever``): .. code-block:: pycon >>> from wherever import BraceMessage as __ - >>> print(__('Message with {0} {1}', 2, 'placeholders')) + >>> print(__('Message with {0} {name}', 2, name='placeholders')) Message with 2 placeholders >>> class Point: pass ... @@ -1083,6 +1084,10 @@ they're declared in a module called ``wherever``): Message with 2 placeholders >>> +While the above examples use ``print()`` to show how the formatting works, you +would of course use ``logger.debug()`` or similar to actually log using this +approach. + One thing to note is that you pay no significant performance penalty with this approach: the actual formatting happens not when you make the logging call, but when (and if) the logged message is actually about to be output to a log by a |