diff --git a/src/util/jsonrpc-web-socket.js b/src/util/jsonrpc-web-socket.js index ac118cdff..af5af27e1 100644 --- a/src/util/jsonrpc-web-socket.js +++ b/src/util/jsonrpc-web-socket.js @@ -28,9 +28,6 @@ class JSONRPCWebSocket extends JSONRPC { _onSocketMessage (e) { const json = JSON.parse(e.data); - if (json.method !== 'characteristicDidChange') { - // log.info(`received message: ${json}`); - } this._handleMessage(json); }