(self, log_path: str = "audit.jsonl")
| 707 | """ |
| 708 | |
| 709 | def __init__(self, log_path: str = "audit.jsonl"): |
| 710 | self._path = Path(log_path) |
| 711 | self._records: List[AuditRecord] = [] |
| 712 | self._lock = threading.Lock() |
| 713 | # Load existing records on startup |
| 714 | self._load_existing() |
| 715 | |
| 716 | def _load_existing(self) -> None: |
| 717 | if self._path.exists(): |
nothing calls this directly
no test coverage detected