aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/options.py
diff options
context:
space:
mode:
authorLuD1161 <aseemshrey@gmail.com>2017-03-20 14:23:57 +0530
committerLuD1161 <aseemshrey@gmail.com>2017-03-20 14:23:57 +0530
commitcd8ce3c88e8e2e08854e65f5708fb610a63d04e4 (patch)
treebd958bdffaa5c7b32f621f3a8d087c45a4a3c27f /mitmproxy/options.py
parentc0882496e37bbe6985b67ad94bdff72524b5b668 (diff)
downloadmitmproxy-cd8ce3c88e8e2e08854e65f5708fb610a63d04e4.tar.gz
mitmproxy-cd8ce3c88e8e2e08854e65f5708fb610a63d04e4.tar.bz2
mitmproxy-cd8ce3c88e8e2e08854e65f5708fb610a63d04e4.zip
Added the level definition that can be used
Diffstat (limited to 'mitmproxy/options.py')
-rw-r--r--mitmproxy/options.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/mitmproxy/options.py b/mitmproxy/options.py
index 70392803..6e1503ea 100644
--- a/mitmproxy/options.py
+++ b/mitmproxy/options.py
@@ -433,7 +433,10 @@ class Options(optmanager.OptManager):
)
self.add_option(
"flow_detail", int, 1,
- "Flow detail display level."
+ """
+ Flow detail display level. LEVEL == 1 : Only Request and Response URL with response code. LEVEL == 2 :
+ All in 1 + Headers. LEVEL >= 3 : All in 2 + Full Response Text.
+ """
)
self.update(**kwargs)