mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
Merge branch 'master' into mitmproxy_issue_341
Conflicts: netlib/tcp.py
This commit is contained in:
commit
f98989b075
@ -494,10 +494,13 @@ class TCPServer(object):
|
|||||||
# none.
|
# none.
|
||||||
if traceback:
|
if traceback:
|
||||||
exc = traceback.format_exc()
|
exc = traceback.format_exc()
|
||||||
print('-' * 40, file=fp)
|
print('-'*40, file=fp)
|
||||||
print("Error in processing of request from %s:%s" % (client_address.host, client_address.port), file=fp)
|
print(
|
||||||
|
"Error in processing of request from %s:%s" % (
|
||||||
|
client_address.host, client_address.port
|
||||||
|
), file=fp)
|
||||||
print(exc, file=fp)
|
print(exc, file=fp)
|
||||||
print('-' * 40, file=fp)
|
print('-'*40, file=fp)
|
||||||
|
|
||||||
def handle_client_connection(self, conn, client_address): # pragma: no cover
|
def handle_client_connection(self, conn, client_address): # pragma: no cover
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user