2017-12-24 00:34:47 -05:00
|
|
|
const winston = require('winston')
|
|
|
|
|
|
|
|
// ------------------------------------
|
|
|
|
// Loggly
|
|
|
|
// ------------------------------------
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
init (logger, conf) {
|
|
|
|
require('winston-loggly-bulk')
|
2018-03-12 00:09:54 -04:00
|
|
|
logger.add(new winston.transports.Loggly({
|
2017-12-24 00:34:47 -05:00
|
|
|
token: conf.token,
|
|
|
|
subdomain: conf.subdomain,
|
|
|
|
tags: ['wiki-js'],
|
|
|
|
level: 'warn',
|
|
|
|
json: true
|
2018-03-12 00:09:54 -04:00
|
|
|
}))
|
2017-12-24 00:34:47 -05:00
|
|
|
}
|
|
|
|
}
|