From 8299d066ae1a4c98896426be591793b257e0dae1 Mon Sep 17 00:00:00 2001 From: Mohsen <97420292+MohsenHNSJ@users.noreply.github.com> Date: Tue, 10 Sep 2024 11:00:01 +0330 Subject: [PATCH] Update updates.rst Fixed typo in logging messages, redundant "5s/" text is removed from log messages --- readthedocs/basic/updates.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readthedocs/basic/updates.rst b/readthedocs/basic/updates.rst index 6e22ae64..cd935fdc 100644 --- a/readthedocs/basic/updates.rst +++ b/readthedocs/basic/updates.rst @@ -16,7 +16,7 @@ For that, you can use **events**. .. code-block:: python import logging - logging.basicConfig(format='[%(levelname) 5s/%(asctime)s] %(name)s: %(message)s', + logging.basicConfig(format='[%(levelname) %(asctime)s] %(name)s: %(message)s', level=logging.WARNING)