diff options
author | Maximilian Hils <git@maximilianhils.com> | 2017-05-22 12:06:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-22 12:06:07 +0200 |
commit | 2222f0b65a3fbc2012c9c76fa532d2ccaa565575 (patch) | |
tree | d61efb41124a5d0c854544044d623096b13482ea | |
parent | 5626c384ab61dc0cd08efe70e6416e63f8221847 (diff) | |
parent | 79100593c2c05f73741d084df6d79f7fc8a52ec9 (diff) | |
download | mitmproxy-2222f0b65a3fbc2012c9c76fa532d2ccaa565575.tar.gz mitmproxy-2222f0b65a3fbc2012c9c76fa532d2ccaa565575.tar.bz2 mitmproxy-2222f0b65a3fbc2012c9c76fa532d2ccaa565575.zip |
Merge pull request #2191 from LuD1161/Issue#2139
improve flow_detail help text
-rw-r--r-- | mitmproxy/options.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/mitmproxy/options.py b/mitmproxy/options.py index 058ea9e4..59d44a5d 100644 --- a/mitmproxy/options.py +++ b/mitmproxy/options.py @@ -438,7 +438,13 @@ class Options(optmanager.OptManager): # Dump options self.add_option( "flow_detail", int, 1, - "Flow detail display level." + """ + The display detail level for flows in mitmdump: 0 (almost quiet) to 3 (very verbose). + 0: shortened request URL, response status code, WebSocket and TCP message notifications. + 1: full request URL with response status code + 2: 1 + HTTP headers + 3: 2 + full response content, content of WebSocket and TCP messages. + """ ) self.update(**kwargs) |