diff options
| author | root <skkaushik212@gmail.com> | 2020-04-15 11:33:26 +0530 |
|---|---|---|
| committer | root <skkaushik212@gmail.com> | 2020-04-15 11:33:26 +0530 |
| commit | 6f94e8538f76523a864dbd54f667b0f709945b64 (patch) | |
| tree | 250bf35daa745e5c169216be78686a7def427e92 | |
| parent | bfb8da4b1c5f1422b4a9031d1e3e77d40552208c (diff) | |
| download | mitmproxy-6f94e8538f76523a864dbd54f667b0f709945b64.tar.gz mitmproxy-6f94e8538f76523a864dbd54f667b0f709945b64.tar.bz2 mitmproxy-6f94e8538f76523a864dbd54f667b0f709945b64.zip | |
add message to mitmdump
| -rw-r--r-- | mitmproxy/tools/_main.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mitmproxy/tools/_main.py b/mitmproxy/tools/_main.py index c1dd6179..e0424adb 100644 --- a/mitmproxy/tools/_main.py +++ b/mitmproxy/tools/_main.py @@ -154,6 +154,7 @@ def mitmdump(args=None) -> typing.Optional[int]: # pragma: no cover def extra(args): if args.filter_args: v = " ".join(args.filter_args) + print(f"Only processing flows that match {v!r}") return dict( save_stream_filter=v, readfile_filter=v, |
