PLase jshint

This commit is contained in:
Daniel García Aubert 2019-03-26 18:57:49 +01:00
parent b222dd15c0
commit b314acf5b5

4
app.js
View File

@ -228,7 +228,7 @@ function getGCTypeValue (type) {
return value; return value;
} }
addHandlers(listener, logger, 45000); addHandlers(listener, global.logger, 45000);
function addHandlers(listener, logger, killTimeout) { function addHandlers(listener, logger, killTimeout) {
process.on('uncaughtException', exitProcess(listener, logger, killTimeout)); process.on('uncaughtException', exitProcess(listener, logger, killTimeout));
@ -255,7 +255,7 @@ function exitProcess (listener, logger, killTimeout) {
} }
logger.info(`Process is going to exit with code: ${code}`); logger.info(`Process is going to exit with code: ${code}`);
listener.close(() => log4js.shutdown(() => process.exit(1))); listener.close(() => global.log4js.shutdown(() => process.exit(1)));
}; };
} }