The formatted log text.
(self)
| 396 | |
| 397 | @property |
| 398 | def text(self) -> str: |
| 399 | """The formatted log text.""" |
| 400 | return _remove_ansi_escape_sequences(self.handler.stream.getvalue()) |
| 401 | |
| 402 | @property |
| 403 | def records(self) -> List[logging.LogRecord]: |
nothing calls this directly
no test coverage detected