From 0b2a2ad2a6c9d228e4b577fdba55cca2bd13aaaf Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Sun, 30 Oct 2016 16:58:50 +1300 Subject: [PATCH] docs: examples/logging -> examples/context_logging --- docs/scripting/overview.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/scripting/overview.rst b/docs/scripting/overview.rst index b820538e7..dfee23a5c 100644 --- a/docs/scripting/overview.rst +++ b/docs/scripting/overview.rst @@ -80,13 +80,13 @@ Logging and the context Scripts should not output straight to stderr or stdout. Instead, the `log `_ object on the ``ctx`` contexzt module should be used, so that the mitmproxy host program can handle output -appropriately. So, mitmdump can print colorised sript output to the terminal, +appropriately. So, mitmdump can print colorised script output to the terminal, and mitmproxy console can place script output in the event buffer. Here's how this looks: -.. literalinclude:: ../../examples/logging.py - :caption: :src:`examples/logging.py` +.. literalinclude:: ../../examples/context_logging.py + :caption: :src:`examples/context_logging.py` :language: python The ``ctx`` module also exposes the mitmproxy master object at ``ctx.master``