From 5efe3d548d5b6fc578ab11fb1fcaeb0dbf2692ec Mon Sep 17 00:00:00 2001 From: Self Denial Date: Sat, 30 Mar 2024 00:44:50 -0600 Subject: [PATCH] Small update to global example --- docs/getting-started/logging.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started/logging.md b/docs/getting-started/logging.md index a222e78e..6ade5200 100644 --- a/docs/getting-started/logging.md +++ b/docs/getting-started/logging.md @@ -35,9 +35,9 @@ The default global log level of `INFO` can be overridden with the `GLOBAL_LOG_LE In addition to all Open-WebUI `log()` statements, this also affects any imported Python modules that use the Python Logging module `basicConfig` mechanism including [urllib](https://docs.python.org/3/library/urllib.html). -For example, set as a Docker parameter: +For example, set `DEBUG` logging level as a Docker parameter: ``` ---env GLOBAL_LOG_LEVEL="INFO" +--env GLOBAL_LOG_LEVEL="DEBUG" ``` ### App/Backend ###