From f21245384eaa5274180bcb95b074641c4b70ba17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Misty=20De=20M=C3=A9o?= Date: Thu, 20 Feb 2025 13:54:01 -0800 Subject: [PATCH] cli: add comment to logging.basicConfig --- brozzler/cli.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/brozzler/cli.py b/brozzler/cli.py index 9f577f7..1beb4a2 100755 --- a/brozzler/cli.py +++ b/brozzler/cli.py @@ -128,6 +128,8 @@ def configure_logging(args): cache_logger_on_first_use=False, ) + # We still configure logging for now because its handlers + # are used for the gunicorn spawned by the brozzler dashboard. logging.basicConfig( stream=sys.stderr, level=args.log_level,