Files
dispatcher_ng/src/log.js
Wolfgang Hottgenroth c00520e67b initial
2018-01-01 21:15:06 +01:00

10 lines
227 B
JavaScript

const SimpleNodeLogger = require('simple-node-logger');
let opts = {
logFilePath:'mylogfile.log',
timestampFormat:'YYYY-MM-DD HH:mm:ss.SSS'
};
let log = SimpleNodeLogger.createSimpleLogger(opts);
module.exports = log