From 394b57ebb68923778e7bd2effadb75924bc275d8 Mon Sep 17 00:00:00 2001 From: Evelyn Eastmond Date: Tue, 3 Jul 2018 15:03:42 -0400 Subject: [PATCH] Removing some logging. --- src/extensions/scratch3_ev3/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/extensions/scratch3_ev3/index.js b/src/extensions/scratch3_ev3/index.js index 875ef1f9a..8bf20dca4 100644 --- a/src/extensions/scratch3_ev3/index.js +++ b/src/extensions/scratch3_ev3/index.js @@ -631,7 +631,7 @@ class EV3 { array[offset + 2], array[offset + 3] ]); - log.info(`sensor at port ${i} ${this._sensorPorts[i]} value: ${value}`); + // log.info(`sensor at port ${i} ${this._sensorPorts[i]} value: ${value}`); if (EV_DEVICE_LABELS[this._sensorPorts[i]] === 'button') { this._sensors.buttons[i] = value; } else { @@ -651,7 +651,7 @@ class EV3 { if (value > 0x7fffffff) { value = value - 0x100000000; } - log.info(`motor at port ${i} ${this._motorPorts[i]} value: ${value}`); + // log.info(`motor at port ${i} ${this._motorPorts[i]} value: ${value}`); this._motorPositions[i] = value; offset += 4; }