add machine logs back

This commit is contained in:
Milo Schwartz 2024-12-20 22:33:22 -05:00
parent 845d65ad33
commit 7252876768
No known key found for this signature in database

View file

@ -30,6 +30,22 @@ if (config.app.save_logs) {
symlinkName: "pangolin.log"
})
);
transports.push(
new winston.transports.DailyRotateFile({
filename: path.join(APP_PATH, "logs", ".machinelogs-%DATE%.json"),
datePattern: "YYYY-MM-DD",
zippedArchive: true,
maxSize: "20m",
maxFiles: "1d",
createSymlink: true,
symlinkName: ".machinelogs.json",
format: winston.format.combine(
winston.format.timestamp(),
winston.format.splat(),
winston.format.json()
)
})
);
}
const logger = winston.createLogger({