From ea7e5b3f19f3a68a26f51e5c53eab550e220341e Mon Sep 17 00:00:00 2001 From: Amin Jaoui <101276751+aminjaoui@users.noreply.github.com> Date: Thu, 8 Jan 2026 10:55:13 +0100 Subject: [PATCH] docs: fix missing log level number in README (#26574) The first example in the logger level documentation was missing the number 6 before 'fatal', making it inconsistent with the second example and the level definitions above. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4b69cb2969..ef832e28e3 100644 --- a/README.md +++ b/README.md @@ -193,7 +193,7 @@ yarn dx The logger will include all logs that are at the specified level or higher. For example: \ - - If you set `NEXT_PUBLIC_LOGGER_LEVEL=2`, it will log from level 2 (debug) upwards, meaning levels 2 (debug), 3 (info), 4 (warn), 5 (error), and (fatal) will be logged. \ + - If you set `NEXT_PUBLIC_LOGGER_LEVEL=2`, it will log from level 2 (debug) upwards, meaning levels 2 (debug), 3 (info), 4 (warn), 5 (error), and 6 (fatal) will be logged. \ - If you set `NEXT_PUBLIC_LOGGER_LEVEL=3`, it will log from level 3 (info) upwards, meaning levels 3 (info), 4 (warn), 5 (error), and 6 (fatal) will be logged, but level 2 (debug) and level 1 (trace) will be ignored. \ ```sh