diff options
| author | Cody Logan <cody@lokken.dev> | 2023-10-24 12:57:33 -0700 |
|---|---|---|
| committer | Cody Logan <cody@lokken.dev> | 2023-10-24 12:57:33 -0700 |
| commit | 14cb40a67839a43876870eb79ec1a3e6cb30464f (patch) | |
| tree | 1993d2c18c8a482bdf7e57a79152b3c097f010c8 /src | |
| parent | 93ed73f700e1f6da32418b0188c2a8f8122f1c0d (diff) | |
| download | wikiget-14cb40a67839a43876870eb79ec1a3e6cb30464f.tar.gz wikiget-14cb40a67839a43876870eb79ec1a3e6cb30464f.zip | |
Fix bug in logging that silenced most messages
Diffstat (limited to 'src')
| -rw-r--r-- | src/wikiget/logging.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wikiget/logging.py b/src/wikiget/logging.py index 425b045..c0b5c12 100644 --- a/src/wikiget/logging.py +++ b/src/wikiget/logging.py @@ -42,6 +42,7 @@ def configure_logging(verbosity: int, logfile: str, *, quiet: bool) -> None: file_log_format = "%(asctime)s [%(levelname)-7s] %(message)s" logger = logging.getLogger("") # root logger + logger.setLevel(logging.DEBUG) # set up console logging ch = logging.StreamHandler() |
