fix(logger): 开发环境log输出只到info层
All checks were successful
/ release (push) Successful in 24s

This commit is contained in:
zhaoyingbo 2024-09-24 10:33:07 +00:00
parent 6019819123
commit 1edb545ba2

View File

@ -6,7 +6,7 @@ const isProd = process.env.NODE_ENV === "production"
const transports: any[] = [
new winston.transports.Console({
level: "info",
level: isProd ? "info" : "debug",
}),
]