From ea9af98d1fd0a842ed76d3a7f83767f363bc1b17 Mon Sep 17 00:00:00 2001 From: Laurens Valk Date: Fri, 27 Mar 2026 10:27:23 +0100 Subject: [PATCH] usb/sagas: Drop debug prints. We don't have these for BLE either, and it makes other debugging harder. --- src/usb/sagas.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/usb/sagas.ts b/src/usb/sagas.ts index d10d5133..6855f3e0 100644 --- a/src/usb/sagas.ts +++ b/src/usb/sagas.ts @@ -461,8 +461,6 @@ function* handleUsbConnectPybricks(hotPlugDevice?: USBDevice): Generator { continue; } - console.debug('Received USB message:', result.data); - switch (result.data.getInt8(0)) { case PybricksUsbInEndpointMessageType.Response: yield* put( @@ -509,8 +507,6 @@ function* handleUsbConnectPybricks(hotPlugDevice?: USBDevice): Generator { for (;;) { const action = yield* take(chan); - console.debug('Processing USB action:', action); - if (usbPybricksSubscribe.matches(action)) { const message = new DataView(new ArrayBuffer(2)); message.setUint8(0, PybricksUsbOutEndpointMessageType.Subscribe);