(self, action: str, details: str = None)
| 397 | self._state = None |
| 398 | |
| 399 | def log(self, action: str, details: str = None): |
| 400 | if self._state and hasattr(self._state, 'log_action'): |
| 401 | try: |
| 402 | self._state.log_action(action, details) |
| 403 | except Exception: |
| 404 | pass |
| 405 | |
| 406 | def get_recent(self, limit: int = 50) -> List[Dict]: |
| 407 | if self._state and hasattr(self._state, 'get_recent_actions'): |
no test coverage detected