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
This commit is contained in:
Maximilian Hils 2017-12-17 15:06:14 +01:00
parent 9e4a443d42
commit f36dbc62a8

View File

@ -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)"