-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathlogger.js
37 lines (31 loc) · 987 Bytes
/
logger.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
'use strict';
require(ROOT + '/lib/decimal');
const winston = require('winston');
const moment = require('moment');
const config = require(ROOT + '/config');
const tsFormat = function () {
return moment().format('YYYY-MM-DD HH:mm:ss');
}
//////////////////////////////////////////////////////////////////////////////////////////
const myFormat = winston.format.printf(info => {
return tsFormat() + ' ' + info.message;
});
// Normal Logger: Winston
let logger = winston.createLogger({
level: config.system.logLevel || 'info',
format: winston.format.combine(
myFormat
),
transports: [
new(winston.transports.Console)({
colorize: true,
handleExceptions: true,
})
]
});
//Promise unhandled rejection logger.
//process.off('unhandledRejection', () => {});
process.on('unhandledRejection', (reason, p) => {
console.error('Unhandled rejection Promise: ', p, ' reason: ', reason)
});
module.exports = logger;