mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 06:52:40 -05:00
Comment out console logs.
This commit is contained in:
parent
43fde03f57
commit
0a9f629fb4
1 changed files with 3 additions and 3 deletions
|
@ -815,7 +815,7 @@ class Scratch3MicroBitBlocks {
|
||||||
this._peripheral.ledMatrixState[4] = (hex >> 20) & 0x1F;
|
this._peripheral.ledMatrixState[4] = (hex >> 20) & 0x1F;
|
||||||
this._peripheral.displayMatrix(this._peripheral.ledMatrixState);
|
this._peripheral.displayMatrix(this._peripheral.ledMatrixState);
|
||||||
}).catch(e => {
|
}).catch(e => {
|
||||||
console.log('*** CATCH DISPLAY_SYMBOL REJECTION');
|
// console.log('*** CATCH DISPLAY_SYMBOL REJECTION');
|
||||||
// console.log(e);
|
// console.log(e);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -843,7 +843,7 @@ class Scratch3MicroBitBlocks {
|
||||||
}, yieldDelay);
|
}, yieldDelay);
|
||||||
});
|
});
|
||||||
}).catch(e => {
|
}).catch(e => {
|
||||||
console.log('*** CATCH DISPLAY_TEXT REJECTION');
|
// console.log('*** CATCH DISPLAY_TEXT REJECTION');
|
||||||
// console.log(e);
|
// console.log(e);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -859,7 +859,7 @@ class Scratch3MicroBitBlocks {
|
||||||
}
|
}
|
||||||
this._peripheral.displayMatrix(this._peripheral.ledMatrixState);
|
this._peripheral.displayMatrix(this._peripheral.ledMatrixState);
|
||||||
}).catch(e => {
|
}).catch(e => {
|
||||||
console.log('*** CATCH DISPLAY_CLEAR REJECTION');
|
// console.log('*** CATCH DISPLAY_CLEAR REJECTION');
|
||||||
// console.log(e);
|
// console.log(e);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue