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

16 lines
258 B
JavaScript

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