(self)
| 144 | pass |
| 145 | |
| 146 | def snapshot(self) -> list[RecordedLog]: |
| 147 | try: |
| 148 | with self._lock: |
| 149 | return list(self._records) |
| 150 | except Exception: |
| 151 | return [] |
| 152 | |
| 153 | def render_text(self, *, limit: int = 200) -> str: |
| 154 | lines: list[str] = [] |
no outgoing calls