summaryrefslogtreecommitdiffstats
path: root/Doc/library/logging.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/logging.rst')
-rw-r--r--Doc/library/logging.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst
index cf4893c..8d093e1 100644
--- a/Doc/library/logging.rst
+++ b/Doc/library/logging.rst
@@ -500,7 +500,8 @@ The useful mapping keys in a :class:`LogRecord` are given in the section on
The *style* parameter can be one of '%', '{' or '$' and determines how
the format string will be merged with its data: using one of %-formatting,
- :meth:`str.format` or :class:`string.Template`.
+ :meth:`str.format` or :class:`string.Template`. See :ref:`formatting-styles`
+ for more information on using {- and $-formatting for log messages.
.. versionchanged:: 3.2
The *style* parameter was added.