fix(cli): Improve CLI logging consistency by replacing direct console output with unified logger calls.

This commit is contained in:
2025-03-26 22:38:24 +00:00
parent 39bf3e2239
commit 45ee8208b5
3 changed files with 177 additions and 152 deletions

View File

@@ -1,5 +1,12 @@
# Changelog
## 2025-03-26 - 2.6.16 - fix(cli)
Improve CLI logging consistency by replacing direct console output with unified logger calls.
- Replaced console.log and console.error with logger.log and logger.error in CLI commands
- Standardized debug, error, and status messages using logger's logbox utilities
- Enhanced consistency of log output throughout the ts/cli.ts file
## 2025-03-26 - 2.6.15 - fix(logger)
Replace direct console logging with unified logger interface for consistent formatting