From cd8ce3c88e8e2e08854e65f5708fb610a63d04e4 Mon Sep 17 00:00:00 2001 From: LuD1161 Date: Mon, 20 Mar 2017 14:23:57 +0530 Subject: [PATCH] Added the level definition that can be used --- mitmproxy/options.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mitmproxy/options.py b/mitmproxy/options.py index 703928032..6e1503ea6 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)