From: Olaf van der Spek Date: Sun, 31 Oct 2021 17:44:23 +0000 (+0100) Subject: Move field width to the right field (GH-29344) X-Git-Tag: v3.11.0a2~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ee464322eb5ede56db6b501279f700638c5c9103;p=thirdparty%2FPython%2Fcpython.git Move field width to the right field (GH-29344) Automerge-Triggered-By: GH:vsajip --- diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index ee0276aadcf3..3f3a8534f54d 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -203,7 +203,7 @@ is the module's name in the Python package namespace. attributes can then be used as you like. For example, they could be incorporated into logged messages. For example:: - FORMAT = '%(asctime)-15s %(clientip)s %(user)-8s %(message)s' + FORMAT = '%(asctime)s %(clientip)-15s %(user)-8s %(message)s' logging.basicConfig(format=FORMAT) d = {'clientip': '192.168.0.1', 'user': 'fbloggs'} logger = logging.getLogger('tcpserver') @@ -1000,7 +1000,7 @@ functions. be used as you like. For example, they could be incorporated into logged messages. For example:: - FORMAT = '%(asctime)-15s %(clientip)s %(user)-8s %(message)s' + FORMAT = '%(asctime)s %(clientip)-15s %(user)-8s %(message)s' logging.basicConfig(format=FORMAT) d = {'clientip': '192.168.0.1', 'user': 'fbloggs'} logging.warning('Protocol problem: %s', 'connection reset', extra=d)