bigbluebutton-Github/bigbluebutton-html5/app/server/bbblogger.coffee

18 lines
262 B
CoffeeScript
Raw Normal View History

2014-06-12 03:26:46 +08:00
###
bunyan = Meteor.require 'bunyan'
logger = bunyan.createLogger({
name: 'bbbnode',
streams: [
{
level: 'debug',
stream: process.stdout,
},
{
level: 'info',
path: Meteor.config.log.path
}
]
})
2014-06-25 02:20:18 +08:00
###