console: increase eventlog size limit to 10000

This commit is contained in:
Doug Freed 2016-12-12 14:20:40 +00:00 committed by Thomas Kriechbaumer
parent 5cf268b012
commit 48b6964552

View File

@ -35,7 +35,7 @@ from mitmproxy.utils import strutils
from mitmproxy.net import tcp
EVENTLOG_SIZE = 500
EVENTLOG_SIZE = 10000
class Logger: