mirror of
https://github.com/Infisical/infisical.git
synced 2025-03-27 09:40:45 +00:00
set log level to info and output to file
This commit is contained in:
@ -9,14 +9,14 @@ export const initLogger = async () => {
|
||||
const isProduction = nodeEnv === "production";
|
||||
const targets: pino.TransportMultiOptions["targets"][number][] = [
|
||||
isProduction
|
||||
? { level: "trace", target: "pino/file", options: {} }
|
||||
? { level: "info", target: "pino/file", options: { destination: 'logs/infisical-backend/logs.txt', mkdir: true } }
|
||||
: {
|
||||
level: "info",
|
||||
target: "pino-pretty", // must be installed separately
|
||||
options: {
|
||||
colorize: true
|
||||
}
|
||||
level: "info",
|
||||
target: "pino-pretty", // must be installed separately
|
||||
options: {
|
||||
colorize: true
|
||||
}
|
||||
}
|
||||
];
|
||||
|
||||
if (awsCloudWatchLogCfg) {
|
||||
@ -40,7 +40,7 @@ export const initLogger = async () => {
|
||||
|
||||
logger = pino(
|
||||
{
|
||||
level: process.env.PINO_LOG_LEVEL || "trace",
|
||||
level: process.env.PINO_LOG_LEVEL || "info",
|
||||
formatters: {
|
||||
bindings: (bindings) => {
|
||||
return {
|
||||
|
Reference in New Issue
Block a user