diff --git a/packager/webSocketProxy.js b/packager/webSocketProxy.js index 0c7d36c20..4f88379b4 100644 --- a/packager/webSocketProxy.js +++ b/packager/webSocketProxy.js @@ -49,10 +49,9 @@ function attachToServer(server, path) { ws.on('message', function(message) { allClientsExcept(ws).forEach(function(cn) { try { - // Sometimes this call throws 'not opened' cn.send(message); } catch(e) { - console.warn('WARN: ' + e.message); + // Sometimes this call throws 'not opened' } }); });