gh-102873: logging.LogRecord docs: improve description of `msg` parameter (#102875)

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
This commit is contained in:
Amin Alaee 2023-03-24 16:00:32 +01:00 committed by GitHub
parent acfe02f3b0
commit f2e5a6ee62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -813,8 +813,9 @@ wire).
:type lineno: int
:param msg: The event description message,
which can be a %-format string with placeholders for variable data.
:type msg: str
which can be a %-format string with placeholders for variable data,
or an arbitrary object (see :ref:`arbitrary-object-messages`).
:type msg: typing.Any
:param args: Variable data to merge into the *msg* argument
to obtain the event description.