2018-09-10 15:39:50 +03:00
|
|
|
const config = require('../../config'),
|
|
|
|
{logging} = require('ghost-ignition');
|
2017-01-23 14:04:01 +03:00
|
|
|
|
|
|
|
module.exports = logging({
|
|
|
|
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'),
|
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
|
|
|
});
|