Console.log Statements Left in Production Code
- Location: Multiple files across backend and mobile
apps/backend/src/app.ts
apps/mobile/src/screens/*.tsx
apps/backend/prisma/seed.ts
apps/backend/src/utils/validateEnv.ts
certificates.gcoen.ac.in/src/actions/certificate-admin.ts
- Issue: Debug console.log statements will leak to production logs and client consoles, exposing sensitive data.
- Fix: Replace with proper logger (pino for backend already configured); remove all console.* from production paths or gate behind dev flag.
Console.log Statements Left in Production Code
apps/backend/src/app.tsapps/mobile/src/screens/*.tsxapps/backend/prisma/seed.tsapps/backend/src/utils/validateEnv.tscertificates.gcoen.ac.in/src/actions/certificate-admin.ts