cleanup logging

This commit is contained in:
2025-03-15 12:23:49 -05:00
parent 60dd149918
commit 1e605df6c8
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -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;
-1
View File
@@ -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;