33 lines
No EOL
1.3 KiB
JavaScript
33 lines
No EOL
1.3 KiB
JavaScript
"use strict";
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.logger = void 0;
|
|
const winston_1 = __importDefault(require("winston"));
|
|
const logFormat = winston_1.default.format.combine(winston_1.default.format.timestamp(), winston_1.default.format.errors({ stack: true }), winston_1.default.format.json());
|
|
exports.logger = winston_1.default.createLogger({
|
|
level: process.env.LOG_LEVEL || 'info',
|
|
format: logFormat,
|
|
defaultMeta: { service: 'docket-api' },
|
|
transports: [
|
|
new winston_1.default.transports.File({
|
|
filename: 'logs/error.log',
|
|
level: 'error',
|
|
maxsize: 5242880,
|
|
maxFiles: 5,
|
|
}),
|
|
new winston_1.default.transports.File({
|
|
filename: 'logs/combined.log',
|
|
maxsize: 5242880,
|
|
maxFiles: 5,
|
|
}),
|
|
],
|
|
});
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
exports.logger.add(new winston_1.default.transports.Console({
|
|
format: winston_1.default.format.combine(winston_1.default.format.colorize(), winston_1.default.format.simple())
|
|
}));
|
|
}
|
|
exports.default = exports.logger;
|
|
//# sourceMappingURL=logger.js.map
|