Browse Source

refactor: add console logging for exceptions

develop
Apostolos Fanakis 4 years ago
parent
commit
790dc3b31e
  1. 38
      packages/concordia-shared/src/logging/node/winstonLogUtils.js

38
packages/concordia-shared/src/logging/node/winstonLogUtils.js

@ -1,14 +1,7 @@
const path = require('path');
const getLogger = (winston, logsDirectory, serviceName) => {
const logger = winston.createLogger({
level: process.env.NODE_ENV === 'production' ? 'info' : 'silly',
format: winston.format.combine(
winston.format.timestamp(),
winston.format.json(),
),
defaultMeta: { service: serviceName },
transports: [
const transports = [
new winston.transports.File({
filename: path.join(logsDirectory, 'error.log'),
level: 'error',
@ -16,14 +9,22 @@ const getLogger = (winston, logsDirectory, serviceName) => {
new winston.transports.File({
filename: path.join(logsDirectory, 'combined.log'),
}),
],
exceptionHandlers: [
];
const exceptionHandlers = [
new winston.transports.File({ filename: path.join(logsDirectory, 'exceptions.log') }),
],
});
];
if (process.env.NODE_ENV !== 'production') {
logger.add(new winston.transports.Console({
transports.push(new winston.transports.Console({
format: winston.format.combine(
winston.format.colorize(),
winston.format.timestamp(),
winston.format.simple(),
),
}));
exceptionHandlers.push(new winston.transports.Console({
format: winston.format.combine(
winston.format.colorize(),
winston.format.timestamp(),
@ -32,7 +33,16 @@ const getLogger = (winston, logsDirectory, serviceName) => {
}));
}
return logger;
return winston.createLogger({
level: process.env.NODE_ENV === 'production' ? 'info' : 'silly',
format: winston.format.combine(
winston.format.timestamp(),
winston.format.json(),
),
defaultMeta: { service: serviceName },
transports,
exceptionHandlers,
});
};
module.exports = getLogger;

Loading…
Cancel
Save