2016-11-21 01:16:20 +00:00
|
|
|
"""
|
|
|
|
It is recommended to use `ctx.log` for logging within a script.
|
|
|
|
This goes to the event log in mitmproxy and to stdout in mitmdump.
|
|
|
|
|
|
|
|
If you want to help us out: https://github.com/mitmproxy/mitmproxy/issues/1530 :-)
|
|
|
|
"""
|
|
|
|
from mitmproxy import ctx
|
|
|
|
|
|
|
|
|
2017-03-23 22:29:36 +00:00
|
|
|
def load(l):
|
2016-11-21 01:16:20 +00:00
|
|
|
ctx.log.info("This is some informative text.")
|
|
|
|
ctx.log.error("This is an error.")
|