From: Andre Delfino Date: Wed, 9 Dec 2020 21:56:17 +0000 (-0300) Subject: [doc] Document logging.basicConfig default format (GH-23710) X-Git-Tag: v3.10.0a4~203 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=35cacce5253c50eed0d285836f9ca0ac568991ca;p=thirdparty%2FPython%2Fcpython.git [doc] Document logging.basicConfig default format (GH-23710) Automerge-Triggered-By: GH:vsajip --- diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index fb8ea705b046..b69431fe2cf3 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -1174,7 +1174,9 @@ functions. | | to ``'a'``. | +--------------+---------------------------------------------+ | *format* | Use the specified format string for the | - | | handler. | + | | handler. Defaults to attributes | + | | ``levelname``, ``name`` and ``message`` | + | | separated by colons. | +--------------+---------------------------------------------+ | *datefmt* | Use the specified date/time format, as | | | accepted by :func:`time.strftime`. |