diff options
| author | Maximilian Hils <git@maximilianhils.com> | 2018-02-22 00:22:14 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-22 00:22:14 +0100 |
| commit | 1cc5f30b2d561090b1b7558e49805acec2383004 (patch) | |
| tree | b84631f951fbc971cb70684f90e6d6f2f8bba8cc | |
| parent | 4ce8d6ca37b8ce58867d5d2ba3987b1498a498c6 (diff) | |
| download | mitmproxy-1cc5f30b2d561090b1b7558e49805acec2383004.tar.gz mitmproxy-1cc5f30b2d561090b1b7558e49805acec2383004.tar.bz2 mitmproxy-1cc5f30b2d561090b1b7558e49805acec2383004.zip | |
don't print message bodies when -v is passed.
In contrast to headers, they will almost never help uncover issues.
| -rw-r--r-- | mitmproxy/tools/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/tools/main.py b/mitmproxy/tools/main.py index 67139ead..5c2d9f2f 100644 --- a/mitmproxy/tools/main.py +++ b/mitmproxy/tools/main.py @@ -50,7 +50,7 @@ def process_options(parser, opts, args): args.flow_detail = 0 if args.verbose: args.verbosity = 'debug' - args.flow_detail = 3 + args.flow_detail = 2 adict = {} for n in dir(args): |
