summaryrefslogtreecommitdiff
path: root/qutebrowser/qutebrowser.py
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2018-05-07 10:23:56 +0200
committerFlorian Bruhin <git@the-compiler.org>2018-05-07 10:23:56 +0200
commitb9fc068af58098ac7f967c712850e468bf3b5386 (patch)
tree18da5d175f6dc17a577ee40a9cda28381d80f990 /qutebrowser/qutebrowser.py
parent7762017f001889650dd6302aa737388ebaefb5e5 (diff)
downloadqutebrowser-b9fc068af58098ac7f967c712850e468bf3b5386.tar.gz
qutebrowser-b9fc068af58098ac7f967c712850e468bf3b5386.zip
Add a log-requests debug-flag
Diffstat (limited to 'qutebrowser/qutebrowser.py')
-rw-r--r--qutebrowser/qutebrowser.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/qutebrowser/qutebrowser.py b/qutebrowser/qutebrowser.py
index 815ffd5a7..e532c24d0 100644
--- a/qutebrowser/qutebrowser.py
+++ b/qutebrowser/qutebrowser.py
@@ -159,9 +159,12 @@ def debug_flag_error(flag):
Available flags:
debug-exit: Turn on debugging of late exit.
pdb-postmortem: Drop into pdb on exceptions.
+ no-sql-history: Don't store history items.
+ no-scroll-filtering: Process all scrolling updates.
+ log-requests: Log all network requests.
"""
valid_flags = ['debug-exit', 'pdb-postmortem', 'no-sql-history',
- 'no-scroll-filtering']
+ 'no-scroll-filtering', 'log-requests']
if flag in valid_flags:
return flag