Updated logging.js to read config.app

This commit is contained in:
chris062689 2017-08-06 21:11:09 -04:00
parent abf019ccb0
commit 23f2e06b55
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,6 @@
{ {
"app": "discord-bot",
"logdnaKey": "", "logdnaKey": "",
"enableLogdnaLogging": false, "enableLogdnaLogging": false,
"enableConsoleLogging": true, "enableConsoleLogging": true,

View File

@ -26,7 +26,7 @@ if (config.enableLogdnaLogging === true && config.logdnaKey) {
key: config.logdnaKey, key: config.logdnaKey,
ip: ip.address(), ip: ip.address(),
hostname: os.hostname(), hostname: os.hostname(),
app: 'services-services' app: config.app
}); });
logger.debug('[logging] Started LogDNA winston transport.'); logger.debug('[logging] Started LogDNA winston transport.');
} else if (config.enableLogdna === true) { } else if (config.enableLogdna === true) {