19 lines
387 B
JavaScript
Raw Normal View History

2017-12-24 00:34:47 -05:00
const winston = require('winston')
// ------------------------------------
// Loggly
// ------------------------------------
module.exports = {
init (logger, conf) {
require('winston-loggly-bulk')
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
}))
2017-12-24 00:34:47 -05:00
}
}