diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2016-10-16 12:03:57 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2016-10-16 20:26:06 +1300 |
commit | 55cb2a85472de8698b3dabc7ddc920b930e355d9 (patch) | |
tree | d71682210fdae6456edda25d5df2af5e55a5f724 /examples | |
parent | a6c7a1ff918c5aa0285decb995096190888a2f51 (diff) | |
download | mitmproxy-55cb2a85472de8698b3dabc7ddc920b930e355d9.tar.gz mitmproxy-55cb2a85472de8698b3dabc7ddc920b930e355d9.tar.bz2 mitmproxy-55cb2a85472de8698b3dabc7ddc920b930e355d9.zip |
docs: logging and the context
Diffstat (limited to 'examples')
-rw-r--r-- | examples/logging.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/logging.py b/examples/logging.py new file mode 100644 index 00000000..dccfd8b2 --- /dev/null +++ b/examples/logging.py @@ -0,0 +1,6 @@ +from mitmproxy import ctx + + +def start(): + ctx.log.info("This is some informative text.") + ctx.log.error("This is an error.") |