mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-02 02:37:15 +00:00
7 lines
170 B
Python
7 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.")
|