From 342e7856cde34e474339caf9bca5db43416ee601 Mon Sep 17 00:00:00 2001 From: David Baker Date: Wed, 30 Oct 2019 10:38:34 +0000 Subject: [PATCH] Fix call state logging console.log does not work that way --- src/CallHandler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CallHandler.js b/src/CallHandler.js index 3efd800499..bcdf7853fd 100644 --- a/src/CallHandler.js +++ b/src/CallHandler.js @@ -205,7 +205,7 @@ function _setCallListeners(call) { function _setCallState(call, roomId, status) { console.log( - "Call state in %s changed to %s (%s)", roomId, status, (call ? call.call_state : "-"), + `Call state in ${roomId} changed to ${status} (${call ? call.call_state : "-"})`, ); calls[roomId] = call;