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