We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3782d33 commit 5dd2a2eCopy full SHA for 5dd2a2e
src/js/protocols/WebSerial.js
@@ -229,7 +229,6 @@ class WebSerial extends EventTarget {
229
async readLoop() {
230
try {
231
for await (let value of streamAsyncIterable(this.reader, () => this.reading)) {
232
- console.log(`${logHead} Received data:`, value);
233
this.dispatchEvent(new CustomEvent("receive", { detail: value }));
234
}
235
} catch (error) {
@@ -359,7 +358,6 @@ class WebSerial extends EventTarget {
359
358
360
361
362
- console.log(`${logHead} Sending data:`, data);
363
if (this.isNeedBatchWrite) {
364
await this.batchWrite(data);
365
} else {
0 commit comments