Skip to content

Commit 394b57e

Browse files
evhan55Ray Schamp
authored and
Ray Schamp
committed
Removing some logging.
1 parent f511730 commit 394b57e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/extensions/scratch3_ev3/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ class EV3 {
631631
array[offset + 2],
632632
array[offset + 3]
633633
]);
634-
log.info(`sensor at port ${i} ${this._sensorPorts[i]} value: ${value}`);
634+
// log.info(`sensor at port ${i} ${this._sensorPorts[i]} value: ${value}`);
635635
if (EV_DEVICE_LABELS[this._sensorPorts[i]] === 'button') {
636636
this._sensors.buttons[i] = value;
637637
} else {
@@ -651,7 +651,7 @@ class EV3 {
651651
if (value > 0x7fffffff) {
652652
value = value - 0x100000000;
653653
}
654-
log.info(`motor at port ${i} ${this._motorPorts[i]} value: ${value}`);
654+
// log.info(`motor at port ${i} ${this._motorPorts[i]} value: ${value}`);
655655
this._motorPositions[i] = value;
656656
offset += 4;
657657
}

0 commit comments

Comments
 (0)