From 06ae1861ee05a1671defc66534e476b22fee14a3 Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Fri, 3 Apr 2020 15:41:30 +0200 Subject: [PATCH] log: fix showing verbatim %s So turn 'hover in %s 1a5cd940' into 'hover in 1a5cd940' --- modules/UI/videolayout/LargeVideoManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/UI/videolayout/LargeVideoManager.js b/modules/UI/videolayout/LargeVideoManager.js index 2d322b327..999431c68 100644 --- a/modules/UI/videolayout/LargeVideoManager.js +++ b/modules/UI/videolayout/LargeVideoManager.js @@ -184,7 +184,7 @@ export default class LargeVideoManager { this.newStreamData = null; - logger.info('hover in %s', id); + logger.info(`hover in ${id}`); this.state = videoType; // eslint-disable-next-line no-shadow const container = this.getCurrentContainer();