diff options
author | Maximilian Hils <git@maximilianhils.com> | 2017-12-17 15:06:14 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2017-12-17 15:52:10 +0100 |
commit | f36dbc62a8a21745494a78bb86f84070db6910f7 (patch) | |
tree | e19736c8658c9ae9900bc42f5555543d1d61236e | |
parent | 9e4a443d4234149119e196ada3dbf2306173122e (diff) | |
download | mitmproxy-f36dbc62a8a21745494a78bb86f84070db6910f7.tar.gz mitmproxy-f36dbc62a8a21745494a78bb86f84070db6910f7.tar.bz2 mitmproxy-f36dbc62a8a21745494a78bb86f84070db6910f7.zip |
log contentview errors in the debug log only
We already display the "couldn't parse" message,
which is better than overwhelming users with a traceback.
refs #2658
-rw-r--r-- | mitmproxy/tools/console/flowview.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/tools/console/flowview.py b/mitmproxy/tools/console/flowview.py index 89f20875..05d2573f 100644 --- a/mitmproxy/tools/console/flowview.py +++ b/mitmproxy/tools/console/flowview.py @@ -116,7 +116,7 @@ class FlowDetails(tabs.Tabs): viewmode, message ) if error: - self.master.add_log(error, "error") + self.master.add_log(error, "debug") # Give hint that you have to tab for the response. if description == "No content" and isinstance(message, http.HTTPRequest): description = "No request content (press tab to view response)" |