Some checks failed
Deploy to Staging / build-and-deploy (push) Failing after 9m44s
- Extract complete codebase from running staging pod - Add Dockerfile with multi-stage build for Node.js + Puppeteer - Configure CI/CD workflows for staging and production deployment - Include all source files, configs, and public assets
3 lines
113 B
TypeScript
3 lines
113 B
TypeScript
import pino from "pino";
|
|
const logger = pino({ level: process.env.LOG_LEVEL || "info" });
|
|
export default logger;
|