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;