summaryrefslogtreecommitdiff
path: root/qutebrowser/utils/log.py
diff options
context:
space:
mode:
authorPhilipp Albrecht <palbrecht@mailbox.org>2023-07-14 10:40:05 +0200
committerPhilipp Albrecht <palbrecht@mailbox.org>2023-07-20 15:09:48 +0200
commit250143a70aeae5b7df7400577bc5b03f2eeb692b (patch)
treed5b4369240040a4cb5874f177a19e260fa9e50d4 /qutebrowser/utils/log.py
parente3a58e84c6dbe9b177ba4aa2d2e22b73849d265d (diff)
downloadqutebrowser-250143a70aeae5b7df7400577bc5b03f2eeb692b.tar.gz
qutebrowser-250143a70aeae5b7df7400577bc5b03f2eeb692b.zip
Move qt logger from qtlog to log
This resolves a temporary workaround for a circular import. Now that we fully separated `qutebrowser.utils.log` and `qutebrowser.utils.qtlog`, we can go back to keeping all logger definitions in the same place.
Diffstat (limited to 'qutebrowser/utils/log.py')
-rw-r--r--qutebrowser/utils/log.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/qutebrowser/utils/log.py b/qutebrowser/utils/log.py
index ece0bd5e0..7542dbd30 100644
--- a/qutebrowser/utils/log.py
+++ b/qutebrowser/utils/log.py
@@ -128,6 +128,7 @@ hints = logging.getLogger('hints')
keyboard = logging.getLogger('keyboard')
downloads = logging.getLogger('downloads')
js = logging.getLogger('js') # Javascript console messages
+qt = logging.getLogger('qt') # Warnings produced by Qt
ipc = logging.getLogger('ipc')
shlexer = logging.getLogger('shlexer')
save = logging.getLogger('save')