epic_explorer/server/utils/logger.ts

33 lines
977 B
TypeScript
Raw Normal View History

2019-07-16 06:17:19 +00:00
//import winston from 'winston';
export function logger() {
// return winston.createLogger({
// transports: [
// new winston.transports.File({
// level: 'info',
// filename: './log/all-logs.log',
// handleExceptions: true,
// maxsize: 5242880, //5MB
// maxFiles: 5,
// }),
// new winston.transports.Console({
// format: winston.format.combine(
// winston.format.colorize(),
// winston.format.timestamp(),
// winston.format.align(),
// winston.format.printf(info => {
// const { timestamp, level, message, ...args } = info;
// const ts = timestamp.slice(0, 19).replace('T', ' ');
// return `${ts} [${level}]: ${message} ${
// Object.keys(args).length ? JSON.stringify(args, null, 2) : ''
// }`;
// }),
// ),
// }),
// ],
// exitOnError: false,
// });
return true;
}