From 33c23e6e1bb6e1c0ac5c3ce9d9c2befce884ee27 Mon Sep 17 00:00:00 2001 From: Mohsen <97420292+MohsenHNSJ@users.noreply.github.com> Date: Thu, 24 Oct 2024 16:29:13 +0330 Subject: [PATCH] Fixed typo in logging messages in FAQ section --- readthedocs/quick-references/faq.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readthedocs/quick-references/faq.rst b/readthedocs/quick-references/faq.rst index 7b714f41..0f033743 100644 --- a/readthedocs/quick-references/faq.rst +++ b/readthedocs/quick-references/faq.rst @@ -20,7 +20,7 @@ To enable logging, at the following code to the top of your main file: .. 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) You can change the logging level to be something different, from less to more information: