| 737 | |
| 738 | |
| 739 | class PrintOnlyUI(BaseLiveTailUI): |
| 740 | def __init__(self, output, log_events) -> None: |
| 741 | self._log_events = log_events |
| 742 | self._printer = PrintOnlyPrinter(output, self._log_events) |
| 743 | |
| 744 | def exit(self): |
| 745 | self._printer.interrupt_session = True |
| 746 | |
| 747 | def run(self): |
| 748 | with handle_signal(self._printer): |
| 749 | self._printer.run() |
| 750 | |
| 751 | |
| 752 | class LiveTailLogEventsCollector(Thread): |