Violation
console.error('Failed to start server:', error);
Location
core/src/server/index.ts line 74
Why It Matters
Server startup failures are critical events that must be captured in structured error logs and routed to alerting systems. Raw console.error output is not captured by log aggregators.
Suggested Fix
Replace with logger.error('Failed to start server:', error).
Found by automated code hygiene audit
Violation
Location
core/src/server/index.tsline 74Why It Matters
Server startup failures are critical events that must be captured in structured error logs and routed to alerting systems. Raw
console.erroroutput is not captured by log aggregators.Suggested Fix
Replace with
logger.error('Failed to start server:', error).Found by automated code hygiene audit