2017-12-24 05:34:47 +00:00
|
|
|
const winston = require('winston')
|
|
|
|
|
|
|
|
// ------------------------------------
|
|
|
|
// Papertrail
|
|
|
|
// ------------------------------------
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
key: 'papertrail',
|
|
|
|
title: 'Papertrail',
|
|
|
|
props: ['host', 'port'],
|
|
|
|
init (logger, conf) {
|
|
|
|
require('winston-papertrail').Papertrail // eslint-disable-line no-unused-expressions
|
2018-03-12 04:09:54 +00:00
|
|
|
logger.add(new winston.transports.Papertrail({
|
2017-12-24 05:34:47 +00:00
|
|
|
host: conf.host,
|
|
|
|
port: conf.port,
|
|
|
|
level: 'warn',
|
|
|
|
program: 'wiki.js'
|
2018-03-12 04:09:54 +00:00
|
|
|
}))
|
2017-12-24 05:34:47 +00:00
|
|
|
}
|
|
|
|
}
|