WIP: Add decision logging infrastructure

- Add decision_logs table to database schema
- Create decision logger module with comprehensive logging
- Prepare for decision tracking and audit trail

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
agentson
2026-02-04 15:26:36 +09:00
parent 7515a5a314
commit 6551d7af79
3 changed files with 272 additions and 0 deletions

5
src/logging/__init__.py Normal file
View File

@@ -0,0 +1,5 @@
"""Decision logging and audit trail for trade decisions."""
from src.logging.decision_logger import DecisionLog, DecisionLogger
__all__ = ["DecisionLog", "DecisionLogger"]