Live video on the AT Protocol

remove logging

-4
-4
js/app/components/player/video-retry.tsx
··· 12 12 const retryTimeoutRef = useRef<NodeJS.Timeout | null>(null); 13 13 const segment = useSegment(); 14 14 15 - const status = usePlayerStore((x) => x.status); 16 15 const offline = usePlayerStore((x) => x.offline); 17 16 const spurl = useStreamplaceStore((x) => x.url); 18 - 19 - console.log("Status", status, offline); 20 17 21 18 useEffect(() => { 22 19 if ( ··· 27 24 ) { 28 25 const jitter = 500 + Math.random() * 1500; 29 26 retryTimeoutRef.current = setTimeout(() => { 30 - console.log("Detected new segment and stalled state, retrying video"); 31 27 lastSegmentRef.current = segment?.startTime; 32 28 }, jitter); 33 29 }