bigbluebutton-Github/labs/api/recordings/lib/logger.coffee

20 lines
297 B
CoffeeScript
Raw Normal View History

2014-05-02 21:50:46 +08:00
bunyan = require 'bunyan'
config = require '../config'
logger = bunyan.createLogger({
name: 'bbbnode',
streams: [
{
level: 'debug',
stream: process.stdout,
},
{
level: 'info',
path: config.log.path
}
]
})
module.exports = logger