From c0ced01fadedc4cb848ee37bd01203f7f295a0d1 Mon Sep 17 00:00:00 2001 From: Jeroen Ruigrok van der Werven Date: Wed, 21 Aug 2024 11:30:08 +0200 Subject: [PATCH] docs(logger): fix typo for the INFO log_level example (#5039) docs(logger): Fix typo for the INFO log_level example --- docs/core/logger.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/logger.md b/docs/core/logger.md index b48adb7034b..e687cbc2bbd 100644 --- a/docs/core/logger.md +++ b/docs/core/logger.md @@ -298,7 +298,7 @@ We support the following log levels: | `ERROR` | 40 | `logging.ERROR` | | `CRITICAL` | 50 | `logging.CRITICAL` | -If you want to access the numeric value of the current log level, you can use the `log_level` property. For example, if the current log level is `INFO`, `logger.log_level` property will return `10`. +If you want to access the numeric value of the current log level, you can use the `log_level` property. For example, if the current log level is `INFO`, `logger.log_level` property will return `20`. === "setting_log_level_constructor.py"