From 85579b1af88dcd8981b9a1bc02127ec87bba5a1b Mon Sep 17 00:00:00 2001 From: Olivier Verhaegen <56387556+OlivierVerhaegen@users.noreply.github.com> Date: Fri, 9 Jun 2023 11:15:00 +0200 Subject: [PATCH] Subscribe log clarification --- io/stomp/18-stomp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io/stomp/18-stomp.js b/io/stomp/18-stomp.js index f1f92124..db177c40 100644 --- a/io/stomp/18-stomp.js +++ b/io/stomp/18-stomp.js @@ -286,7 +286,7 @@ module.exports = function(RED) { * @param { Function } callback */ node.subscribe = function(queue, acknowledgment, callback) { - node.log(`Subscribing to: ${queue}`); + node.log(`Subscribe to: ${queue}`); if (node.connected && !node.closing) { if (!node.subscriptionIds[queue]) {