(self)
| 28 | self.logger.setLevel(ctx.options.termlog_verbosity.upper()) |
| 29 | |
| 30 | def uninstall(self) -> None: |
| 31 | # uninstall the log dumper. |
| 32 | # This happens at the very very end after done() is completed, |
| 33 | # because we don't want to uninstall while other addons are still logging. |
| 34 | self.logger.uninstall() |
| 35 | |
| 36 | |
| 37 | class TermLogHandler(log.MitmLogHandler): |
no outgoing calls