moving to appropriate directory

This commit is contained in:
Varun Singh
2025-04-01 23:45:09 -07:00
parent 24b54c66ee
commit 2229730169
14 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
// File: vercel/lib/utils.js
import pino from 'pino';
export const logger = pino({
level: process.env.LOG_LEVEL || 'info',
browser: {
write: {
info: (...args) => console.log(...args),
error: (...args) => console.error(...args),
debug: (...args) => console.debug(...args),
}
}
});