From 06183b9947affe71a733d4a324e806863472bdcb Mon Sep 17 00:00:00 2001 From: Cody Logan Date: Mon, 30 Oct 2023 12:22:38 -0700 Subject: Code cleanup --- src/wikiget/logging.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/wikiget/logging.py') diff --git a/src/wikiget/logging.py b/src/wikiget/logging.py index c0b5c12..9dec9c3 100644 --- a/src/wikiget/logging.py +++ b/src/wikiget/logging.py @@ -26,9 +26,9 @@ class FileLogAdapter(logging.LoggerAdapter): def configure_logging(verbosity: int, logfile: str, *, quiet: bool) -> None: - loglevel = logging.WARNING + loglevel = logging.WARNING # default log level if verbosity >= wikiget.VERY_VERBOSE: - # this includes API and library messages + # this includes API and library messages, not just from wikiget loglevel = logging.DEBUG elif verbosity >= wikiget.STD_VERBOSE: loglevel = logging.INFO -- cgit v1.2.3