diff options
author | Éric Araujo <merwok@netwok.org> | 2011-09-01 01:19:30 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-09-01 01:19:30 (GMT) |
commit | 37b5f9eebc0d7ce43c7e38e4ccd6d8ad904007b5 (patch) | |
tree | f5a1b827b7aec65770295bb51d0b1d809ce3cacb /Doc/howto/logging.rst | |
parent | 941afedd741b26c0e54c377e8b04f5eb6af823c9 (diff) | |
download | cpython-37b5f9eebc0d7ce43c7e38e4ccd6d8ad904007b5.zip cpython-37b5f9eebc0d7ce43c7e38e4ccd6d8ad904007b5.tar.gz cpython-37b5f9eebc0d7ce43c7e38e4ccd6d8ad904007b5.tar.bz2 |
Fix some misuses of Sphinx roles and one typo
Diffstat (limited to 'Doc/howto/logging.rst')
-rw-r--r-- | Doc/howto/logging.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/howto/logging.rst b/Doc/howto/logging.rst index a7d6024..5ff0d74 100644 --- a/Doc/howto/logging.rst +++ b/Doc/howto/logging.rst @@ -412,10 +412,10 @@ With the logger object configured, the following methods create log messages: :meth:`Logger.error`, and :meth:`Logger.critical` all create log records with a message and a level that corresponds to their respective method names. The message is actually a format string, which may contain the standard string - substitution syntax of :const:`%s`, :const:`%d`, :const:`%f`, and so on. The + substitution syntax of ``%s``, ``%d``, ``%f``, and so on. The rest of their arguments is a list of objects that correspond with the - substitution fields in the message. With regard to :const:`**kwargs`, the - logging methods care only about a keyword of :const:`exc_info` and use it to + substitution fields in the message. With regard to ``**kwargs``, the + logging methods care only about a keyword of ``exc_info`` and use it to determine whether to log exception information. * :meth:`Logger.exception` creates a log message similar to |