actionhero
Version:
The reusable, scalable, and quick node.js API server for stateless and stateful applications
73 lines (72 loc) • 2.5 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.test = exports.DEFAULT = void 0;
const winston = require("winston");
exports.DEFAULT = {
logger: (config) => {
const loggers = [];
loggers.push(buildConsoleLogger());
config.general.paths.log.forEach((p) => {
loggers.push(buildFileLogger(p));
});
return {
loggers,
maxLogStringLength: 100,
maxLogArrayLength: 10, // the maximum number of items in an array to log before collapsing into one message
};
},
};
exports.test = {
logger: (config) => {
const loggers = [];
loggers.push(buildConsoleLogger("crit"));
config.general.paths.log.forEach((p) => {
loggers.push(buildFileLogger(p, "debug", 1));
});
return { loggers };
},
};
// helpers for building the winston loggers
function buildConsoleLogger(level = "info") {
return function (config) {
return winston.createLogger({
format: winston.format.combine(winston.format.timestamp(), winston.format.colorize(), winston.format.printf((info) => {
return `${info.timestamp} - ${info.level}: ${info.message} ${stringifyExtraMessagePropertiesForConsole(info)}`;
})),
level,
levels: winston.config.syslog.levels,
transports: [new winston.transports.Console()],
});
};
}
function stringifyExtraMessagePropertiesForConsole(info) {
const skippedProperties = ["message", "timestamp", "level"];
let response = "";
for (const key in info) {
const value = info[key];
if (skippedProperties.includes(key)) {
continue;
}
if (value === undefined || value === null || value === "") {
continue;
}
response += `${key}=${value} `;
}
return response;
}
function buildFileLogger(path, level = "info", maxFiles = undefined) {
return function (config) {
const filename = `${path}/${config.process.id}-${config.process.env}.log`;
return winston.createLogger({
format: winston.format.combine(winston.format.timestamp(), winston.format.json()),
level,
levels: winston.config.syslog.levels,
transports: [
new winston.transports.File({
filename,
maxFiles,
}),
],
});
};
}