🪵 Logger scaffold

This commit is contained in:
2021-09-16 14:46:01 -07:00
parent 16d9b50f21
commit a74ac6464f
7 changed files with 168 additions and 223 deletions

View File

@@ -22,9 +22,9 @@ export const sendRabbitMQ = (queueName, data) => {
channel.sendToQueue(queue, Buffer.from(data));
logger.info(`${data} sent`);
});
setTimeout(function () {
setTimeout(function() {
connection.close();
//process.exit(0);
// process.exit(0);
}, 500);
});
};