diff options
| author | Cody Logan <cody@lokken.dev> | 2023-10-30 12:22:38 -0700 |
|---|---|---|
| committer | Cody Logan <cody@lokken.dev> | 2023-10-30 12:22:38 -0700 |
| commit | 06183b9947affe71a733d4a324e806863472bdcb (patch) | |
| tree | 0f08e9791518c0678d2058818bc21545e06bf9b8 /src/wikiget/logging.py | |
| parent | 33cab465618c7a82a5d318a18838aab7c9ec9e68 (diff) | |
| download | wikiget-06183b9947affe71a733d4a324e806863472bdcb.tar.gz wikiget-06183b9947affe71a733d4a324e806863472bdcb.zip | |
Code cleanup
Diffstat (limited to 'src/wikiget/logging.py')
| -rw-r--r-- | src/wikiget/logging.py | 4 |
1 files changed, 2 insertions, 2 deletions
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 |
