aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Freed <dwfreed@mtu.edu>2016-12-12 14:20:40 +0000
committerThomas Kriechbaumer <Kriechi@users.noreply.github.com>2016-12-12 15:41:31 +0100
commit48b6964552573f45c0dda17fd8656cc9fd17d0bf (patch)
treedc2f178c05a9b6bfdfdb4d8d5bae6115e20ad123
parent5cf268b012697730c37df9d46c2f580f8184ef08 (diff)
downloadmitmproxy-48b6964552573f45c0dda17fd8656cc9fd17d0bf.tar.gz
mitmproxy-48b6964552573f45c0dda17fd8656cc9fd17d0bf.tar.bz2
mitmproxy-48b6964552573f45c0dda17fd8656cc9fd17d0bf.zip
console: increase eventlog size limit to 10000
-rw-r--r--mitmproxy/tools/console/master.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/tools/console/master.py b/mitmproxy/tools/console/master.py
index d8355324..c45e932c 100644
--- a/mitmproxy/tools/console/master.py
+++ b/mitmproxy/tools/console/master.py
@@ -35,7 +35,7 @@ from mitmproxy.utils import strutils
from mitmproxy.net import tcp
-EVENTLOG_SIZE = 500
+EVENTLOG_SIZE = 10000
class Logger: