Violation
console.log('Running in Development Mode (auto-restart enabled)');
Location
core/src/server/index.ts line 57
Why It Matters
Even development-mode messages should be emitted through a structured logger for consistency and so they are captured in log output.
Suggested Fix
Replace with logger.info(...).
Found by automated code hygiene audit
Violation
Location
core/src/server/index.tsline 57Why It Matters
Even development-mode messages should be emitted through a structured logger for consistency and so they are captured in log output.
Suggested Fix
Replace with
logger.info(...).Found by automated code hygiene audit