summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--worker.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/worker.js b/worker.js
index 05d46dc..d90f1d4 100644
--- a/worker.js
+++ b/worker.js
@@ -43,6 +43,8 @@ amqp.connect(RABBITMQ_URI).then(async (rabbit) => {
await ch.assertQueue(PROCESS_QUEUE, { durable: true });
await ch.prefetch(1); // 1 worker = 1 grab job
+ logger.info("configuration", { QUEUE, PROCESS_QUEUE });
+
// main queue
ch.consume(QUEUE, async (msg) => {
try {