mirror of
https://github.com/jwetzell/rttrp-js.git
synced 2026-09-10 08:29:36 +00:00
cleanup logging
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user