From: Sofia Toro Date: Wed, 21 May 2025 04:49:06 +0000 (-0400) Subject: gh-134360 Add processName attribute to `logging.Formatter` docstring (GH-134371) X-Git-Tag: v3.15.0a1~1609 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c740fe3bd092911d9e474bcc0eed2a009482be9f;p=thirdparty%2FPython%2Fcpython.git gh-134360 Add processName attribute to `logging.Formatter` docstring (GH-134371) --- diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index f2d1a02629d9..5c3c44249345 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 """