bigbluebutton-Github/client/bbb-html5-client/lib/bbblogger.coffee

20 lines
297 B
CoffeeScript
Raw Normal View History

2014-04-14 07:39:18 +08:00
bunyan = require 'bunyan'
2014-04-24 04:39:42 +08:00
config = require '../config'
2014-04-14 07:39:18 +08:00
logger = bunyan.createLogger({
name: 'bbbnode',
streams: [
{
level: 'debug',
stream: process.stdout,
},
{
level: 'info',
2014-04-24 04:39:42 +08:00
path: config.log.path
2014-04-14 07:39:18 +08:00
}
]
2014-04-24 04:39:42 +08:00
})
2014-04-14 07:39:18 +08:00
2014-04-24 04:39:42 +08:00
module.exports = logger