remove logging

This commit is contained in:
Eric Rosenbaum 2018-07-09 11:35:59 -04:00 committed by Ray Schamp
parent b30092e890
commit e02dd35dbf

View file

@ -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);
}