Files
loop-etl-rocketchat/lib/log.js
2026-05-13 20:03:28 +03:00

16 lines
232 B
JavaScript

const bunyan = require('bunyan')
module.exports = bunyan.createLogger({
name: 'mm-etl',
streams: [
{
level: 'info',
stream: process.stdout
},
{
level: 'info',
path: 'mm-etl.log'
}
]
})