From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 21 May 2025 05:16:36 +0000 (+0200) Subject: [3.13] gh-134360 Add processName attribute to `logging.Formatter` docstring (GH-13437... X-Git-Tag: v3.13.4~72 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7ada439712871b893bc669971e154b4b4fe15915;p=thirdparty%2FPython%2Fcpython.git [3.13] gh-134360 Add processName attribute to `logging.Formatter` docstring (GH-134371) (GH-134404) Co-authored-by: Sofia Toro --- diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index 283a1055182b..357d127c0904 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -591,6 +591,7 @@ class Formatter(object): %(threadName)s Thread name (if available) %(taskName)s Task name (if available) %(process)d Process ID (if available) + %(processName)s Process name (if available) %(message)s The result of record.getMessage(), computed just as the record is emitted """