From 3acf2b08043686201054f679c480157a0a41f15b Mon Sep 17 00:00:00 2001 From: bgrozev Date: Wed, 4 Oct 2023 15:19:28 -0500 Subject: [PATCH] log: Fix formatting of log message. (#2365) --- modules/xmpp/moderator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/xmpp/moderator.js b/modules/xmpp/moderator.js index 402a689453..8c0224aa45 100644 --- a/modules/xmpp/moderator.js +++ b/modules/xmpp/moderator.js @@ -391,7 +391,7 @@ export default class Moderator extends Listenable { // we want to ignore redirects when this is jibri (record/live-stream or a sip jibri) if (conferenceRequest.vnode && !this.options.iAmRecorder && !this.options.iAmSipGateway) { - logger.warn(`Redirected to: ${conferenceRequest.vnode} with focusJid ${conferenceRequest.focusJid} }`); + logger.warn(`Redirected to: ${conferenceRequest.vnode} with focusJid ${conferenceRequest.focusJid}`); this.xmpp.eventEmitter.emit(CONNECTION_REDIRECTED, conferenceRequest.vnode, conferenceRequest.focusJid);