2020-05-28 21:30:23 +03:00
|
|
|
const config = require('./config');
|
2020-04-29 18:44:27 +03:00
|
|
|
const {logging} = require('ghost-ignition');
|
2017-01-23 14:04:01 +03:00
|
|
|
|
|
|
|
module.exports = logging({
|
2019-04-16 14:04:15 +03:00
|
|
|
name: config.get('logging:name'),
|
2017-01-23 14:04:01 +03:00
|
|
|
env: config.get('env'),
|
|
|
|
path: config.get('logging:path') || config.getContentPath('logs'),
|
2017-02-17 17:29:25 +03:00
|
|
|
domain: config.get('url'),
|
2017-01-23 14:04:01 +03:00
|
|
|
mode: config.get('logging:mode'),
|
|
|
|
level: config.get('logging:level'),
|
|
|
|
transports: config.get('logging:transports'),
|
2019-04-16 14:04:15 +03:00
|
|
|
gelf: config.get('logging:gelf'),
|
2017-02-17 20:24:14 +03:00
|
|
|
loggly: config.get('logging:loggly'),
|
|
|
|
rotation: config.get('logging:rotation')
|
2017-01-23 14:04:01 +03:00
|
|
|
});
|