lisa-box
Version:
Home automation system L.I.S.A.
22 lines • 714 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const winston = require('winston');
exports.log = {
logger: winston.createLogger({
level: 'debug',
exitOnError: true,
format: winston.format.combine(winston.format.colorize({ all: true }), winston.format.cli()),
transports: [
new winston.transports.Console()
]
}),
pluginLogger: winston.createLogger({
level: 'debug',
exitOnError: true,
format: winston.format.combine(winston.format.colorize({ all: true }), winston.format.cli()),
transports: [
new winston.transports.Console()
]
})
};
//# sourceMappingURL=log.js.map