mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
af1a4ffdcd
This results in a 30% improvement in our core request throughput. Fixes #3102
8 lines
170 B
Python
8 lines
170 B
Python
from mitmproxy import ctx
|
|
|
|
|
|
def load(l):
|
|
ctx.log.info("This is some informative text.")
|
|
ctx.log.warn("This is a warning.")
|
|
ctx.log.error("This is an error.")
|