From 1e605df6c8e139f17fc9a958d396803f80bf955c Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Sat, 15 Mar 2025 12:23:49 -0500 Subject: [PATCH] cleanup logging --- src/decoders/lighting/spot.ts | 1 - src/decoders/lighting/universe.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/src/decoders/lighting/spot.ts b/src/decoders/lighting/spot.ts index d522c9f..9cf3d3b 100644 --- a/src/decoders/lighting/spot.ts +++ b/src/decoders/lighting/spot.ts @@ -28,7 +28,6 @@ export default (bytes: Uint8Array, isLittleEndian: boolean = false): Spot => { for (let index = 0; index < numberOfChannelBlocks; index++) { const channelBlockData = bytes.subarray(zoneObjectOffset, zoneObjectOffset + 5); - console.log(channelBlockData); const channelBlock = Decoders.ChannelBlock(channelBlockData); channelBlocks.push(channelBlock); zoneObjectOffset += channelBlockData.byteLength; diff --git a/src/decoders/lighting/universe.ts b/src/decoders/lighting/universe.ts index 392dbe8..eec9de5 100644 --- a/src/decoders/lighting/universe.ts +++ b/src/decoders/lighting/universe.ts @@ -26,7 +26,6 @@ export default (bytes: Uint8Array, isLittleEndian: boolean = false): Universe => for (let index = 0; index < numberOfSpots; index++) { const spotData = bytes.subarray(spotOffset); - console.log(spotData); const spot = Decoders.Spot(spotData); spots.push(spot); spotOffset += spot.size;