2023-12-14 07:49:27 -05:00
|
|
|
const path = require('path');
|
|
|
|
const winston = require('winston');
|
|
|
|
require('winston-daily-rotate-file');
|
|
|
|
|
|
|
|
const logDir = path.join(__dirname, '..', 'logs');
|
|
|
|
|
2025-03-26 14:10:52 -04:00
|
|
|
const { NODE_ENV, DEBUG_LOGGING = false } = process.env;
|
|
|
|
|
|
|
|
const useDebugLogging =
|
|
|
|
(typeof DEBUG_LOGGING === 'string' && DEBUG_LOGGING?.toLowerCase() === 'true') ||
|
|
|
|
DEBUG_LOGGING === true;
|
2023-12-14 07:49:27 -05:00
|
|
|
|
|
|
|
const levels = {
|
|
|
|
error: 0,
|
|
|
|
warn: 1,
|
|
|
|
info: 2,
|
|
|
|
http: 3,
|
|
|
|
verbose: 4,
|
|
|
|
debug: 5,
|
|
|
|
activity: 6,
|
|
|
|
silly: 7,
|
|
|
|
};
|
|
|
|
|
|
|
|
winston.addColors({
|
|
|
|
info: 'green', // fontStyle color
|
|
|
|
warn: 'italic yellow',
|
|
|
|
error: 'red',
|
|
|
|
debug: 'blue',
|
|
|
|
});
|
|
|
|
|
|
|
|
const level = () => {
|
|
|
|
const env = NODE_ENV || 'development';
|
|
|
|
const isDevelopment = env === 'development';
|
|
|
|
return isDevelopment ? 'debug' : 'warn';
|
|
|
|
};
|
|
|
|
|
|
|
|
const fileFormat = winston.format.combine(
|
|
|
|
winston.format.timestamp({ format: 'YYYY-MM-DD HH:mm:ss' }),
|
|
|
|
winston.format.errors({ stack: true }),
|
|
|
|
winston.format.splat(),
|
|
|
|
);
|
|
|
|
|
2025-03-26 14:10:52 -04:00
|
|
|
const logLevel = useDebugLogging ? 'debug' : 'error';
|
2023-12-14 07:49:27 -05:00
|
|
|
const transports = [
|
|
|
|
new winston.transports.DailyRotateFile({
|
2025-03-26 14:10:52 -04:00
|
|
|
level: logLevel,
|
2023-12-14 07:49:27 -05:00
|
|
|
filename: `${logDir}/meiliSync-%DATE%.log`,
|
|
|
|
datePattern: 'YYYY-MM-DD',
|
|
|
|
zippedArchive: true,
|
|
|
|
maxSize: '20m',
|
|
|
|
maxFiles: '14d',
|
|
|
|
format: fileFormat,
|
|
|
|
}),
|
|
|
|
];
|
|
|
|
|
|
|
|
const consoleFormat = winston.format.combine(
|
|
|
|
winston.format.colorize({ all: true }),
|
|
|
|
winston.format.timestamp({ format: 'YYYY-MM-DD HH:mm:ss' }),
|
|
|
|
winston.format.printf((info) => `${info.timestamp} ${info.level}: ${info.message}`),
|
|
|
|
);
|
|
|
|
|
|
|
|
transports.push(
|
|
|
|
new winston.transports.Console({
|
|
|
|
level: 'info',
|
|
|
|
format: consoleFormat,
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
const logger = winston.createLogger({
|
|
|
|
level: level(),
|
|
|
|
levels,
|
|
|
|
transports,
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = logger;
|