2020-06-22 23:53:39 +00:00
|
|
|
"""Post messages to mitmproxy's event log."""
|
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.")
|
2018-05-07 23:23:52 +00:00
|
|
|
ctx.log.warn("This is a warning.")
|
2016-11-21 01:16:20 +00:00
|
|
|
ctx.log.error("This is an error.")
|