From 0a9f629fb46c4005877ab101f3ecc827ddcfd9f3 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 7 Mar 2019 08:26:38 -0500 Subject: [PATCH] Comment out console logs. --- src/extensions/scratch3_microbit/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/extensions/scratch3_microbit/index.js b/src/extensions/scratch3_microbit/index.js index 8c6cd322c..104d26f02 100644 --- a/src/extensions/scratch3_microbit/index.js +++ b/src/extensions/scratch3_microbit/index.js @@ -815,7 +815,7 @@ class Scratch3MicroBitBlocks { this._peripheral.ledMatrixState[4] = (hex >> 20) & 0x1F; this._peripheral.displayMatrix(this._peripheral.ledMatrixState); }).catch(e => { - console.log('*** CATCH DISPLAY_SYMBOL REJECTION'); + // console.log('*** CATCH DISPLAY_SYMBOL REJECTION'); // console.log(e); }); } @@ -843,7 +843,7 @@ class Scratch3MicroBitBlocks { }, yieldDelay); }); }).catch(e => { - console.log('*** CATCH DISPLAY_TEXT REJECTION'); + // console.log('*** CATCH DISPLAY_TEXT REJECTION'); // console.log(e); }); } @@ -859,7 +859,7 @@ class Scratch3MicroBitBlocks { } this._peripheral.displayMatrix(this._peripheral.ledMatrixState); }).catch(e => { - console.log('*** CATCH DISPLAY_CLEAR REJECTION'); + // console.log('*** CATCH DISPLAY_CLEAR REJECTION'); // console.log(e); }); }