diff options
| author | Frederick Muriuki Muriithi | 2026-01-05 13:21:02 -0600 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2026-01-05 13:21:02 -0600 |
| commit | 9bc82972ad971dac4eb604923b9a6df51d4411ff (patch) | |
| tree | 878d29b334a5447cbf0e3129b541b64b1b7fa298 | |
| parent | 43f0a336238204a00a8c30ca396e95aecb718705 (diff) | |
| download | gn-libs-9bc82972ad971dac4eb604923b9a6df51d4411ff.tar.gz | |
Remove erroneous statement: no such variable `stderr_handler`.
| -rw-r--r-- | gn_libs/logging.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gn_libs/logging.py b/gn_libs/logging.py index 28b4b41..29852e8 100644 --- a/gn_libs/logging.py +++ b/gn_libs/logging.py @@ -19,7 +19,6 @@ def __log_gunicorn__(app: Flask) -> Flask: def __log_dev__(app: Flask) -> Flask: """Set up logging for the development environment.""" root_logger = logging.getLogger() - root_logger.addHandler(stderr_handler) root_logger.setLevel( app.config.get("LOG_LEVEL", app.config.get("LOGLEVEL", "WARNING"))) |
