Performance: Package-level log configuration
MEDIUM IMPACT
This affects application startup time and runtime logging overhead, impacting how quickly logs are processed and how much CPU is used during logging.
logging.level.root=INFO logging.level.com.example.service=DEBUG logging.level.com.example.repository=ERROR
logging.level.root=DEBUG logging.level.com.example=DEBUG
| Pattern | CPU Usage | IO Operations | Log Volume | Verdict |
|---|---|---|---|---|
| Global DEBUG logging | High | High | Very High | [X] Bad |
| Package-level selective logging | Low to Medium | Low to Medium | Controlled | [OK] Good |