(self)
| 390 | """ |
| 391 | |
| 392 | def __init__(self): |
| 393 | try: |
| 394 | from core.state import get_state_store |
| 395 | self._state = get_state_store() |
| 396 | except Exception: |
| 397 | self._state = None |
| 398 | |
| 399 | def log(self, action: str, details: str = None): |
| 400 | if self._state and hasattr(self._state, 'log_action'): |
nothing calls this directly
no test coverage detected