Merge pull request #251 from JazzFisch/patch-nextjs-logging
Patch console object to instead use homepage's logger for loggingpull/211/head
commit
ed28d69d76
@ -1,80 +1,88 @@
|
||||
/* eslint-disable no-console */
|
||||
import { join } from "path";
|
||||
import { format as utilFormat } from "node:util"
|
||||
|
||||
import winston from "winston";
|
||||
|
||||
const configPath = join(process.cwd(), "config");
|
||||
let winstonLogger;
|
||||
|
||||
function messageFormatter(logInfo) {
|
||||
if (logInfo.stack) {
|
||||
return `[${logInfo.timestamp}] ${logInfo.level}: ${logInfo.stack}`;
|
||||
}
|
||||
return `[${logInfo.timestamp}] ${logInfo.level}: ${logInfo.message}`;
|
||||
};
|
||||
|
||||
const consoleFormat = winston.format.combine(
|
||||
winston.format.errors({ stack: true }),
|
||||
winston.format.splat(),
|
||||
winston.format.timestamp(),
|
||||
winston.format.colorize(),
|
||||
winston.format.printf(messageFormatter)
|
||||
);
|
||||
|
||||
const fileFormat = winston.format.combine(
|
||||
winston.format.errors({ stack: true }),
|
||||
winston.format.splat(),
|
||||
winston.format.timestamp(),
|
||||
winston.format.printf(messageFormatter)
|
||||
);
|
||||
function init() {
|
||||
const configPath = join(process.cwd(), "config");
|
||||
|
||||
const logger = winston.createLogger({
|
||||
level: process.env.LOG_LEVEL || 'info',
|
||||
transports: [
|
||||
new winston.transports.Console({
|
||||
format: consoleFormat,
|
||||
handleExceptions: true,
|
||||
handleRejections: true
|
||||
}),
|
||||
|
||||
new winston.transports.File({
|
||||
format: fileFormat,
|
||||
filename: `${configPath}/logs/homepage.log`,
|
||||
handleExceptions: true,
|
||||
handleRejections: true
|
||||
}),
|
||||
]
|
||||
});
|
||||
|
||||
function debug(message, ...args) {
|
||||
logger.debug(message, ...args);
|
||||
}
|
||||
function combineMessageAndSplat() {
|
||||
return {
|
||||
// eslint-disable-next-line no-unused-vars
|
||||
transform: (info, opts) => {
|
||||
// combine message and args if any
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
info.message = utilFormat(info.message, ...info[Symbol.for('splat')] || []);
|
||||
return info;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function verbose(message, ...args) {
|
||||
logger.verbose(message, ...args);
|
||||
}
|
||||
function messageFormatter(logInfo) {
|
||||
if (logInfo.label) {
|
||||
if (logInfo.stack) {
|
||||
return `[${logInfo.timestamp}] ${logInfo.level}: <${logInfo.label}> ${logInfo.stack}`;
|
||||
}
|
||||
return `[${logInfo.timestamp}] ${logInfo.level}: <${logInfo.label}> ${logInfo.message}`;
|
||||
}
|
||||
|
||||
function info(message, ...args) {
|
||||
logger.info(message, ...args);
|
||||
}
|
||||
if (logInfo.stack) {
|
||||
return `[${logInfo.timestamp}] ${logInfo.level}: ${logInfo.stack}`;
|
||||
}
|
||||
return `[${logInfo.timestamp}] ${logInfo.level}: ${logInfo.message}`;
|
||||
};
|
||||
|
||||
function warn(message, ...args) {
|
||||
logger.warn(message, ...args);
|
||||
}
|
||||
winstonLogger = winston.createLogger({
|
||||
level: process.env.LOG_LEVEL || 'info',
|
||||
transports: [
|
||||
new winston.transports.Console({
|
||||
format: winston.format.combine(
|
||||
winston.format.errors({ stack: true}),
|
||||
combineMessageAndSplat(),
|
||||
winston.format.timestamp(),
|
||||
winston.format.colorize(),
|
||||
winston.format.printf(messageFormatter)
|
||||
),
|
||||
handleExceptions: true,
|
||||
handleRejections: true
|
||||
}),
|
||||
|
||||
function error(message, ...args) {
|
||||
logger.error(message, ...args);
|
||||
}
|
||||
new winston.transports.File({
|
||||
format: winston.format.combine(
|
||||
winston.format.errors({ stack: true}),
|
||||
combineMessageAndSplat(),
|
||||
winston.format.timestamp(),
|
||||
winston.format.printf(messageFormatter)
|
||||
),
|
||||
filename: `${configPath}/logs/homepage.log`,
|
||||
handleExceptions: true,
|
||||
handleRejections: true
|
||||
}),
|
||||
]
|
||||
});
|
||||
|
||||
function crit(message, ...args) {
|
||||
logger.crit(message, ...args);
|
||||
// patch the console log mechanism to use our logger
|
||||
const consoleMethods = ['log', 'debug', 'info', 'warn', 'error']
|
||||
consoleMethods.forEach(method => {
|
||||
// workaround for https://github.com/winstonjs/winston/issues/1591
|
||||
switch (method) {
|
||||
case 'log':
|
||||
console[method] = winstonLogger.info.bind(winstonLogger);
|
||||
break;
|
||||
default:
|
||||
console[method] = winstonLogger[method].bind(winstonLogger);
|
||||
break;
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
const thisModule = {
|
||||
debug,
|
||||
verbose,
|
||||
info,
|
||||
warn,
|
||||
error,
|
||||
crit
|
||||
};
|
||||
export default function createLogger(label) {
|
||||
if (!winstonLogger) {
|
||||
init();
|
||||
}
|
||||
|
||||
export default thisModule;
|
||||
return winstonLogger.child({ label });
|
||||
}
|
Loading…
Reference in new issue