- Add app/lib/logger.ts: dev passes through to console; prod routes errors to Sentry.captureException and warnings to Sentry.captureMessage, with extra context preserved. Uses captureMessage (not captureException) for string-only args to avoid fabricated stack traces. - Add server/logger.ts: dev passes through; prod silences log/info but keeps warn/error on stderr (Sentry not initialized in that process). - Replace all console.* calls across 44 app files and 4 server files. - Upgrade no-console from warn → error in oxlint; exempt logger files and scripts/** via overrides. - Add typescript/no-inferrable-types rule; fix violations in services and simulators. Exempt test files (intentional string widening for switch/if tests would break under literal type inference). Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
26 lines
709 B
TypeScript
26 lines
709 B
TypeScript
/**
|
|
* Server-side logger. In development, delegates to console. In production,
|
|
* silences debug noise but keeps warnings and errors visible in server
|
|
* stdout/stderr. Sentry is not initialized in this process — if you need
|
|
* server-side Sentry coverage, initialize @sentry/node in server.ts.
|
|
*/
|
|
|
|
const isDev = process.env.NODE_ENV !== "production";
|
|
|
|
function log(...args: unknown[]): void {
|
|
if (isDev) console.log(...args);
|
|
}
|
|
|
|
function info(...args: unknown[]): void {
|
|
if (isDev) console.info(...args);
|
|
}
|
|
|
|
function warn(...args: unknown[]): void {
|
|
console.warn(...args);
|
|
}
|
|
|
|
function error(...args: unknown[]): void {
|
|
console.error(...args);
|
|
}
|
|
|
|
export const logger = { log, info, warn, error };
|