Summary
Replace print statements in Python AI modules with structured logging.
Why
Mixed stdout prints make CLI output noisy and harder to control compared to logger-based output.
Tasks
- Replace user-facing prints in
nexum_ai/translator.py and nexum_ai/model_manager.py with logging
- Keep warning/error semantics equivalent
- Update tests/mocks as needed
Acceptance Criteria
- Modules use logger calls instead of direct print statements
- Behavior remains backward-compatible for success/failure paths
- Python tests remain green
Summary
Replace
printstatements in Python AI modules with structured logging.Why
Mixed stdout prints make CLI output noisy and harder to control compared to logger-based output.
Tasks
nexum_ai/translator.pyandnexum_ai/model_manager.pywithloggingAcceptance Criteria