fix: 日志打印错误
All checks were successful
CI Monitor MIflow / build-image (push) Successful in 55s

This commit is contained in:
zhaoyingbo 2024-08-13 02:07:16 +00:00
parent 7c8ef60d6a
commit 878532997b
2 changed files with 22 additions and 20 deletions

View File

@ -4,24 +4,6 @@ import winston, { format } from "winston"
const isProd = process.env.NODE_ENV === "production"
const dailyRotateFileTransport4Info = new winston.transports.DailyRotateFile({
level: "info",
filename: "/home/work/log/egg-info-%DATE%.log",
datePattern: "YYYY-MM-DD",
zippedArchive: true,
maxSize: "20m",
maxFiles: "14d",
})
const dailyRotateFileTransport4Debug = new winston.transports.DailyRotateFile({
level: "debug",
filename: "/home/work/log/egg-debug-%DATE%.log",
datePattern: "YYYY-MM-DD",
zippedArchive: true,
maxSize: "20m",
maxFiles: "14d",
})
const transports: any[] = [
new winston.transports.Console({
level: "info",
@ -29,8 +11,27 @@ const transports: any[] = [
]
if (isProd) {
transports.push(dailyRotateFileTransport4Info)
transports.push(dailyRotateFileTransport4Debug)
const config = {
datePattern: "YYYY-MM-DD",
zippedArchive: true,
maxSize: "20m",
maxFiles: "14d",
}
transports.push(
new winston.transports.DailyRotateFile({
level: "info",
filename: "/home/work/log/egg-info-%DATE%.log",
...config,
})
)
transports.push(
new winston.transports.DailyRotateFile({
level: "debug",
filename: "/home/work/log/egg-debug-%DATE%.log",
...config,
})
)
}
const loggerIns = winston.createLogger({

View File

@ -4,6 +4,7 @@
"type": "module",
"scripts": {
"start": "bun run index.ts",
"dev": "NODE_ENV=dev bun run index.ts --watch",
"lint": "eslint --fix .",
"prepare": "husky",
"prettier": "prettier --write ."