2016-11-21 01:16:20 +00:00
|
|
|
"""
|
|
|
|
It is recommended to use `ctx.log` for logging within a script.
|
2018-02-20 16:15:35 +00:00
|
|
|
print() statements are equivalent to ctx.log.warn().
|
2016-11-21 01:16:20 +00:00
|
|
|
"""
|
|
|
|
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.")
|