-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
Priority: Medium
Labels: code-quality, architecture
Description:
Replace all println! with log::info!, log::debug!, etc. Add env_logger for runtime log level control.
Files to modify:
src/system.rssrc/main.rssrc/lib.rs
Acceptance criteria:
- All
println!replaced with appropriate log macros -
env_loggerintegrated for runtime control - Log levels: ERROR, WARN, INFO, DEBUG, TRACE
- Log level configurable via
RUST_LOGenvironment variable - Appropriate log levels used throughout codebase
Implementation notes:
- Add
log = "0.4"andenv_logger = "0.11"toCargo.toml - Initialize logger in
main()function - Replace
println!withlog::debug!,log::info!, etc. - Use appropriate log levels (debug for verbose, info for normal, warn for issues)
- Document
RUST_LOGusage in README
Metadata
Metadata
Assignees
Labels
No labels