Update updates.rst

Fixed typo in logging messages, redundant "5s/" text is removed from log messages
This commit is contained in:
Mohsen 2024-09-10 11:00:01 +03:30 committed by GitHub
parent d37b0f812f
commit 8299d066ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,7 +16,7 @@ For that, you can use **events**.
.. code-block:: python .. code-block:: python
import logging 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) level=logging.WARNING)