We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27159a5 commit 1d88cecCopy full SHA for 1d88cec
1 file changed
Doc/library/logging.rst
@@ -440,7 +440,9 @@ Formatter Objects
440
responsible for converting a :class:`LogRecord` to (usually) a string which can
441
be interpreted by either a human or an external system. The base
442
:class:`Formatter` allows a formatting string to be specified. If none is
443
-supplied, the default value of ``'%(message)s'`` is used.
+supplied, the default value of ``'%(message)s'`` is used, which just includes
444
+the message in the logging call. To have additional items of information in the
445
+formatted output (such as a timestamp), keep reading.
446
447
A Formatter can be initialized with a format string which makes use of knowledge
448
of the :class:`LogRecord` attributes - such as the default value mentioned above
0 commit comments