summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/library/logging.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst
index 34e98fc..22412e1 100644
--- a/Doc/library/logging.rst
+++ b/Doc/library/logging.rst
@@ -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.