This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author r.david.murray
Recipients ezio.melotti, michael.foord, r.david.murray, rbcollins, zach.ware
Date 2015-08-21.14:38:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1440167912.24.0.228399221607.issue24352@psf.upfronthosting.co.za>
In-reply-to
Content
My test harness already dumps the logging buffer on test failure.

What I need this for is debugging.  My test harness verbose = 2 flag turns on logging globally, and I need to see the logging from the code under test correctly interspersed with the other logging (some of which comes from *other processes*...there are integration tests as well as unit tests).

Here's what I'm currently using:

    @contextmanager
    def assertLogs(self, logger=None, level=None):
        cm = super().assertLogs(logger, level)
        watcher = cm.__enter__()
        if verbose > 1:
            capture_handler = cm.logger.handlers
            cm.logger.propagate = cm.old_propagate
            cm.logger.handlers = cm.old_handlers + cm.logger.handlers
        try:
            yield watcher
        finally:
            if verbose > 1:
                # Restore before exit to avoid a race.  Otherwise debug output
                # sometimes gets written to the console during non-v.
                cm.logger.propagate = False
                cm.logger.handlers = capture_handler
            cm.__exit__(None, None, None)

So, I have a solution, and if my use case is too specialized I can just continue to use that solution, though I am forced to poke at the internals to make it work :)

I am also, by the way, depending on the fact that when the logging is being done by another thread I can "watch" cm.output until specific logging that I am expecting appears in the buffer.  I'm sure that's going to make some people throw up their hands in disgust, considering among other things the fact that it involves a busy-wait, but while it may be a somewhat ugly hack, it is a hack that works well.
History
Date User Action Args
2015-08-21 14:38:32r.david.murraysetrecipients: + r.david.murray, rbcollins, ezio.melotti, michael.foord, zach.ware
2015-08-21 14:38:32r.david.murraysetmessageid: <1440167912.24.0.228399221607.issue24352@psf.upfronthosting.co.za>
2015-08-21 14:38:32r.david.murraylinkissue24352 messages
2015-08-21 14:38:31r.david.murraycreate