mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
804 B
30 lines
804 B
const util = require('util')
|
|
const winston = require('winston')
|
|
const _ = require('lodash')
|
|
|
|
// ------------------------------------
|
|
// Bugsnag
|
|
// ------------------------------------
|
|
|
|
module.exports = {
|
|
init (logger, conf) {
|
|
let BugsnagLogger = winston.transports.BugsnagLogger = function (options) {
|
|
this.name = 'bugsnagLogger'
|
|
this.level = options.level || 'warn'
|
|
this.bugsnag = require('bugsnag')
|
|
this.bugsnag.register(options.key)
|
|
}
|
|
util.inherits(BugsnagLogger, winston.Transport)
|
|
|
|
BugsnagLogger.prototype.log = function (level, msg, meta, callback) {
|
|
this.bugsnag.notify(new Error(msg), _.assignIn(meta, { severity: level }))
|
|
callback(null, true)
|
|
}
|
|
|
|
logger.add(new BugsnagLogger({
|
|
level: 'warn',
|
|
key: conf.key
|
|
}))
|
|
}
|
|
}
|