The formatted log text.
(self)
| 465 | |
| 466 | @property |
| 467 | def text(self) -> str: |
| 468 | """The formatted log text.""" |
| 469 | return _remove_ansi_escape_sequences(self.handler.stream.getvalue()) |
| 470 | |
| 471 | @property |
| 472 | def records(self) -> list[logging.LogRecord]: |
nothing calls this directly
no test coverage detected