From 22cc341ec468d3eed187ba721ceb3c494a1f1090 Mon Sep 17 00:00:00 2001 From: Harshit Date: Thu, 27 Aug 2026 12:53:36 +0530 Subject: [PATCH 1/2] test(media): add real media-plane fan-out capacity test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Puppeteer test that ramps real-media viewers against one broadcaster and samples inbound-rtp getStats (bitrate, packet loss, jitter, fps) to find the actual SFU media ceiling — the signaling load test only covers the control plane. - load-test/media-fanout-capacity.js — getStats via RTCPeerConnection hook; per-batch CSV - load-test/results/MEDIA-FANOUT-CAPACITY.md — method, run, interpretation, caveats Authored by Claude (Anthropic) via Claude Code. Not executed against a live backend — the results section is a placeholder, not fabricated. Co-Authored-By: Claude Opus 4.8 (1M context) --- load-test/media-fanout-capacity.js | 778 +++++++++++++++++++++ load-test/results/MEDIA-FANOUT-CAPACITY.md | 175 +++++ 2 files changed, 953 insertions(+) create mode 100644 load-test/media-fanout-capacity.js create mode 100644 load-test/results/MEDIA-FANOUT-CAPACITY.md diff --git a/load-test/media-fanout-capacity.js b/load-test/media-fanout-capacity.js new file mode 100644 index 0000000..fc1edf4 --- /dev/null +++ b/load-test/media-fanout-capacity.js @@ -0,0 +1,778 @@ +/* + * media-fanout-capacity.js + * + * Purpose: + * Measure the REAL media-plane ceiling of the CrowdStream SFU (mediasoup), + * not just the signaling / control path. One broadcaster streams fake media; + * viewers ramp up in batches. For every viewer we measure join and + * first-frame latency AND sample inbound video getStats (bitrate, + * packet-loss %, jitter, fps, resolution). + * + * getStats is captured WITHOUT any frontend changes: we use + * evaluateOnNewDocument to wrap window.RTCPeerConnection in each headless + * tab so every PeerConnection the app constructs is pushed into + * window.__csPCs. We then iterate those PCs and read their inbound-rtp + * reports directly. + * + * As viewers climb, the ceiling reveals itself as falling bitrate/fps, + * rising packet loss, or climbing join / first-frame failures. + * + * Authored by Claude (Anthropic), via Claude Code — 2026-08-27. + */ + +const puppeteer = require("puppeteer"); +const fs = require("fs"); + +/* + * --------------------------------------------------------- + * CLI ARGS + * --------------------------------------------------------- + */ + +function arg(name, def) { + const i = process.argv.indexOf(`--${name}`); + if (i === -1) return def; + return process.argv[i + 1]; +} + +const BASE_URL = arg("baseUrl", "http://localhost"); + +const BATCH_SIZE = parseInt(arg("batchSize", "5"), 10); +const BATCH_INTERVAL_MS = parseInt( + arg("batchIntervalMs", "10000"), + 10 +); +const MAX_VIEWERS = parseInt(arg("maxViewers", "100"), 10); +const STATS_SETTLE_MS = parseInt( + arg("statsSettleMs", "2000"), + 10 +); + +const OUT_CSV = arg("out", "media-fanout-results.csv"); + +const WAIT_TIMEOUT_MS = 20000; +let failures = 0; + +/* + * Credentials. + * + * Read from --email / --password OR the environment. NEVER hardcode + * credentials in this file. + */ + +const TEST_EMAIL = arg("email", process.env.CROWDSTREAM_TEST_EMAIL); +const TEST_PASSWORD = arg( + "password", + process.env.CROWDSTREAM_TEST_PASSWORD +); + +if (!TEST_EMAIL || !TEST_PASSWORD) { + console.error( + "Missing broadcaster credentials.\n" + + "Pass --email --password

, or set the environment variables\n" + + "CROWDSTREAM_TEST_EMAIL and CROWDSTREAM_TEST_PASSWORD." + ); + process.exit(1); +} + +const CHROME_FLAGS = [ + "--use-fake-device-for-media-stream", + "--use-fake-ui-for-media-stream", + "--disable-gpu", + "--no-sandbox", + "--mute-audio", +]; + +const sleep = (ms) => + new Promise((resolve) => setTimeout(resolve, ms)); + +/* + * --------------------------------------------------------- + * PERCENTILE / MEAN + * --------------------------------------------------------- + */ + +function percentile(values, p) { + if (!values.length) return null; + + const index = Math.ceil((p / 100) * values.length) - 1; + + return values[ + Math.min(Math.max(index, 0), values.length - 1) + ]; +} + +function mean(values) { + const clean = values.filter((n) => Number.isFinite(n)); + if (!clean.length) return null; + return clean.reduce((a, b) => a + b, 0) / clean.length; +} + +/* + * --------------------------------------------------------- + * LOGIN + * --------------------------------------------------------- + */ + +async function login(page) { + await page.goto(`${BASE_URL}/signin`, { + waitUntil: "networkidle2", + timeout: 30000, + }); + + await page.waitForSelector("#email", { + timeout: WAIT_TIMEOUT_MS, + }); + + await page.type("#email", TEST_EMAIL); + await page.type("#password", TEST_PASSWORD); + + await page.click('button[type="submit"]'); + + // SignInPage navigates to /dashboard after successful sign-in. + await page.waitForFunction( + () => window.location.pathname === "/dashboard", + { timeout: WAIT_TIMEOUT_MS } + ); + + await page.waitForFunction( + () => + window.__csSocket && + window.__csSocket.connected === true, + { timeout: WAIT_TIMEOUT_MS } + ); +} + +/* + * --------------------------------------------------------- + * getStats HOOK + * + * Wrap window.RTCPeerConnection so every PC the app constructs is pushed + * into window.__csPCs. Installed via evaluateOnNewDocument so it runs before + * any page script on every navigation of the tab (signin -> dashboard -> + * viewer). No frontend changes required. + * --------------------------------------------------------- + */ + +async function installPeerConnectionHook(page) { + await page.evaluateOnNewDocument(() => { + window.__csPCs = []; + + const Native = + window.RTCPeerConnection || + window.webkitRTCPeerConnection; + + if (!Native) return; + + const Wrapped = new Proxy(Native, { + construct(target, args) { + const pc = new target(...args); + try { + window.__csPCs.push(pc); + } catch (e) {} + return pc; + }, + }); + + window.RTCPeerConnection = Wrapped; + window.webkitRTCPeerConnection = Wrapped; + }); +} + +/* + * Take one snapshot of inbound-rtp (video + audio) across every PC in the + * tab. Returns { ts, reports } where ts is the in-page wall clock so bitrate + * deltas are measured against the moment the sample was actually read. + */ + +async function sampleInboundRtp(page) { + return await page.evaluate(async () => { + const pcs = window.__csPCs || []; + const reports = []; + + for (const pc of pcs) { + let stats; + try { + stats = await pc.getStats(); + } catch (e) { + continue; + } + + stats.forEach((report) => { + if ( + report.type === "inbound-rtp" && + (report.kind === "video" || + report.kind === "audio") + ) { + reports.push({ + kind: report.kind, + bytesReceived: report.bytesReceived || 0, + packetsReceived: report.packetsReceived || 0, + packetsLost: report.packetsLost || 0, + jitter: report.jitter || 0, + framesPerSecond: report.framesPerSecond || 0, + frameWidth: report.frameWidth || 0, + frameHeight: report.frameHeight || 0, + }); + } + }); + } + + return { ts: Date.now(), reports }; + }); +} + +/* + * Two samples, STATS_SETTLE_MS apart, reduced to per-viewer video metrics. + * bitrateKbps is the delta of bytesReceived across the two samples; + * lossPct = packetsLost / (packetsLost + packetsReceived). + */ + +async function measureVideoStats(page) { + const empty = { + bitrateKbps: null, + lossPct: null, + fps: null, + frameWidth: null, + frameHeight: null, + }; + + let sample1; + try { + sample1 = await sampleInboundRtp(page); + } catch (e) { + return empty; + } + + await sleep(STATS_SETTLE_MS); + + let sample2; + try { + sample2 = await sampleInboundRtp(page); + } catch (e) { + return empty; + } + + const video1 = sample1.reports.filter( + (r) => r.kind === "video" + ); + const video2 = sample2.reports.filter( + (r) => r.kind === "video" + ); + + if (!video2.length) return empty; + + const bytes1 = video1.reduce( + (a, r) => a + r.bytesReceived, + 0 + ); + const bytes2 = video2.reduce( + (a, r) => a + r.bytesReceived, + 0 + ); + + const deltaMs = sample2.ts - sample1.ts; + + // bytes * 8 = bits; bits / ms == kbits / s == kbps. + const bitrateKbps = + deltaMs > 0 + ? ((bytes2 - bytes1) * 8) / deltaMs + : null; + + const packetsLost = video2.reduce( + (a, r) => a + r.packetsLost, + 0 + ); + const packetsReceived = video2.reduce( + (a, r) => a + r.packetsReceived, + 0 + ); + + const lossDenom = packetsLost + packetsReceived; + const lossPct = + lossDenom > 0 + ? (packetsLost / lossDenom) * 100 + : null; + + const fps = + video2.reduce( + (a, r) => a + (r.framesPerSecond || 0), + 0 + ) / video2.length; + + // Largest reported frame wins as the "resolution" for this viewer. + const main = video2 + .slice() + .sort( + (a, b) => + b.frameWidth * b.frameHeight - + a.frameWidth * a.frameHeight + )[0]; + + return { + bitrateKbps, + lossPct, + fps: Number.isFinite(fps) ? fps : null, + frameWidth: main ? main.frameWidth : null, + frameHeight: main ? main.frameHeight : null, + }; +} + +/* + * --------------------------------------------------------- + * BROADCASTER + * --------------------------------------------------------- + */ + +async function launchBroadcaster(browser) { + const context = browser.defaultBrowserContext(); + + await context.overridePermissions(BASE_URL, [ + "camera", + "microphone", + ]); + + const page = await browser.newPage(); + + page.on("pageerror", (error) => { + console.error( + `[BROADCASTER PAGE ERROR] ${error.message}` + ); + }); + + await login(page); + + console.log( + `Opening broadcaster: ${BASE_URL}/broadcaster` + ); + + await page.goto(`${BASE_URL}/broadcaster`, { + waitUntil: "networkidle2", + timeout: 30000, + }); + + /* + * Make sure the "Go live" button actually exists. + */ + + await page.waitForFunction( + () => + Array.from( + document.querySelectorAll("button") + ).some((button) => + button.textContent?.includes("Go live") + ), + { timeout: WAIT_TIMEOUT_MS } + ); + + console.log('"Go live" button found.'); + + /* + * Click "Go live". + */ + + await page.evaluate(() => { + const button = Array.from( + document.querySelectorAll("button") + ).find((button) => + button.textContent?.includes("Go live") + ); + + if (!button) { + throw new Error("Go live button disappeared"); + } + + button.click(); + }); + + console.log('Clicked "Go live".'); + + /* + * BroadcasterPage sets window.__csRoomId after createRoom() succeeds, + * then window.__csLiveAt once media is flowing. + */ + + await page.waitForFunction( + () => Boolean(window.__csRoomId), + { timeout: WAIT_TIMEOUT_MS } + ); + + const roomId = await page.evaluate( + () => window.__csRoomId + ); + + console.log(`ROOM CREATED. Room ID: ${roomId}`); + + try { + await page.waitForFunction( + () => Boolean(window.__csLiveAt), + { timeout: WAIT_TIMEOUT_MS } + ); + + console.log("Broadcaster is LIVE."); + } catch { + console.warn( + "Room exists, but __csLiveAt was not detected." + ); + } + + return { page, roomId }; +} + +/* + * --------------------------------------------------------- + * VIEWER + * --------------------------------------------------------- + */ + +async function launchViewer(browser, roomId, index) { + const page = await browser.newPage(); + + page.on("pageerror", (error) => { + console.error( + `[VIEWER ${index} PAGE ERROR] ${error.message}` + ); + }); + + // Hook must be installed BEFORE any navigation so it captures the + // consumer PeerConnection the viewer page builds. + await installPeerConnectionHook(page); + + await login(page); + + const startTime = Date.now(); + + try { + await page.goto( + `${BASE_URL}/viewer?roomId=${roomId}`, + { + waitUntil: "domcontentloaded", + timeout: 30000, + } + ); + + await page.waitForSelector("form", { + timeout: WAIT_TIMEOUT_MS, + }); + + /* + * Submit the viewer form. + */ + + await page.$eval("form", (form) => { + form.requestSubmit(); + }); + + /* + * Wait for the ViewerPage join marker. + */ + + let joinedAt = null; + + try { + await page.waitForFunction( + () => Boolean(window.__csJoinedAt), + { timeout: WAIT_TIMEOUT_MS } + ); + + joinedAt = await page.evaluate( + () => window.__csJoinedAt + ); + } catch {} + + /* + * Wait for the actual first video frame. + */ + + let firstFrameAt = null; + + try { + await page.waitForFunction( + () => Boolean(window.__csFirstFrameAt), + { timeout: WAIT_TIMEOUT_MS } + ); + + firstFrameAt = await page.evaluate( + () => window.__csFirstFrameAt + ); + } catch {} + + /* + * Sample inbound video getStats under the CURRENT load. + */ + + const stats = await measureVideoStats(page); + + return { + index, + page, + + joined: Boolean(joinedAt), + + joinLatencyMs: joinedAt + ? joinedAt - startTime + : null, + + firstFrameLatencyMs: firstFrameAt + ? firstFrameAt - startTime + : null, + + bitrateKbps: stats.bitrateKbps, + lossPct: stats.lossPct, + fps: stats.fps, + frameWidth: stats.frameWidth, + frameHeight: stats.frameHeight, + + error: null, + }; + } catch (error) { + return { + index, + page, + + joined: false, + + joinLatencyMs: null, + firstFrameLatencyMs: null, + + bitrateKbps: null, + lossPct: null, + fps: null, + frameWidth: null, + frameHeight: null, + + error: error.message, + }; + } +} + +/* + * --------------------------------------------------------- + * MAIN + * --------------------------------------------------------- + */ + +async function main() { + console.log( + "========================================" + ); + console.log("CrowdStream MEDIA-FANOUT CAPACITY TEST"); + console.log( + "========================================" + ); + console.log(`Frontend: ${BASE_URL}`); + console.log(`Batch size: ${BATCH_SIZE}`); + console.log(`Batch interval: ${BATCH_INTERVAL_MS}ms`); + console.log(`Max viewers: ${MAX_VIEWERS}`); + console.log(`Stats settle: ${STATS_SETTLE_MS}ms`); + console.log(""); + + const browser = await puppeteer.launch({ + headless: true, + protocolTimeout: 120000, + args: CHROME_FLAGS, + }); + + try { + /* + * STEP 1: create a REAL broadcaster. + */ + + const broadcaster = await launchBroadcaster(browser); + const roomId = broadcaster.roomId; + + /* + * Give mediasoup a moment to stabilize. + */ + + console.log("\nWaiting 5 seconds for media..."); + await sleep(5000); + + /* + * CSV. + */ + + const csvRows = [ + [ + "timestamp", + "viewers", + "joinP50", + "joinP99", + "firstFrameP50", + "firstFrameP99", + "meanBitrateKbps", + "meanLossPct", + "meanFps", + "failures", + ].join(","), + ]; + + const viewers = []; + + /* + * STEP 2: add viewers in batches. + */ + + for ( + let target = BATCH_SIZE; + target <= MAX_VIEWERS; + target += BATCH_SIZE + ) { + console.log( + `\n========================================` + ); + console.log(`ADDING VIEWERS: ${target}`); + console.log( + `========================================` + ); + + const batch = await Promise.all( + Array.from({ length: BATCH_SIZE }, (_, index) => + launchViewer( + browser, + roomId, + viewers.length + index + ) + ) + ); + + viewers.push(...batch); + + /* + * Join latency. + */ + + const joinLatencies = batch + .map((viewer) => viewer.joinLatencyMs) + .filter(Number.isFinite) + .sort((a, b) => a - b); + + /* + * First frame latency. + */ + + const firstFrameLatencies = batch + .map((viewer) => viewer.firstFrameLatencyMs) + .filter(Number.isFinite) + .sort((a, b) => a - b); + + /* + * Media-plane means for this batch. + */ + + const meanBitrate = mean( + batch.map((viewer) => viewer.bitrateKbps) + ); + const meanLoss = mean( + batch.map((viewer) => viewer.lossPct) + ); + const meanFps = mean( + batch.map((viewer) => viewer.fps) + ); + + const failed = batch.filter( + (viewer) => !viewer.joined + ).length; + + failures += failed; + + const joinP50 = percentile(joinLatencies, 50); + const joinP99 = percentile(joinLatencies, 99); + const frameP50 = percentile( + firstFrameLatencies, + 50 + ); + const frameP99 = percentile( + firstFrameLatencies, + 99 + ); + + console.log(`\nViewers: ${viewers.length}`); + console.log(`Join P50: ${joinP50 ?? "n/a"} ms`); + console.log(`Join P99: ${joinP99 ?? "n/a"} ms`); + console.log( + `First frame P50: ${frameP50 ?? "n/a"} ms` + ); + console.log( + `First frame P99: ${frameP99 ?? "n/a"} ms` + ); + console.log( + `Mean bitrate: ${ + meanBitrate != null + ? meanBitrate.toFixed(1) + : "n/a" + } kbps` + ); + console.log( + `Mean loss: ${ + meanLoss != null + ? meanLoss.toFixed(2) + : "n/a" + } %` + ); + console.log( + `Mean fps: ${ + meanFps != null ? meanFps.toFixed(1) : "n/a" + }` + ); + console.log(`Failures: ${failures}`); + + /* + * Save results after every batch. + */ + + csvRows.push( + [ + new Date().toISOString(), + viewers.length, + joinP50 ?? "n/a", + joinP99 ?? "n/a", + frameP50 ?? "n/a", + frameP99 ?? "n/a", + meanBitrate != null + ? meanBitrate.toFixed(1) + : "n/a", + meanLoss != null + ? meanLoss.toFixed(2) + : "n/a", + meanFps != null + ? meanFps.toFixed(1) + : "n/a", + failures, + ].join(",") + ); + + fs.writeFileSync(OUT_CSV, csvRows.join("\n")); + + /* + * Wait before next batch. + */ + + if (target < MAX_VIEWERS) { + console.log( + `\nWaiting ${ + BATCH_INTERVAL_MS / 1000 + } seconds...` + ); + await sleep(BATCH_INTERVAL_MS); + } + } + + console.log( + `\n========================================` + ); + console.log("MEDIA-FANOUT TEST COMPLETE"); + console.log(`Results: ${OUT_CSV}`); + console.log( + `========================================` + ); + } finally { + await browser.close(); + } +} + +main().catch((error) => { + console.error("\nTEST FAILED:"); + console.error(error); + process.exit(1); +}); diff --git a/load-test/results/MEDIA-FANOUT-CAPACITY.md b/load-test/results/MEDIA-FANOUT-CAPACITY.md new file mode 100644 index 0000000..e8e11b4 --- /dev/null +++ b/load-test/results/MEDIA-FANOUT-CAPACITY.md @@ -0,0 +1,175 @@ +# Media-Fanout Capacity Testing + +> **Authored by Claude (Anthropic), via Claude Code — 2026-08-27.** +> Both this document and the accompanying `media-fanout-capacity.js` script were written by Claude. + +**Roadmap gap: media-plane capacity** (control-plane is already covered by the signaling load test — see `results/SIGNALING.MD`). + +The signaling test proves the SFU can accept thousands of viewers through the +control path (`joinRoom` → `createViewerTransport` → `connectConsumerTransport` +→ `consume` → `resumeConsumer`). It does **not** prove that media actually +flows to those viewers at a usable bitrate. This test closes that gap: it +measures the real media plane. + +## What it tests + +One broadcaster streams fake media; viewers ramp up in batches. Each new batch +of viewers joins under the load created by every viewer already connected, so +the SFU's fan-out cost accumulates as the run progresses. + +``` +launchBroadcaster (Go live -> __csRoomId -> __csLiveAt) + | + v + ramp viewers in batches of --batchSize + | + v + per viewer: join (__csJoinedAt) + first frame (__csFirstFrameAt) + inbound-rtp getStats sample x2 (--statsSettleMs apart) + | + v + aggregate per batch -> append CSV row -> wait --batchIntervalMs +``` + +For every viewer we capture: + +- **Join latency** — form submit → `window.__csJoinedAt`. +- **First-frame latency** — form submit → `window.__csFirstFrameAt`. +- **Inbound video getStats** — bitrate (kbps), packet-loss %, jitter, fps, and + resolution (frame width × height). + +### The getStats hook (no frontend changes) + +The frontend does not expose `getStats` output, and we do not modify it. Instead +the script uses Puppeteer's `page.evaluateOnNewDocument(...)` to wrap +`window.RTCPeerConnection` **before any page script runs**, on every navigation +of the tab (signin → dashboard → viewer). Every PeerConnection the app +constructs is pushed into `window.__csPCs`: + +```js +const Wrapped = new Proxy(Native, { + construct(target, args) { + const pc = new target(...args); + window.__csPCs.push(pc); + return pc; + }, +}); +window.RTCPeerConnection = Wrapped; +``` + +To sample, the script iterates `window.__csPCs`, calls `await pc.getStats()`, +and collects `inbound-rtp` reports (`kind: "video" | "audio"`), reading +`bytesReceived, packetsReceived, packetsLost, jitter, framesPerSecond, +frameWidth, frameHeight`. + +- **Bitrate (kbps)** = delta of `bytesReceived` across two samples taken + `--statsSettleMs` apart: `(deltaBytes * 8) / deltaMs`. +- **Packet-loss %** = `packetsLost / (packetsLost + packetsReceived) * 100`. +- **fps / resolution** are read from the latest (second) video report. + +## Prerequisites + +- **Puppeteer** — already installed in `load-test/node_modules`; no extra install. +- **A broadcaster-capable account** — the credentials must be able to open + `/broadcaster` and click "Go live". Supplied via `--email`/`--password` or the + environment variables `CROWDSTREAM_TEST_EMAIL` / `CROWDSTREAM_TEST_PASSWORD`. + Credentials are never hardcoded; the script exits with an error if they are + missing. +- **A running CrowdStream frontend + backend** reachable at `--baseUrl`. +- **CPU headroom on the client.** Each viewer is a real headless Chrome tab + decoding real video. The client browser fleet is **CPU-bound**, so large runs + (hundreds of viewers) must be spread across **multiple machines** — otherwise + you are measuring the load generator, not the SFU. + +## How to run + +```bash +cd load-test + +export CROWDSTREAM_TEST_EMAIL="broadcaster@example.com" +export CROWDSTREAM_TEST_PASSWORD="••••••••" + +node media-fanout-capacity.js \ + --baseUrl http://localhost \ + --batchSize 5 \ + --batchIntervalMs 10000 \ + --maxViewers 100 \ + --statsSettleMs 2000 \ + --out media-fanout-results.csv +``` + +Credentials may instead be passed inline with `--email` / `--password`. + +### Arguments + +| Arg | Default | Meaning | +|---|---|---| +| `--baseUrl` | `http://localhost` | Frontend base URL. | +| `--batchSize` | `5` | Viewers added per batch. | +| `--batchIntervalMs` | `10000` | Wait between batches (ms). | +| `--maxViewers` | `100` | Stop after this many total viewers. | +| `--statsSettleMs` | `2000` | Gap between the two getStats samples (ms) used for the bitrate delta. | +| `--out` | `media-fanout-results.csv` | CSV output path (rewritten after each batch). | +| `--email` | env `CROWDSTREAM_TEST_EMAIL` | Broadcaster login email. | +| `--password` | env `CROWDSTREAM_TEST_PASSWORD` | Broadcaster login password. | + +### CSV output + +One row per batch: + +``` +timestamp,viewers,joinP50,joinP99,firstFrameP50,firstFrameP99,meanBitrateKbps,meanLossPct,meanFps,failures +``` + +`viewers` and `failures` are cumulative; the latency percentiles and the +`meanBitrateKbps` / `meanLossPct` / `meanFps` columns describe the batch that +just joined (i.e. the newest viewers experiencing the current, highest load). + +## Interpreting results — spotting the ceiling + +The media-plane ceiling is **not** a single hard cliff; it shows up as +degradation across several columns as `viewers` climbs: + +- **`meanBitrateKbps` falls** — the SFU (or the client) can no longer push full + video to each viewer; per-viewer bitrate is being starved. +- **`meanFps` drops** below the source frame rate — frames are being dropped + end-to-end. +- **`meanLossPct` rises** above ~1–2% — packets are being lost on the media + path. +- **`firstFrameP99` climbs** sharply — new viewers wait longer (or time out) + before the first decoded frame. +- **`failures` increases** — viewers no longer reach `__csJoinedAt` / + `__csFirstFrameAt` at all. + +The **knee** is the viewer count where bitrate/fps start dropping and loss/ +failures start rising together. That is the practical media-plane capacity for +the tested hardware. If none of these degrade up to `--maxViewers`, raise +`--maxViewers` (and add client machines) until they do. + +## Caveats + +- **The client CPU is usually the bottleneck first.** These are real Chrome tabs + decoding real video. Before trusting a ceiling, confirm the load-generator + host is not CPU-saturated; if it is, the degradation is on the client, not the + SFU. Spread viewers across multiple machines and re-run. +- **These are client-observed numbers.** For **authoritative server-side** + bitrate / loss / jitter / fps, wire up the backend's own `getStats()` path — + `backend/src/utils/sendMetrics.ts` already sketches exactly this + (bandwidth, packet loss, jitter, frame rate, resolution) but is **currently + commented out** in its entirety. Enabling it would let the server report the + media plane directly rather than inferring it from headless clients. +- **Per-batch means describe the newest viewers**, not a re-sample of every + active viewer. This is intentional (the newest viewers see the highest load), + but it means a viewer that degrades after its batch measurement is not + re-counted. +- **Fake media** (`--use-fake-device-for-media-stream`) is a synthetic pattern; + absolute bitrate figures depend on the encoder settings the app negotiates. + +## Results + +_Pending execution against a running backend — not fabricated._ + +| viewers | joinP50 | joinP99 | firstFrameP50 | firstFrameP99 | meanBitrateKbps | meanLossPct | meanFps | failures | +|---:|---:|---:|---:|---:|---:|---:|---:|---:| +| _tbd_ | _tbd_ | _tbd_ | _tbd_ | _tbd_ | _tbd_ | _tbd_ | _tbd_ | _tbd_ | From e166afba53cacc07b4bb0f13f8cda4bbf8684423 Mon Sep 17 00:00:00 2001 From: Harshit Date: Sun, 30 Aug 2026 22:57:04 +0530 Subject: [PATCH 2/2] fix: test and updated the results --- backend/logs/combined.log | 27475 ---------------- backend/logs/error.log | 2133 -- backend/src/controllers/auth.controller.ts | 2 + backend/src/mediasoup/transport.ts | 2 +- backend/src/utils/disconnect.util.ts | 2 +- backend/src/utils/roomCordinator.ts | 1 - backend/src/utils/socket.util.ts | 1 + .../src/components/viewer/ViewerVideo.tsx | 6 + frontend/src/pages/Broadcaster.tsx | 10 + frontend/src/pages/ViewerPage.tsx | 8 + frontend/src/router/ProtectedRoute.tsx | 6 +- frontend/src/socket.ts | 1 + load-test/media-fanout-100.csv | 8 + load-test/media-fanout-capacity.js | 212 +- load-test/media-fanout-results.csv | 11 + load-test/results/MEDIA-FANOUT-CAPACITY.md | 192 +- 16 files changed, 289 insertions(+), 29781 deletions(-) delete mode 100644 backend/logs/combined.log delete mode 100644 backend/logs/error.log create mode 100644 load-test/media-fanout-100.csv create mode 100644 load-test/media-fanout-results.csv diff --git a/backend/logs/combined.log b/backend/logs/combined.log deleted file mode 100644 index c4e1400..0000000 --- a/backend/logs/combined.log +++ /dev/null @@ -1,27475 +0,0 @@ -2025-08-02 18:22:11 info: Database connected successfully -2025-08-02 18:22:11 info: Server is running at http://127.0.0.1:8001 -2025-08-03 11:23:45 info: Database connected successfully -2025-08-03 11:23:45 info: Server is running at http://127.0.0.1:8001 -2025-08-03 11:23:59 info: Database connected successfully -2025-08-03 11:23:59 info: Server is running at http://127.0.0.1:8001 -2025-08-03 11:25:07 info: Database connected successfully -2025-08-03 11:25:07 info: Server is running at http://127.0.0.1:8001 -2025-08-03 11:25:27 info: Database connected successfully -2025-08-03 11:25:27 info: Server is running at http://127.0.0.1:8001 -2025-08-03 11:29:12 info: Database connected successfully -2025-08-03 11:29:12 info: Server is running at http://127.0.0.1:8001 -2025-08-03 19:58:03 info: Database connected successfully -2025-08-03 19:58:03 info: Server is running at http://127.0.0.1:8001 -2025-08-03 23:01:47 error: TypeError: Cannot read properties of undefined (reading 'createWorker') - at initWorker (D:\Web-Development\Projects\Croudly\live\backend\src\mediasoup\worker.ts:11:20) - at setup (D:\Web-Development\Projects\Croudly\live\backend\src\mediasoup\transport.ts:17:28) - at Object. (D:\Web-Development\Projects\Croudly\live\backend\src\mediasoup\transport.ts:37:1) - at Module._compile (node:internal/modules/cjs/loader:1358:14) - at Module.m._compile (D:\Web-Development\Projects\Croudly\live\backend\node_modules\ts-node\src\index.ts:1618:23) - at Module._extensions..js (node:internal/modules/cjs/loader:1416:10) - at Object.require.extensions. [as .ts] (D:\Web-Development\Projects\Croudly\live\backend\node_modules\ts-node\src\index.ts:1621:12) - at Module.load (node:internal/modules/cjs/loader:1208:32) - at Function.Module._load (node:internal/modules/cjs/loader:1024:12) - at Module.require (node:internal/modules/cjs/loader:1233:19) -2025-08-03 23:01:49 info: Database connected successfully -2025-08-03 23:01:49 error: TypeError: Cannot read properties of undefined (reading 'createWorker') - at initWorker (D:\Web-Development\Projects\Croudly\live\backend\src\mediasoup\worker.ts:11:20) - at createRouter (D:\Web-Development\Projects\Croudly\live\backend\src\mediasoup\router.ts:81:34) - at D:\Web-Development\Projects\Croudly\live\backend\src\index.ts:24:23 - at processTicksAndRejections (node:internal/process/task_queues:95:5) -2025-08-03 23:03:14 info: Database connected successfully -2025-08-03 23:03:14 error: UnsupportedError: media codec not supported [mimeType:video/H265] - at Object.generateRouterRtpCapabilities (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\ortc.js:167:19) - at WorkerImpl.createRouter (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Worker.js:336:38) - at createRouter (D:\Web-Development\Projects\Croudly\live\backend\src\mediasoup\router.ts:82:31) - at async D:\Web-Development\Projects\Croudly\live\backend\src\index.ts:24:5 -2025-08-03 23:04:44 info: Database connected successfully -2025-08-03 23:04:44 info: Server is running at http://127.0.0.1:8001 -2025-08-03 23:05:05 info: Frontend connected: 3eUXYovQHDomgv4KAAAB -2025-08-03 23:22:00 info: Database connected successfully -2025-08-03 23:22:00 info: Server is running at http://127.0.0.1:8001 -2025-08-03 23:22:24 info: Frontend connected: Hs2QZaEGrEjJHNsyAAAB -2025-08-03 23:24:02 info: Frontend connected: q9dGOsBZ7DkS72TVAAAD -2025-08-03 23:25:18 info: Frontend connected: qcfPK6ZHYh9dCjnwAAAF -2025-08-03 23:25:26 info: Frontend connected: Vs-tFrJy0k8Es6pyAAAH -2025-08-03 23:25:29 info: Frontend connected: LlA-ZpHlajmpc5SRAAAJ -2025-08-03 23:26:23 info: Frontend connected: 1_r7YldoSDBGHJdsAAAL -2025-08-03 23:26:56 info: Frontend connected: JoEauNfQVg2e9DLkAAAN -2025-08-03 23:27:27 info: Frontend connected: cluXFSlznESxD0MgAAAP -2025-08-03 23:27:29 info: Frontend connected: IgxsDqN7IlDrDiGxAAAR -2025-08-03 23:27:49 info: Frontend connected: 3T1trot71j3h7kEFAAAT -2025-08-03 23:28:30 info: Frontend connected: RrTDqCSOCb0YMYNIAAAV -2025-08-03 23:28:39 info: Frontend connected: yrs_B22BgB9BB0YfAAAX -2025-08-03 23:28:47 info: Frontend connected: ncuuHbFdfLm00l0SAAAZ -2025-08-03 23:28:51 info: Frontend connected: QppPDEEdbzHsf0OzAAAb -2025-08-03 23:30:25 info: Frontend connected: nFtpwqbL12AR6AKoAAAd -2025-08-03 23:30:30 info: Frontend connected: J6E5FDsaEfHT5TotAAAf -2025-08-03 23:30:36 info: Frontend connected: f0qtls-sUEtDOuO1AAAh -2025-08-03 23:30:45 info: Frontend connected: vrLUguQEROXNh0arAAAj -2025-08-03 23:32:00 info: Frontend connected: 3CqeZeqNXg9P2nzjAAAl -2025-08-03 23:33:36 info: Frontend connected: A_6hb1VBk9agQtfLAAAn -2025-08-03 23:33:50 info: Frontend connected: zbAnUFEDzMQ8TIltAAAp -2025-08-03 23:33:52 info: Frontend connected: gLeB2cH4Fx5w_0WuAAAr -2025-08-03 23:33:59 info: Frontend connected: dqPYs53uaTfpfoCeAAAt -2025-08-03 23:34:35 info: Frontend connected: btuNHr4Bw1XM9ymYAAAv -2025-08-03 23:34:47 info: Frontend connected: 1NB1IKxGy5759iDIAAAx -2025-08-03 23:35:07 info: Frontend connected: 3SprDt1A2X3grARZAAAz -2025-08-03 23:36:12 info: Frontend connected: 4lzUoD0OUNuNJVj6AAA1 -2025-08-03 23:39:54 info: Database connected successfully -2025-08-03 23:39:54 info: Server is running at http://127.0.0.1:8001 -2025-08-03 23:39:57 info: Frontend connected: TUOBrO5ythoPX66FAAAB -2025-08-04 09:20:31 info: Database connected successfully -2025-08-04 09:20:31 info: Server is running at http://127.0.0.1:8001 -2025-08-04 09:20:51 info: Frontend connected: vEwmaEkw3mr8ccvbAAAB -2025-08-05 14:21:56 info: Server running on http://localhost:8001 -2025-08-05 14:22:19 info: Socket connected: JlXd-FZzLaeybeydAAAB -2025-08-05 14:22:47 info: Socket connected: yIkNIy9wzuCJAiIkAAAD -2025-08-05 14:22:52 info: Socket connected: ConI4XyCMcQzOhPQAAAF -2025-08-05 23:51:53 info: Router created for room: -2025-08-05 23:54:11 info: Router created for room: -2025-08-09 23:41:30 info: Router created for room: -2025-08-09 23:42:07 info: Router created for room: -2025-08-09 23:44:33 info: Router created for room: -2025-08-10 11:02:51 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:51:20) - at joinAsViewer (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewer.handler.ts:14:23) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewerSocket.handler.ts:15:49) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-10 11:04:35 info: Viewer disconnected: 2B1od_Zyqk0oOiTeAAAB -2025-08-10 11:06:38 error: SocketId did not come through -2025-08-10 11:06:38 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:51:20) - at joinAsViewer (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewer.handler.ts:14:23) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewerSocket.handler.ts:15:49) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-10 11:06:38 error: SocketId did not come through -2025-08-10 11:06:38 error: SocketId did not come through -2025-08-10 11:06:38 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:51:20) - at joinAsViewer (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewer.handler.ts:14:23) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewerSocket.handler.ts:15:49) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-10 11:06:38 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:51:20) - at joinAsViewer (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewer.handler.ts:14:23) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewerSocket.handler.ts:15:49) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-10 11:06:38 info: Router created for room: -2025-08-10 11:06:38 info: Router created for room: -2025-08-12 18:11:09 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:54:20) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:24:35) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-12 18:11:11 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:54:20) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:24:35) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-12 18:13:30 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:54:20) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:24:35) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-12 18:15:09 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:54:20) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:24:35) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-12 18:16:02 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:54:20) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:25:35) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-12 18:16:34 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:54:20) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:25:35) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-12 18:17:09 info: Router created for room: 77955afc-e7e3-47e7-8728-e4042701e6bc -2025-08-12 18:17:09 info: WebRTC Server created -2025-08-12 18:17:09 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:251:33) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:76:34) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:191:23) -2025-08-12 18:18:10 info: Router created for room: a5922767-cd8a-4f76-b16a-d393bdaa6588 -2025-08-12 18:18:10 info: WebRTC Server created -2025-08-12 18:18:10 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:251:33) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:76:34) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:191:23) -2025-08-12 18:24:00 info: Router created for room: c982080a-547f-4d99-be3c-5217844db009 -2025-08-12 18:24:00 info: WebRTC Server created -2025-08-12 18:24:00 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:251:33) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:76:34) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:191:23) -2025-08-12 18:27:56 info: Router created for room: 8c501f10-5660-4baf-88bc-0bb120ab92fb -2025-08-12 18:27:56 info: WebRTC Server created -2025-08-12 18:27:56 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:251:33) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:76:34) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:191:23) -2025-08-12 18:30:54 info: Router created for room: ee59e0bf-e99c-4996-b0fc-98728f0c85e6 -2025-08-12 18:30:54 info: WebRTC Server created -2025-08-12 18:30:54 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:251:33) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:76:34) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:191:23) -2025-08-12 18:37:11 info: Router created for room: 1897e344-9f22-4c2d-aa46-00c047dbac4e -2025-08-12 18:37:11 info: WebRTC Server created -2025-08-12 18:37:11 info: Broadcaster transport created and sent to roomId -2025-08-12 18:42:32 info: Router created for room: 8361c023-6b1c-4304-8646-a2af0d82f8b2 -2025-08-12 18:42:32 info: WebRTC Server created -2025-08-12 18:42:32 info: Broadcaster transport created and sent to roomId -2025-08-12 18:45:21 info: Router created for room: c3cad6c7-eb59-453e-a73b-f201df2b2ed1 -2025-08-12 18:45:21 info: WebRTC Server created -2025-08-12 18:45:21 info: Broadcaster transport created and sent to roomId -2025-08-13 07:54:43 info: Router created for room: f4adb163-a570-4a3d-b3a9-0e14ae7e2733 -2025-08-13 07:54:43 info: WebRTC Server created -2025-08-13 07:54:43 info: Broadcaster transport created and sent to roomId -2025-08-16 17:23:36 info: Database connected successfully -2025-08-16 17:24:52 info: Router created for room: 2bed6a96-6561-4fef-944b-f2a2ebedc9f4 -2025-08-16 17:24:52 info: WebRTC Server created -2025-08-16 17:24:53 info: Broadcaster transport created and sent to roomId -2025-08-16 17:30:41 info: Database connected successfully -2025-08-16 17:30:54 info: Router created for room: b0ffba94-9838-465d-8d0b-ebb6720306f6 -2025-08-16 17:30:54 info: WebRTC Server created -2025-08-16 17:30:54 info: Broadcaster transport created and sent to roomId -2025-08-16 17:32:06 info: Database connected successfully -2025-08-16 17:32:06 info: Router created for room: f3a535b9-8b36-430d-9436-de085830d4f0 -2025-08-16 17:32:06 info: WebRTC Server created -2025-08-16 17:32:07 info: Broadcaster transport created and sent to roomId -2025-08-18 20:25:47 info: Database connected successfully -2025-08-18 20:29:57 info: Database connected successfully -2025-08-18 20:39:44 info: Database connected successfully -2025-08-18 20:39:45 info: Router created for room: 59fa0caf-ad5e-4160-9635-ce2edb072f31 -2025-08-18 20:39:45 info: WebRTC Server created -2025-08-18 20:39:46 error: ValidationError: Transport validation failed: transportId: Path `transportId` is required. - at model.Document.invalidate (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mongoose\lib\document.js:3358:32) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\mongoose\lib\document.js:3119:17 - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\mongoose\lib\schemaType.js:1410:9 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-18 20:43:18 info: Database connected successfully -2025-08-18 20:43:22 info: Router created for room: 41b20f1d-86e7-45ac-8c22-108e88ef1a43 -2025-08-18 20:43:22 info: WebRTC Server created -2025-08-18 20:43:23 info: Broadcaster transport created and sent to roomId -2025-08-18 20:45:30 info: Database connected successfully -2025-08-18 20:45:38 info: Database connected successfully -2025-08-18 20:45:44 info: Router created for room: d0e0a4cf-1996-41e1-b0c8-6a66e8e44013 -2025-08-18 20:45:44 info: WebRTC Server created -2025-08-18 20:45:44 info: Broadcaster transport created and sent to roomId -2025-08-18 20:47:32 info: Database connected successfully -2025-08-18 20:47:47 info: Router created for room: 5ddc8e7a-a284-46ce-aba6-e4ac81f0ef05 -2025-08-18 20:47:47 info: WebRTC Server created -2025-08-18 20:47:48 info: Broadcaster transport created and sent to roomId -2025-08-18 20:56:39 info: Database connected successfully -2025-08-18 20:56:46 info: Router created for room: b704a78a-889f-4209-be3d-b457f3cfb240 -2025-08-18 20:56:46 info: WebRTC Server created -2025-08-18 20:56:46 info: Broadcaster transport created and sent to roomId -2025-08-18 20:58:19 info: Database connected successfully -2025-08-18 20:58:25 info: Router created for room: b58b8491-9573-487e-9855-8e2a6ebdc415 -2025-08-18 20:58:25 info: WebRTC Server created -2025-08-18 20:58:26 info: Broadcaster transport created and sent to roomId -2025-08-18 20:59:12 info: Database connected successfully -2025-08-18 20:59:12 info: Router created for room: 61297dbd-1a3e-4478-a88c-a5d3fe783752 -2025-08-18 20:59:12 info: WebRTC Server created -2025-08-18 20:59:12 info: Broadcaster transport created and sent to roomId -2025-08-18 21:02:22 info: Database connected successfully -2025-08-18 21:02:24 info: Router created for room: 096b9476-d00c-40b6-8bfe-9233f0d20ee7 -2025-08-18 21:02:24 info: WebRTC Server created -2025-08-18 21:02:25 info: Broadcaster transport created and sent to roomId -2025-08-18 21:06:44 info: Database connected successfully -2025-08-18 21:06:49 info: Router created for room: dc784ed4-5e1b-4f9c-a53a-da7bf5f25b25 -2025-08-18 21:06:49 info: WebRTC Server created -2025-08-18 21:06:50 info: Broadcaster transport created and sent to roomId -2025-08-18 21:13:21 info: Database connected successfully -2025-08-18 21:15:12 info: Database connected successfully -2025-08-18 21:15:22 info: Router created for room: 467b2ed9-7f44-497d-b057-7fd3e1fb008a -2025-08-18 21:15:22 info: WebRTC Server created -2025-08-18 21:15:22 info: Broadcaster transport created and sent to roomId -2025-08-18 21:28:39 info: Database connected successfully -2025-08-18 21:28:44 info: Router created for room: bd227d2c-d919-4809-8ee5-be771fc64f71 -2025-08-18 21:28:44 info: WebRTC Server created -2025-08-18 21:28:45 info: Broadcaster transport created and sent to roomId -2025-08-18 21:29:48 info: Database connected successfully -2025-08-18 21:29:48 info: Router created for room: 742e312b-46b9-4e1f-af02-0a239b1cdb4c -2025-08-18 21:29:48 info: WebRTC Server created -2025-08-18 21:29:48 info: Broadcaster transport created and sent to roomId -2025-08-24 14:31:26 info: Database connected successfully -2025-08-24 14:31:46 info: Router created for room: 6d8d6bb4-aa5e-4a83-a7b1-3225b5075b20 -2025-08-24 14:31:46 info: WebRTC Server created -2025-08-24 14:31:47 info: Broadcaster transport created and sent to roomId -2025-08-24 14:38:26 info: Database connected successfully -2025-08-24 14:38:32 info: Router created for room: 7ee98e32-faa8-4394-9f2b-daf01a828bcd -2025-08-24 14:38:32 info: WebRTC Server created -2025-08-24 14:38:32 info: Broadcaster transport created and sent to roomId -2025-08-24 16:14:52 info: Database connected successfully -2025-08-24 16:15:00 info: Router created for room: 1ffc7867-87a1-4d43-85e1-44c514f59d38 -2025-08-24 16:15:00 info: WebRTC Server created -2025-08-24 16:15:01 info: Broadcaster transport created and sent to roomId -2025-08-24 16:20:21 info: Database connected successfully -2025-08-24 16:20:38 info: Router created for room: e455d0a8-30c7-4808-8b33-46d00edc3792 -2025-08-24 16:20:38 info: WebRTC Server created -2025-08-24 16:20:39 info: Broadcaster transport created and sent to roomId -2025-08-24 16:23:53 info: Database connected successfully -2025-08-24 16:23:54 info: Router created for room: 68003b47-2da8-40a1-931e-425fa09b49f3 -2025-08-24 16:23:54 info: WebRTC Server created -2025-08-24 16:23:55 info: Broadcaster transport created and sent to roomId -2025-08-24 16:27:25 info: Database connected successfully -2025-08-24 16:27:30 info: Router created for room: 0cf619e1-8601-4e96-9331-739ae9fa93a5 -2025-08-24 16:27:30 info: WebRTC Server created -2025-08-24 16:27:31 info: Broadcaster transport created and sent to roomId -2025-08-24 16:30:08 info: Database connected successfully -2025-08-24 16:30:14 info: Router created for room: 8bf17ccf-d439-40e3-87e5-f51b9c37311c -2025-08-24 16:30:14 info: WebRTC Server created -2025-08-24 16:30:15 info: Broadcaster transport created and sent to roomId -2025-08-24 16:39:52 info: Database connected successfully -2025-08-24 16:39:55 info: Router created for room: 86bd0bdd-1e70-4227-8624-b71a20adb681 -2025-08-24 16:39:55 info: WebRTC Server created -2025-08-24 16:39:55 info: Router created for room: 86bd0bdd-1e70-4227-8624-b71a20adb681 -2025-08-24 16:39:55 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:251:33) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:76:34) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:191:23) -2025-08-24 16:42:03 info: Database connected successfully -2025-08-24 16:42:03 info: Router created for room: 930aae92-5848-4b73-b287-d9a657757cc1 -2025-08-24 16:42:03 info: WebRTC Server created -2025-08-24 16:42:04 info: Broadcaster transport created and sent to roomId -2025-08-24 16:43:33 info: Database connected successfully -2025-08-24 16:43:36 info: Router created for room: 7ee906aa-db6a-475c-a8ea-8f26c46e0f3e -2025-08-24 16:43:36 info: WebRTC Server created -2025-08-24 16:43:37 info: Broadcaster transport created and sent to roomId -2025-08-24 18:42:47 info: Database connected successfully -2025-08-24 18:42:58 info: Router created for room: e116a370-7a00-4e12-aa6c-a4ddb45c26c5 -2025-08-24 18:42:58 info: WebRTC Server created -2025-08-24 18:42:58 info: Broadcaster transport created and sent to roomId -2025-08-24 18:50:22 info: Database connected successfully -2025-08-24 18:51:18 info: Router created for room: 5e2ff906-2f72-46da-8385-fc006396c1eb -2025-08-24 18:51:18 info: WebRTC Server created -2025-08-24 18:51:19 info: Broadcaster transport created and sent to roomId -2025-08-24 18:51:26 error: Viewer does not exist with socketId : SJi8ihm2jnYd-uqZAAAD -2025-08-24 18:51:27 info: Router created for room: def6d6f1-6227-4f67-9e10-cfb9d1452c16 -2025-08-24 18:51:28 info: Broadcaster transport created and sent to roomId -2025-08-24 18:52:08 error: Viewer does not exist with socketId : HQb1SNpzcP2yJz8tAAAF -2025-08-24 18:53:15 info: Database connected successfully -2025-08-24 18:53:22 info: Router created for room: 77f35b26-435e-4f8e-aff6-4b8660fa5b0b -2025-08-24 18:53:22 info: WebRTC Server created -2025-08-24 18:53:23 info: Broadcaster transport created and sent to roomId -2025-08-24 18:54:36 error: Viewer does not exist with socketId : wod_KzIBm_Ej67auAAAE -2025-08-24 18:56:56 info: Database connected successfully -2025-08-24 19:01:09 info: Database connected successfully -2025-08-24 19:02:18 info: Database connected successfully -2025-08-24 19:02:22 info: Router created for room: c7ff305b-7c72-4de0-a3f9-cfd0fe242538 -2025-08-24 19:02:22 info: WebRTC Server created -2025-08-24 19:02:22 info: Router created for room: a22ea5dd-b750-418f-a8ed-8e6c60af9208 -2025-08-24 19:02:22 info: Broadcaster transport created and sent to roomId -2025-08-24 19:02:22 info: Broadcaster transport created and sent to roomId -2025-08-24 19:02:44 info: Database connected successfully -2025-08-24 19:02:49 info: Router created for room: 8d9c290c-c999-47a8-90ee-a70d6efeea68 -2025-08-24 19:02:49 info: WebRTC Server created -2025-08-24 19:02:49 info: Broadcaster transport created and sent to roomId -2025-08-24 19:13:04 info: Database connected successfully -2025-08-24 19:13:06 info: Router created for room: d858a77f-87c9-4a40-aad3-b92c8333607e -2025-08-24 19:13:06 info: WebRTC Server created -2025-08-24 19:13:07 info: Broadcaster transport created and sent to roomId -2025-08-24 19:17:42 info: Database connected successfully -2025-08-24 19:17:44 info: Router created for room: 56c61ce8-9669-4dfa-b2c3-72b5051504ac -2025-08-24 19:17:44 info: WebRTC Server created -2025-08-24 19:17:45 info: Broadcaster transport created and sent to roomId -2025-08-24 19:39:35 info: Database connected successfully -2025-08-24 19:39:46 info: Router created for room: feeba295-9ec6-4a0a-ad7a-46792fa481ac -2025-08-24 19:39:46 info: WebRTC Server created -2025-08-24 19:39:46 info: Broadcaster transport created and sent to roomId -2025-08-24 19:55:49 info: Database connected successfully -2025-08-24 19:56:06 info: Router created for room: 896af289-1d6f-49f8-84db-e6ac6cead270 -2025-08-24 19:56:06 info: WebRTC Server created -2025-08-24 19:56:06 info: Broadcaster transport created and sent to roomId -2025-08-24 19:57:02 info: Database connected successfully -2025-08-24 19:57:06 info: Router created for room: c7d2d335-5d48-4105-860f-bdc91934ed81 -2025-08-24 19:57:06 info: WebRTC Server created -2025-08-24 19:57:07 info: Broadcaster transport created and sent to roomId -2025-08-24 19:57:47 info: Database connected successfully -2025-08-24 19:57:51 info: Router created for room: 08fb89e7-5e80-487b-998b-75e9796e00ce -2025-08-24 19:57:51 info: WebRTC Server created -2025-08-24 19:57:52 info: Broadcaster transport created and sent to roomId -2025-08-24 19:58:19 info: Database connected successfully -2025-08-24 19:58:20 info: Router created for room: b029356f-f781-48df-a42a-73e76e08c76e -2025-08-24 19:58:20 info: WebRTC Server created -2025-08-24 19:58:21 info: Broadcaster transport created and sent to roomId -2025-08-24 19:59:09 info: Database connected successfully -2025-08-24 19:59:09 info: Router created for room: d1f79036-ca37-4fe5-88cb-b68132bc6c9c -2025-08-24 19:59:09 info: WebRTC Server created -2025-08-24 19:59:10 info: Broadcaster transport created and sent to roomId -2025-08-24 20:01:00 info: Database connected successfully -2025-08-24 20:01:09 info: Router created for room: 8f70bf3b-ddb9-45f2-9e87-96d5bd363c22 -2025-08-24 20:01:09 info: WebRTC Server created -2025-08-24 20:01:09 info: Broadcaster transport created and sent to roomId -2025-08-24 20:01:37 info: Database connected successfully -2025-08-24 20:01:47 info: Database connected successfully -2025-08-24 20:01:48 info: Router created for room: 6c203eb2-4d85-47a4-9bcf-a37a5bf214ca -2025-08-24 20:01:48 info: WebRTC Server created -2025-08-24 20:01:48 info: Broadcaster transport created and sent to roomId -2025-08-24 20:10:47 info: Database connected successfully -2025-08-24 20:10:54 info: Router created for room: 49b52d91-b8a9-413f-83ca-bef1f0f37f88 -2025-08-24 20:10:54 info: WebRTC Server created -2025-08-24 20:10:55 info: Broadcaster transport created and sent to roomId -2025-08-24 20:19:18 info: Database connected successfully -2025-08-24 20:19:25 info: Router created for room: b7afbea1-31be-401d-b100-dac7214da2b2 -2025-08-24 20:19:25 info: WebRTC Server created -2025-08-24 20:19:26 info: Broadcaster transport created and sent to roomId -2025-08-24 20:21:02 info: Database connected successfully -2025-08-24 20:21:07 info: Router created for room: 2f2622fe-d521-4efa-830f-0d9bf9089cdf -2025-08-24 20:21:07 info: WebRTC Server created -2025-08-24 20:21:07 info: Broadcaster transport created and sent to roomId -2025-08-24 20:53:02 info: Database connected successfully -2025-08-24 20:53:03 info: Router created for room: 2acb8da0-4f69-4d99-a021-4131710a9b98 -2025-08-24 20:53:03 info: WebRTC Server created -2025-08-24 20:53:03 info: Broadcaster transport created and sent to roomId -2025-08-24 21:05:09 info: Database connected successfully -2025-08-24 21:05:25 info: Router created for room: f541d984-8558-4b96-b2a0-e87ca2491f01 -2025-08-24 21:05:25 info: WebRTC Server created -2025-08-24 21:05:25 info: Broadcaster transport created and sent to roomId -2025-08-24 21:11:36 info: Database connected successfully -2025-08-24 21:11:36 info: Router created for room: a7e25223-89aa-491b-9dc3-95c3ce33cc45 -2025-08-24 21:11:36 info: WebRTC Server created -2025-08-24 21:11:38 info: Broadcaster transport created and sent to roomId -2025-08-24 21:26:26 info: Database connected successfully -2025-08-24 22:29:02 info: Database connected successfully -2025-08-24 22:30:03 info: Database connected successfully -2025-08-25 09:34:56 info: Database connected successfully -2025-08-25 09:35:09 info: Router created for room: ec9bfdb8-54ed-4ad5-b9b6-5455fc812a95 -2025-08-25 09:35:09 info: WebRTC Server created -2025-08-25 09:35:10 info: Broadcaster transport created and sent to roomId -2025-08-25 09:36:30 info: Database connected successfully -2025-08-25 09:36:39 info: Router created for room: 0473f0e7-e847-4cba-b67e-348a908f42d8 -2025-08-25 09:36:39 info: WebRTC Server created -2025-08-25 09:36:39 info: Broadcaster transport created and sent to roomId -2025-08-25 09:41:53 info: Database connected successfully -2025-08-25 09:42:23 info: Database connected successfully -2025-08-25 09:42:35 info: Router created for room: 9f1bc309-9b10-44a2-b046-39c7e5e22b98 -2025-08-25 09:42:35 info: WebRTC Server created -2025-08-25 09:42:36 info: Broadcaster transport created and sent to roomId -2025-08-25 10:47:43 info: Database connected successfully -2025-08-25 10:51:16 info: Database connected successfully -2025-08-25 10:53:18 info: Database connected successfully -2025-08-25 10:54:15 info: Database connected successfully -2025-08-25 10:54:48 info: Database connected successfully -2025-08-25 10:55:04 info: Database connected successfully -2025-08-25 10:58:07 info: Database connected successfully -2025-08-25 10:59:05 info: Database connected successfully -2025-08-25 11:00:35 info: Database connected successfully -2025-08-25 11:01:14 info: Database connected successfully -2025-08-25 11:01:35 info: Database connected successfully -2025-08-25 11:02:46 info: Database connected successfully -2025-08-25 11:03:32 info: Database connected successfully -2025-08-25 11:03:36 info: Router created for room: a51f194b-c906-426f-92cb-2c37c2d150a7 -2025-08-25 11:03:36 info: WebRTC Server created -2025-08-25 11:03:37 info: Broadcaster transport created and sent to roomId -2025-08-25 11:57:24 info: Database connected successfully -2025-08-25 11:57:33 info: Router created for room: e1258987-2c87-492b-8f82-d89fb5b578c5 -2025-08-25 11:57:33 info: WebRTC Server created -2025-08-25 11:57:34 info: Broadcaster transport created and sent to roomId -2025-08-25 12:03:44 info: Database connected successfully -2025-08-25 12:03:46 info: Router created for room: 7a5abf7d-f808-4bb7-83c3-eb6e41e3cb21 -2025-08-25 12:03:46 info: WebRTC Server created -2025-08-25 12:03:47 info: Broadcaster transport created and sent to roomId -2025-08-25 12:04:45 info: Database connected successfully -2025-08-25 12:05:17 info: Database connected successfully -2025-08-25 12:05:21 info: Router created for room: 03dca292-7638-493c-9d34-df3090ac68ff -2025-08-25 12:05:21 info: WebRTC Server created -2025-08-25 12:05:22 info: Broadcaster transport created and sent to roomId -2025-08-25 12:11:44 info: Database connected successfully -2025-08-25 12:12:00 info: Router created for room: 09ba5215-caaa-47ed-95eb-743366b839ce -2025-08-25 12:12:00 info: WebRTC Server created -2025-08-25 12:12:00 info: Broadcaster transport created and sent to roomId -2025-08-25 12:12:44 info: Database connected successfully -2025-08-25 12:12:57 info: Router created for room: f537b00c-ee37-45c6-9dc8-2e0f834466c5 -2025-08-25 12:12:57 info: WebRTC Server created -2025-08-25 12:12:58 info: Broadcaster transport created and sent to roomId -2025-08-25 13:26:39 info: Database connected successfully -2025-08-25 13:26:57 info: Router created for room: a5a17f3d-806a-42f0-bf46-708a9f40253e -2025-08-25 13:26:57 info: WebRTC Server created -2025-08-25 13:26:58 info: Broadcaster transport created and sent to roomId -2025-08-25 13:29:02 info: Database connected successfully -2025-08-25 13:29:10 info: Router created for room: 15ac1efa-c3e9-4551-9424-ccef62f6eaff -2025-08-25 13:29:10 info: WebRTC Server created -2025-08-25 13:29:11 info: Broadcaster transport created and sent to roomId -2025-08-25 13:31:16 info: Database connected successfully -2025-08-25 13:31:20 info: Router created for room: 25621d25-4274-4a74-a0cf-3647bcba3ff7 -2025-08-25 13:31:20 info: WebRTC Server created -2025-08-25 13:31:20 info: Router created for room: cdc85a72-fdc0-4789-a1c4-304ae6f2ec2d -2025-08-25 13:31:20 info: Broadcaster transport created and sent to roomId -2025-08-25 13:31:21 info: Broadcaster transport created and sent to roomId -2025-08-25 13:34:14 info: Database connected successfully -2025-08-25 13:34:25 info: Router created for room: d1ee8656-c6dc-4d05-ab1c-120579fb4987 -2025-08-25 13:34:25 info: WebRTC Server created -2025-08-25 13:34:25 info: Broadcaster transport created and sent to roomId -2025-08-25 13:38:44 info: Database connected successfully -2025-08-25 13:39:06 info: Router created for room: 4775e17b-f371-4e1a-b854-fc8f2076152d -2025-08-25 13:39:06 info: WebRTC Server created -2025-08-25 13:39:07 info: Broadcaster transport created and sent to roomId -2025-08-25 13:44:23 info: Database connected successfully -2025-08-25 13:44:51 info: Router created for room: e4eb01f7-04e4-4441-8166-1d4b3bcd2eba -2025-08-25 13:44:51 info: WebRTC Server created -2025-08-25 13:44:51 info: Broadcaster transport created and sent to roomId -2025-08-25 13:45:36 info: Database connected successfully -2025-08-25 13:45:57 info: Database connected successfully -2025-08-25 13:46:07 info: Router created for room: 22267922-62da-438c-878e-921f30acbfe9 -2025-08-25 13:46:07 info: WebRTC Server created -2025-08-25 13:46:07 info: Broadcaster transport created and sent to roomId -2025-08-25 13:51:33 info: Router created for room: d9a3c9b0-0d43-4737-b519-32f0aa46f1fa -2025-08-25 13:51:33 info: Broadcaster transport created and sent to roomId -2025-08-25 13:52:22 info: Database connected successfully -2025-08-25 13:52:32 info: Router created for room: 25423da2-620a-48b8-a034-5f8b7c97e40e -2025-08-25 13:52:32 info: WebRTC Server created -2025-08-25 13:52:32 info: Broadcaster transport created and sent to roomId -2025-08-25 13:56:30 info: Database connected successfully -2025-08-25 13:56:35 info: Router created for room: 98033052-60ef-4e6e-a23e-3814640fe7f7 -2025-08-25 13:56:35 info: WebRTC Server created -2025-08-25 13:56:36 info: Broadcaster transport created and sent to roomId -2025-08-25 13:57:49 info: Database connected successfully -2025-08-25 13:58:00 info: Router created for room: 4189744c-8f5a-473b-9129-4fe3cf489547 -2025-08-25 13:58:00 info: WebRTC Server created -2025-08-25 13:58:01 info: Broadcaster transport created and sent to roomId -2025-08-25 14:03:45 info: Database connected successfully -2025-08-25 14:04:07 info: Router created for room: 7a9b10ad-e7d8-41b6-bceb-8c777a65c1d7 -2025-08-25 14:04:07 info: WebRTC Server created -2025-08-25 14:04:07 info: Broadcaster transport created and sent to roomId -2025-08-25 14:09:26 info: Database connected successfully -2025-08-25 14:09:37 info: Router created for room: 970bc88a-28cb-4476-abf4-11ac904d57a0 -2025-08-25 14:09:37 info: WebRTC Server created -2025-08-25 14:09:38 info: Broadcaster transport created and sent to roomId -2025-08-25 14:13:17 info: Database connected successfully -2025-08-25 14:13:28 info: Router created for room: 5ec183be-f50c-496c-b76d-e29240e69cb0 -2025-08-25 14:13:28 info: WebRTC Server created -2025-08-25 14:13:29 info: Broadcaster transport created and sent to roomId -2025-08-25 14:16:35 info: Database connected successfully -2025-08-25 14:16:48 info: Router created for room: f086c9bc-df82-4a3e-ad86-4639499e8b03 -2025-08-25 14:16:48 info: WebRTC Server created -2025-08-25 14:16:49 info: Broadcaster transport created and sent to roomId -2025-08-25 14:19:33 info: Database connected successfully -2025-08-25 14:19:52 info: Router created for room: a15f70f8-a635-4d82-9681-ef70f06bea6f -2025-08-25 14:19:52 info: WebRTC Server created -2025-08-25 14:19:53 info: Broadcaster transport created and sent to roomId -2025-08-25 14:22:56 info: Database connected successfully -2025-08-25 14:23:07 info: Router created for room: 7cc18012-1916-4cb5-802b-1ab3934a9be6 -2025-08-25 14:23:07 info: WebRTC Server created -2025-08-25 14:23:08 info: Broadcaster transport created and sent to roomId -2025-08-25 14:24:47 info: Database connected successfully -2025-08-25 14:25:37 info: Database connected successfully -2025-08-25 14:26:57 info: Database connected successfully -2025-08-25 14:27:01 info: Router created for room: b8c8650f-1dd2-4097-8dde-d8ded1182364 -2025-08-25 14:27:01 info: WebRTC Server created -2025-08-25 14:27:01 info: Broadcaster transport created and sent to roomId -2025-08-25 15:19:07 info: Database connected successfully -2025-08-25 15:19:48 info: Router created for room: 401b2736-c6db-4670-b4f9-60463cbefec6 -2025-08-25 15:19:48 info: WebRTC Server created -2025-08-25 15:19:49 info: Broadcaster transport created and sent to roomId -2025-08-25 15:22:57 info: Database connected successfully -2025-08-25 15:23:12 info: Router created for room: 5e83ff7d-41e7-493f-8824-a955400f388a -2025-08-25 15:23:12 info: WebRTC Server created -2025-08-25 15:23:13 info: Broadcaster transport created and sent to roomId -2025-08-25 15:23:24 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:251:33) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:76:34) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:191:23) -2025-08-25 15:25:50 info: Database connected successfully -2025-08-25 15:28:38 info: Database connected successfully -2025-08-25 15:28:48 info: Router created for room: a788254d-891e-4cb0-8b37-04609933aefb -2025-08-25 15:28:48 info: WebRTC Server created -2025-08-25 15:28:49 info: Broadcaster transport created and sent to roomId -2025-08-25 15:28:56 error: TypeError: missing webRtcServer, listenInfos and listenIps (one of them is mandatory) - at RouterImpl.createWebRtcTransport (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Router.js:157:19) - at createWebRtcTransport (D:\Web-Development\Projects\Croudly\live\backend\src\mediasoup\transport.ts:29:34) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\registerViewer.handler.ts:65:58) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-25 18:52:27 info: Database connected successfully -2025-08-25 18:52:39 info: Router created for room: 529211bb-458c-422a-91bd-57bdf11dc048 -2025-08-25 18:52:39 info: WebRTC Server created -2025-08-25 18:52:40 info: Broadcaster transport created and sent to roomId -2025-08-25 19:01:30 info: Database connected successfully -2025-08-25 19:01:47 info: Router created for room: 24db14e4-857c-4aaf-95a0-7288b7c31c25 -2025-08-25 19:01:47 info: WebRTC Server created -2025-08-25 19:03:47 error: Error: querySrv ETIMEOUT _mongodb._tcp.cluster0.kez1ma6.mongodb.net - at QueryReqWrap.onresolve [as oncomplete] (node:internal/dns/promises:291:17) -2025-08-25 19:04:28 error: Error: querySrv ETIMEOUT _mongodb._tcp.cluster0.kez1ma6.mongodb.net - at QueryReqWrap.onresolve [as oncomplete] (node:internal/dns/promises:291:17) -2025-08-25 19:05:09 error: Error: querySrv ETIMEOUT _mongodb._tcp.cluster0.kez1ma6.mongodb.net - at QueryReqWrap.onresolve [as oncomplete] (node:internal/dns/promises:291:17) -2025-08-25 19:05:37 info: Database connected successfully -2025-08-25 19:06:41 info: Router created for room: 346b7f1c-cbfb-4227-a4b8-eeb6babb1d26 -2025-08-25 19:06:41 info: WebRTC Server created -2025-08-25 19:06:42 info: Broadcaster transport created and sent to roomId -2025-08-26 17:53:34 info: Database connected successfully -2025-08-26 17:55:02 info: Database connected successfully -2025-08-26 18:05:28 info: Database connected successfully -2025-08-26 18:06:14 info: Database connected successfully -2025-08-26 18:07:19 info: Database connected successfully -2025-08-26 18:07:41 info: Database connected successfully -2025-08-26 18:08:06 info: Database connected successfully -2025-08-26 18:10:15 info: Database connected successfully -2025-08-26 18:10:15 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:80:20) - at joinAsViewer (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewer.handler.ts:19:23) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\registerViewer.handler.ts:20:25) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-26 18:19:49 info: Database connected successfully -2025-08-26 18:24:38 info: Database connected successfully -2025-08-26 18:25:28 info: Router created for room: 6e010200-28dd-401d-bd75-b377e9cf15aa -2025-08-26 18:25:28 info: WebRTC Server created -2025-08-26 18:30:38 info: Database connected successfully -2025-08-26 18:30:55 info: Router created for room: 8ba2b1f3-fbf3-4444-9f18-db88b46c6633 -2025-08-26 18:30:55 info: WebRTC Server created -2025-08-26 18:33:08 info: Database connected successfully -2025-08-26 18:33:23 info: Router created for room: dacae914-c4e5-4956-80f2-ad6b711cc1f1 -2025-08-26 18:33:23 info: WebRTC Server created -2025-08-26 18:38:56 info: Database connected successfully -2025-08-26 18:39:12 info: Router created for room: ac34513c-411c-4618-ba80-eab69dbd4607 -2025-08-26 18:39:12 info: WebRTC Server created -2025-08-26 18:39:13 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:80:20) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:36:27) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-26 18:39:52 info: Database connected successfully -2025-08-26 18:39:57 info: Router created for room: 7d56cb0a-bc7b-417b-8144-c8a00a4c96e4 -2025-08-26 18:39:57 info: WebRTC Server created -2025-08-26 18:40:35 info: Database connected successfully -2025-08-26 18:43:42 info: Database connected successfully -2025-08-26 18:43:57 info: Router created for room: 26b3b42a-6f5b-4650-8868-064437cb27cf -2025-08-26 18:43:57 info: WebRTC Server created -2025-08-26 18:45:15 info: Database connected successfully -2025-08-26 18:45:17 info: Router created for room: 98bcba32-6a9b-4d7d-a117-407a0ba2831f -2025-08-26 18:45:17 info: WebRTC Server created -2025-08-26 18:45:18 error: RTC Failed Error: Room not found -2025-08-26 18:49:05 info: Database connected successfully -2025-08-26 18:49:09 info: Router created for room: e486e9d2-8e3c-470b-9fa3-46d647a1a85a -2025-08-26 18:49:09 info: WebRTC Server created -2025-08-26 18:49:10 error: RTC Failed Error: Room not found -2025-08-26 19:00:48 info: Database connected successfully -2025-08-26 19:01:11 info: Router created for room: 05dd4f74-0875-4a6c-a4d3-1a2dfff71b7b -2025-08-26 19:01:11 info: WebRTC Server created -2025-08-26 19:01:12 error: RTC Failed Error: Room not found -2025-08-26 19:03:03 info: Database connected successfully -2025-08-26 19:03:08 info: Router created for room: 67a3d0a3-ec1b-4518-8303-c4b52d74b7a8 -2025-08-26 19:03:08 info: WebRTC Server created -2025-08-26 19:08:05 info: Database connected successfully -2025-08-26 19:08:11 info: Router created for room: 2005da64-2447-4cf4-80eb-ef4cd437099f -2025-08-26 19:08:11 info: WebRTC Server created -2025-08-26 19:08:55 info: Database connected successfully -2025-08-26 19:08:58 info: Router created for room: 3cb3c76c-854a-4b75-a14f-30da015b403f -2025-08-26 19:08:58 info: WebRTC Server created -2025-08-26 19:09:32 info: Database connected successfully -2025-08-26 22:13:34 info: Database connected successfully -2025-08-26 22:13:52 info: Router created for room: da1fc6ec-718f-4652-ae87-a141a5d4a829 -2025-08-26 22:13:52 info: WebRTC Server created -2025-08-26 22:15:51 info: Database connected successfully -2025-08-26 22:15:58 info: Router created for room: 35c7c1a8-2bbd-4b4c-a529-e1e87271b940 -2025-08-26 22:15:58 info: WebRTC Server created -2025-08-26 22:17:30 info: Database connected successfully -2025-08-26 22:17:35 info: Router created for room: 4b0f6204-9ff1-47af-9856-c04152193316 -2025-08-26 22:17:35 info: WebRTC Server created -2025-08-26 22:18:57 info: Database connected successfully -2025-08-26 22:19:01 info: Router created for room: 5bb8ea61-a051-4cfa-827d-6216e3604b94 -2025-08-26 22:19:01 info: WebRTC Server created -2025-08-26 22:19:42 info: Database connected successfully -2025-08-26 22:19:46 info: Router created for room: 086847d8-bda9-4bed-918e-e6caf0beff73 -2025-08-26 22:19:46 info: WebRTC Server created -2025-08-26 22:22:16 info: Database connected successfully -2025-08-26 22:22:20 info: Router created for room: 61f6b03e-30da-4b13-b44b-1e0f93ed7f47 -2025-08-26 22:22:20 info: WebRTC Server created -2025-08-26 22:25:00 info: Database connected successfully -2025-08-26 22:25:17 info: Database connected successfully -2025-08-26 22:26:06 info: Database connected successfully -2025-08-26 22:26:24 info: Router created for room: e3074027-8656-4f16-8794-917edf0e4ac8 -2025-08-26 22:26:24 info: WebRTC Server created -2025-08-26 22:28:07 info: Database connected successfully -2025-08-26 22:28:14 info: Router created for room: f275e631-6075-4800-9edf-edd6d0c38b7e -2025-08-26 22:28:14 info: WebRTC Server created -2025-08-26 22:31:35 info: Database connected successfully -2025-08-26 22:31:49 info: Database connected successfully -2025-08-26 22:31:54 info: Router created for room: 45df3dbe-33d4-466d-9d5a-c8dc71a7eadd -2025-08-26 22:31:54 info: WebRTC Server created -2025-08-26 22:32:31 info: Database connected successfully -2025-08-26 22:32:39 info: Router created for room: b1670069-2519-4842-a6b3-78f729c2e26f -2025-08-26 22:32:39 info: WebRTC Server created -2025-08-26 22:33:58 info: Database connected successfully -2025-08-26 22:34:10 info: Database connected successfully -2025-08-26 22:34:23 info: Router created for room: f976f8af-fedb-4e7e-96fa-2209b70beb17 -2025-08-26 22:34:23 info: WebRTC Server created -2025-08-26 22:34:24 error: TypeError: transport.produce is not a function - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:207:40) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-26 22:39:37 info: Database connected successfully -2025-08-26 22:39:47 info: Router created for room: 8faf9a4d-bacc-4965-8606-bbc71cf160cd -2025-08-26 22:39:47 info: WebRTC Server created -2025-08-26 22:39:48 error: TypeError: transport.produce is not a function - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:207:40) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-26 22:42:46 info: Database connected successfully -2025-08-26 22:42:55 info: Router created for room: 75792aff-a28e-47e0-b8bb-d7c50320ce08 -2025-08-26 22:42:55 info: WebRTC Server created -2025-08-26 22:42:56 error: TypeError: Cannot read properties of undefined (reading 'id') - at D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:200:28 - at Array.find () - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:199:48) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-26 22:46:31 info: Database connected successfully -2025-08-26 22:46:37 info: Router created for room: 891053f3-39b7-4341-838e-e7560c0e21be -2025-08-26 22:46:37 info: WebRTC Server created -2025-08-26 23:02:54 info: Database connected successfully -2025-08-26 23:03:54 info: Database connected successfully -2025-08-26 23:04:06 info: Router created for room: 110bc2f4-f8fb-42e7-a0ea-f7fd672bbdf7 -2025-08-26 23:04:06 info: WebRTC Server created -2025-08-26 23:05:45 info: Database connected successfully -2025-08-26 23:05:47 info: Router created for room: 051f52c0-0117-4a58-ba49-2a7b6b6f02a7 -2025-08-26 23:05:47 info: WebRTC Server created -2025-08-26 23:06:05 info: Database connected successfully -2025-08-26 23:06:25 info: Router created for room: cc7317a3-e918-48f6-a949-10f673568dd3 -2025-08-26 23:06:25 info: WebRTC Server created -2025-08-26 23:11:40 info: Database connected successfully -2025-08-26 23:12:17 info: Router created for room: c3445405-d300-4ef9-b24a-bd5576abda62 -2025-08-26 23:12:17 info: WebRTC Server created -2025-08-27 19:44:05 info: Database connected successfully -2025-08-27 19:44:17 info: Router created for room: e59d99e2-a5ad-4c8b-9e50-c83435938193 -2025-08-27 19:44:17 info: WebRTC Server created -2025-08-27 19:47:33 info: Database connected successfully -2025-08-27 19:47:39 info: Router created for room: 31804563-d4b0-4859-b0d8-4a61e790d123 -2025-08-27 19:47:39 info: WebRTC Server created -2025-08-27 19:50:06 info: Database connected successfully -2025-08-27 19:50:22 info: Router created for room: 749095cc-c771-4963-b3c6-329707348df8 -2025-08-27 19:50:22 info: WebRTC Server created -2025-08-27 19:51:46 info: Database connected successfully -2025-08-27 19:51:56 info: Database connected successfully -2025-08-27 19:52:16 info: Database connected successfully -2025-08-27 19:52:30 info: Router created for room: d8e2a620-f47e-404f-8eba-602670cc7a47 -2025-08-27 19:52:30 info: WebRTC Server created -2025-08-27 19:57:38 info: Database connected successfully -2025-08-27 19:57:41 info: Router created for room: 30bf85d6-3ea9-42cd-b78c-0c83107cb29c -2025-08-27 19:57:41 info: WebRTC Server created -2025-08-27 20:00:44 info: Database connected successfully -2025-08-27 20:00:53 info: Router created for room: e6e217fd-d166-48ef-a8ff-46d10e247384 -2025-08-27 20:00:53 info: WebRTC Server created -2025-08-27 20:02:34 info: Database connected successfully -2025-08-27 20:02:37 info: Router created for room: 9e73dda5-f4f5-44dc-99d5-8bae0a2a7794 -2025-08-27 20:02:37 info: WebRTC Server created -2025-08-27 20:06:27 info: Database connected successfully -2025-08-27 20:06:43 info: Database connected successfully -2025-08-27 20:06:56 info: Router created for room: e03d3992-1edc-46b7-abe7-b7dd9dbfa3fb -2025-08-27 20:06:56 info: WebRTC Server created -2025-08-27 20:13:44 info: Database connected successfully -2025-08-27 20:13:56 info: Router created for room: eb81bbce-a3d6-4007-adb7-2d3152b24d51 -2025-08-27 20:13:56 info: WebRTC Server created -2025-08-27 20:17:21 info: Database connected successfully -2025-08-27 20:17:37 info: Router created for room: b4df22f7-ab02-49d7-b947-0933f5b3db90 -2025-08-27 20:17:37 info: WebRTC Server created -2025-08-27 20:19:24 info: Database connected successfully -2025-08-27 20:19:27 info: Router created for room: 9b6d0146-aa69-4e32-8faa-8a4927b3eca2 -2025-08-27 20:19:27 info: WebRTC Server created -2025-08-27 20:27:10 info: Database connected successfully -2025-08-27 20:46:58 info: Database connected successfully -2025-08-27 20:47:08 info: Router created for room: ef4f1a82-2fdf-44fa-b00a-6e3871ca32a2 -2025-08-27 20:47:08 info: WebRTC Server created -2025-08-27 20:48:32 info: Database connected successfully -2025-08-27 20:48:51 info: Router created for room: e3543609-514e-4264-ae58-f95fdf2633d3 -2025-08-27 20:48:51 info: WebRTC Server created -2025-08-28 10:36:28 info: Database connected successfully -2025-08-28 10:36:42 info: Router created for room: 9b6def0e-0be4-434c-9d86-a24f17531527 -2025-08-28 10:36:42 info: WebRTC Server created -2025-08-28 10:38:19 info: Database connected successfully -2025-08-28 10:38:26 info: Router created for room: ae2179c6-2275-4fc9-b311-21ed30dd56ba -2025-08-28 10:38:26 info: WebRTC Server created -2025-08-28 10:41:48 info: Database connected successfully -2025-08-28 10:42:02 info: Router created for room: 899bffb7-d7e9-4268-ad54-d9c549e6bb3f -2025-08-28 10:42:02 info: WebRTC Server created -2025-08-28 10:44:08 info: Database connected successfully -2025-08-28 10:44:16 info: Router created for room: 206cb9b9-ea83-48cd-947b-664588e50f72 -2025-08-28 10:44:16 info: WebRTC Server created -2025-08-28 10:50:35 info: Database connected successfully -2025-08-28 10:50:39 info: Router created for room: a84872ed-bfe4-4789-88ec-9c613ebb0807 -2025-08-28 10:50:39 info: WebRTC Server created -2025-08-28 10:51:42 info: Database connected successfully -2025-08-28 10:52:33 info: Database connected successfully -2025-08-28 10:52:40 info: Router created for room: 0c4b5da2-9bd6-4e0d-8c0c-217adb203392 -2025-08-28 10:52:40 info: WebRTC Server created -2025-08-28 11:01:14 info: Database connected successfully -2025-08-28 11:02:03 info: Database connected successfully -2025-08-28 11:02:59 info: Database connected successfully -2025-08-28 11:31:48 info: Database connected successfully -2025-08-28 11:32:40 info: Router created for room: 290a43ff-fb46-44e4-8a2a-a9813fdb439d -2025-08-28 11:32:40 info: WebRTC Server created -2025-08-28 11:33:40 info: Database connected successfully -2025-08-28 11:33:46 info: Router created for room: 1e036ac2-dc9d-4e69-b5d2-7fbf42b99d48 -2025-08-28 11:33:46 info: WebRTC Server created -2025-08-28 11:35:03 info: Database connected successfully -2025-08-28 11:36:10 info: Database connected successfully -2025-08-28 11:36:26 info: Database connected successfully -2025-08-28 11:36:31 info: Router created for room: ec3371da-4a76-4929-87f8-fda4b46cbb99 -2025-08-28 11:36:31 info: WebRTC Server created -2025-08-28 11:39:17 info: Database connected successfully -2025-08-28 11:39:23 info: Router created for room: 072e2736-c410-47ca-be04-f1e8daa09a18 -2025-08-28 11:39:23 info: WebRTC Server created -2025-08-28 13:28:17 info: Database connected successfully -2025-08-28 13:28:21 info: Router created for room: 6965b730-971c-4230-885c-f4ff8cdf807c -2025-08-28 13:28:21 info: WebRTC Server created -2025-08-28 13:30:15 info: Database connected successfully -2025-08-28 13:30:28 info: Database connected successfully -2025-08-28 13:30:31 info: Router created for room: 46bc9cca-ca6a-4bf8-9b9f-80be4c01bfdd -2025-08-28 13:30:31 info: WebRTC Server created -2025-08-28 13:31:44 info: Database connected successfully -2025-08-28 13:31:55 info: Router created for room: 9e938d5b-9424-4f11-a598-1754e882da3e -2025-08-28 13:31:55 info: WebRTC Server created -2025-08-28 13:35:49 info: Database connected successfully -2025-08-28 13:35:52 info: Router created for room: e745d1c4-7858-4d79-8120-33847cbe58ee -2025-08-28 13:35:52 info: WebRTC Server created -2025-08-28 13:37:43 info: Database connected successfully -2025-08-28 13:37:52 info: Router created for room: 98866e0d-564e-4fb1-8b36-69ee096bdec1 -2025-08-28 13:37:52 info: WebRTC Server created -2025-08-28 13:38:09 info: Database connected successfully -2025-08-28 13:38:18 info: Router created for room: f875fc1b-04f7-455e-a4f6-b7b9ccdbf02c -2025-08-28 13:38:18 info: WebRTC Server created -2025-08-28 13:39:08 info: Database connected successfully -2025-08-28 13:39:34 info: Database connected successfully -2025-08-28 13:39:34 info: Router created for room: 15b5990d-cac8-4cad-8a68-d7233cd608c4 -2025-08-28 13:39:34 info: WebRTC Server created -2025-08-28 13:39:35 info: Router created for room: 4892c487-cb39-4435-b288-b13bb90422c8 -2025-08-28 13:39:35 info: WebRTC Server created -2025-08-28 13:40:04 info: Database connected successfully -2025-08-28 13:40:09 info: Router created for room: 21616a91-dba4-4cd1-bfee-434007a1b21b -2025-08-28 13:40:09 info: WebRTC Server created -2025-08-28 13:40:14 error: Viewer does not exist with socketId : undefined -2025-08-28 13:40:14 error: Viewer does not exist with socketId : undefined -2025-08-28 13:43:19 info: Database connected successfully -2025-08-28 13:43:32 info: Database connected successfully -2025-08-28 13:43:40 info: Router created for room: 56cca2fe-3aa7-4451-90dc-2e54415e9cb3 -2025-08-28 13:43:40 info: WebRTC Server created -2025-08-28 13:43:46 error: Viewer consumer does not exist -2025-08-28 13:43:46 error: Viewer consumer does not exist -2025-08-28 13:46:04 info: Database connected successfully -2025-08-28 13:47:51 info: Database connected successfully -2025-08-28 13:47:53 info: Router created for room: c063045b-aacc-4966-a46c-7508c081f1f7 -2025-08-28 13:47:53 info: WebRTC Server created -2025-08-28 13:48:00 error: Viewer consumer does not exist -2025-08-28 13:48:01 error: Viewer consumer does not exist -2025-08-28 13:48:31 info: Database connected successfully -2025-08-28 13:48:39 info: Router created for room: 89354ed2-f521-4d0b-9dec-5cd0f7e98c6a -2025-08-28 13:48:39 info: WebRTC Server created -2025-08-28 13:48:44 error: Viewer consumer does not exist -2025-08-28 13:48:44 error: Viewer consumer does not exist -2025-08-28 13:50:01 info: Database connected successfully -2025-08-28 13:51:24 info: Router created for room: 1820b996-4a0b-4a25-af8e-dfa5a5849ce2 -2025-08-28 13:51:24 info: WebRTC Server created -2025-08-28 13:51:30 error: Viewer consumer does not exist -2025-08-28 13:51:30 error: Viewer consumer does not exist -2025-08-28 13:52:16 info: Database connected successfully -2025-08-28 13:52:42 info: Database connected successfully -2025-08-28 13:54:48 info: Database connected successfully -2025-08-28 13:54:54 info: Router created for room: 5ed0e914-db2d-466e-af03-c33016a100c0 -2025-08-28 13:54:54 info: WebRTC Server created -2025-08-28 13:54:58 error: Viewer consumer does not exist -2025-08-28 13:54:58 error: Viewer consumer does not exist -2025-08-28 13:55:33 info: Database connected successfully -2025-08-28 13:55:56 info: Database connected successfully -2025-08-28 13:56:01 info: Router created for room: 252afd2c-e912-48f4-8abe-d7a1116d9bae -2025-08-28 13:56:01 info: WebRTC Server created -2025-08-28 13:56:05 error: Viewer consumer does not exist -2025-08-28 13:56:05 error: Viewer consumer does not exist -2025-08-28 13:59:37 info: Database connected successfully -2025-08-28 13:59:40 info: Router created for room: f277b4c3-6668-46c7-97fb-6cee61031507 -2025-08-28 13:59:40 info: WebRTC Server created -2025-08-28 13:59:48 error: Viewer consumer does not exist -2025-08-28 13:59:48 error: Viewer consumer does not exist -2025-08-28 14:03:43 info: Database connected successfully -2025-08-28 14:03:48 info: Router created for room: 3cdc6ee1-00ac-4c19-973a-4868e65fd9c6 -2025-08-28 14:03:48 info: WebRTC Server created -2025-08-28 14:07:29 info: Database connected successfully -2025-08-28 14:07:33 info: Router created for room: 3a5c375c-d057-4dc9-8b58-f479258ba776 -2025-08-28 14:07:33 info: WebRTC Server created -2025-08-28 14:09:32 info: Database connected successfully -2025-08-28 14:09:41 info: Router created for room: e8b01138-437d-4cc9-b216-e71994c7d8ab -2025-08-28 14:09:41 info: WebRTC Server created -2025-08-28 14:09:49 info: Router created for room: 9bbea845-7e06-4b31-b548-2bb0e1e9fa07 -2025-08-28 14:09:49 info: WebRTC Server created -2025-08-28 14:10:08 info: Database connected successfully -2025-08-28 14:10:12 info: Router created for room: b2902db8-94cf-458a-81d9-8d7317af7928 -2025-08-28 14:10:12 info: WebRTC Server created -2025-08-28 14:11:59 info: Database connected successfully -2025-08-28 14:12:26 info: Router created for room: 9868d24e-b5f4-4f2c-a57f-c5f7fd92300d -2025-08-28 14:12:26 info: WebRTC Server created -2025-08-28 14:15:27 info: Database connected successfully -2025-08-28 14:15:37 info: Router created for room: 00ac2b19-22a4-4e95-af03-f9fc4dbc4165 -2025-08-28 14:15:37 info: WebRTC Server created -2025-08-28 14:22:28 info: Database connected successfully -2025-08-28 14:22:33 info: Router created for room: 39076d26-2e11-45c6-b8e1-51a0e64dcaad -2025-08-28 14:22:33 info: WebRTC Server created -2025-08-28 14:25:12 info: Database connected successfully -2025-08-28 14:25:17 info: Router created for room: 22694ee3-e9d8-4096-9318-4597831e86e8 -2025-08-28 14:25:17 info: WebRTC Server created -2025-08-28 14:28:52 info: Database connected successfully -2025-08-28 14:29:33 info: Database connected successfully -2025-08-28 14:30:15 info: Database connected successfully -2025-08-28 14:30:16 info: Router created for room: 8f75da57-7e75-418a-a6d4-75b90d148f4d -2025-08-28 14:30:16 info: WebRTC Server created -2025-08-28 14:30:16 info: Router created for room: 30e38e77-e2a2-4017-afe1-31278569b63b -2025-08-28 14:30:16 info: WebRTC Server created -2025-08-28 14:30:17 error: Error connecting transport -2025-08-28 14:30:18 error: Error: MID already exists in RTP listener [mid:0] [method:transport.produce] - at Channel.processResponse (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:251:33) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:76:34) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:191:23) -2025-08-28 14:30:55 info: Database connected successfully -2025-08-28 14:32:37 info: Database connected successfully -2025-08-28 14:33:06 info: Database connected successfully -2025-08-28 14:38:52 info: Database connected successfully -2025-08-28 14:39:03 info: Router created for room: f85ef41b-8a86-4413-9753-f994a2ff47d6 -2025-08-28 14:39:03 info: WebRTC Server created -2025-08-28 14:45:14 info: Database connected successfully -2025-08-28 14:45:21 info: Router created for room: 5de6b44e-93d7-4344-95b9-cae3052af344 -2025-08-28 14:45:21 info: WebRTC Server created -2025-08-28 14:45:43 info: Database connected successfully -2025-08-28 14:45:52 info: Router created for room: b99b8e20-6795-4ae1-9a6a-12982336845e -2025-08-28 14:45:52 info: WebRTC Server created -2025-08-28 14:46:10 info: Database connected successfully -2025-08-28 14:46:19 info: Router created for room: 9fec38ce-b49d-4831-aa5c-5f9bb4043450 -2025-08-28 14:46:19 info: WebRTC Server created -2025-08-28 14:54:05 info: Database connected successfully -2025-08-28 14:54:09 info: Router created for room: abc3590c-0cdc-4b80-8b61-d003b3f96424 -2025-08-28 14:54:09 info: WebRTC Server created -2025-08-28 14:59:00 info: Database connected successfully -2025-08-28 14:59:36 info: Database connected successfully -2025-08-28 14:59:38 info: Router created for room: 5812a04b-8ad7-4257-8869-e1b81dd91bfb -2025-08-28 14:59:38 info: WebRTC Server created -2025-08-28 15:10:02 info: Database connected successfully -2025-08-28 15:10:16 info: Router created for room: 52eb508e-fc1a-46da-a525-5a8a6d9f2f91 -2025-08-28 15:10:16 info: WebRTC Server created -2025-09-02 12:25:48 info: Database connected successfully -2025-09-02 12:25:56 info: Router created for room: 7533b5ff-5d80-492b-9bcf-e29551d0b903 -2025-09-02 12:25:56 info: WebRTC Server created -2025-09-02 12:27:48 info: Database connected successfully -2025-09-02 12:28:04 info: Database connected successfully -2025-09-02 12:28:12 info: Router created for room: 49e281fc-58f4-4d18-bc5f-6608839bb3ac -2025-09-02 12:28:12 info: WebRTC Server created -2025-09-02 12:29:55 info: Database connected successfully -2025-09-02 12:40:49 info: Database connected successfully -2025-09-02 12:40:54 info: Router created for room: ffbcfad4-cdc9-4ba3-8591-c2d1c0678f04 -2025-09-02 12:40:54 info: WebRTC Server created -2025-09-02 12:45:01 info: Database connected successfully -2025-09-02 12:45:05 info: Router created for room: eede87b7-fc65-4b09-a83e-43bed06d22dc -2025-09-02 12:45:05 info: WebRTC Server created -2025-09-02 12:48:32 info: Database connected successfully -2025-09-02 12:51:54 info: Database connected successfully -2025-09-02 12:52:01 info: Router created for room: dde9ddd2-d50c-4efb-81ad-5a60f6dd56f9 -2025-09-02 12:52:01 info: WebRTC Server created -2025-09-02 12:52:46 info: Database connected successfully -2025-09-02 12:53:00 info: Router created for room: 018f4470-2588-4d7a-b996-9ed3a421d0c0 -2025-09-02 12:53:00 info: WebRTC Server created -2025-09-02 12:53:39 info: Database connected successfully -2025-09-02 12:53:45 info: Router created for room: 2d7e0f48-632a-428e-a349-73012b5535d2 -2025-09-02 12:53:45 info: WebRTC Server created -2025-09-02 12:57:26 info: Database connected successfully -2025-09-02 12:57:30 info: Router created for room: 7f74bd29-5dfe-4cf6-a560-0234a6b07c1b -2025-09-02 12:57:30 info: WebRTC Server created -2025-09-02 13:02:35 info: Database connected successfully -2025-09-02 13:02:37 info: Router created for room: 00b81b94-97cf-4f89-b6ec-584a6ad57cb5 -2025-09-02 13:02:37 info: WebRTC Server created -2025-09-02 13:04:53 info: Database connected successfully -2025-09-02 13:05:22 info: Router created for room: 44e35c0b-119c-4878-9356-f1e74d9e9ec1 -2025-09-02 13:05:22 info: WebRTC Server created -2025-09-02 13:06:55 info: Database connected successfully -2025-09-02 13:07:07 info: Router created for room: 477e5960-b4b5-47a2-9c3a-f399eedda95a -2025-09-02 13:07:07 info: WebRTC Server created -2025-09-02 13:14:43 info: Database connected successfully -2025-09-02 13:14:49 info: Router created for room: 49a48e79-534b-4a85-bda9-1b1a9e99223f -2025-09-02 13:14:49 info: WebRTC Server created -2025-09-02 13:19:18 info: Database connected successfully -2025-09-02 13:19:29 info: Router created for room: 27dda7e3-1518-414f-87b3-4264042ddc2c -2025-09-02 13:19:29 info: WebRTC Server created -2025-09-02 13:22:29 info: Database connected successfully -2025-09-02 13:22:33 info: Router created for room: 513039fb-31f4-4df8-9c1b-d9e1fe506dbd -2025-09-02 13:22:33 info: WebRTC Server created -2025-09-02 13:25:20 info: Database connected successfully -2025-09-02 13:25:23 info: Router created for room: 78122b39-470b-43f6-bc4c-c9487a4ce76c -2025-09-02 13:25:23 info: WebRTC Server created -2025-09-02 13:27:36 info: Database connected successfully -2025-09-02 13:27:39 info: Router created for room: 884a2612-9ccb-4a2d-9d9c-c0f6bd9d8254 -2025-09-02 13:27:39 info: WebRTC Server created -2025-09-02 13:29:38 info: Database connected successfully -2025-09-02 13:29:46 info: Router created for room: 54e837c5-837a-4ca5-9147-58eeab2daf6f -2025-09-02 13:29:46 info: WebRTC Server created -2025-09-02 13:34:09 info: Database connected successfully -2025-09-02 13:34:15 info: Router created for room: 22fbb0fe-8731-478d-810b-d42e87d79e56 -2025-09-02 13:34:15 info: WebRTC Server created -2025-09-02 13:35:43 info: Database connected successfully -2025-09-02 13:35:50 info: Router created for room: 73dea713-5d6d-4d43-a7df-2ae6ead25aa7 -2025-09-02 13:35:50 info: WebRTC Server created -2025-09-02 13:36:28 info: Database connected successfully -2025-09-02 13:36:31 info: Router created for room: 98b84c64-9544-4148-94ad-414948127abf -2025-09-02 13:36:31 info: WebRTC Server created -2025-09-02 13:40:26 info: Database connected successfully -2025-09-02 13:41:22 info: Database connected successfully -2025-09-02 13:41:45 info: Database connected successfully -2025-09-02 13:42:02 info: Database connected successfully -2025-09-02 13:42:06 info: Router created for room: 659e1d27-02df-4ead-86a1-95c0a3c1e1f3 -2025-09-02 13:42:06 info: WebRTC Server created -2025-09-02 13:42:07 error: TypeError: Cannot read properties of undefined (reading 'readyState') - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:250:64) - at processTicksAndRejections (node:internal/process/task_queues:95:5) -2025-09-02 13:42:46 info: Database connected successfully -2025-09-02 13:42:50 info: Router created for room: ff98e377-113e-4673-ab0a-eae5edf37d7f -2025-09-02 13:42:50 info: WebRTC Server created -2025-09-02 13:51:32 info: Database connected successfully -2025-09-02 13:51:41 info: Router created for room: 94a1df10-cad2-4ad3-a217-b90961d2a5c7 -2025-09-02 13:51:41 info: WebRTC Server created -2025-09-02 13:53:42 info: Database connected successfully -2025-09-02 13:54:20 info: Router created for room: 766e8a35-1f81-4664-8e97-91c38d339679 -2025-09-02 13:54:20 info: WebRTC Server created -2025-09-02 13:54:41 info: Router created for room: b37aaa20-2d0d-4321-8ecf-15d308e5368c -2025-09-02 13:54:41 info: WebRTC Server created -2025-09-02 13:55:06 info: Database connected successfully -2025-09-02 13:55:09 info: Router created for room: 8b8dfba9-41c4-4a06-8499-46e9a41b56d5 -2025-09-02 13:55:09 info: WebRTC Server created -2025-09-02 13:55:37 info: Database connected successfully -2025-09-02 13:55:41 info: Router created for room: adf22434-65a9-450b-9013-0413f85248cf -2025-09-02 13:55:41 info: WebRTC Server created -2025-09-02 13:56:26 info: Database connected successfully -2025-09-02 13:57:22 info: Database connected successfully -2025-09-02 13:57:42 info: Database connected successfully -2025-09-02 13:57:55 info: Router created for room: 4c5fee64-a539-4df9-b446-e1f0968e489c -2025-09-02 13:57:55 info: WebRTC Server created -2025-09-02 13:58:19 info: Database connected successfully -2025-09-02 13:58:22 info: Router created for room: b32c6932-d795-4a3e-8a27-32017fe18972 -2025-09-02 13:58:22 info: WebRTC Server created -2025-09-02 14:00:26 info: Database connected successfully -2025-09-02 14:00:32 info: Router created for room: 5c482caf-f2e5-4b5e-bb10-77677beb0db3 -2025-09-02 14:00:32 info: WebRTC Server created -2025-09-02 14:01:21 info: Database connected successfully -2025-09-02 14:01:41 info: Router created for room: f048098b-3383-499c-9713-1af1099f2407 -2025-09-02 14:01:41 info: WebRTC Server created -2025-09-02 14:01:55 info: Database connected successfully -2025-09-02 14:02:03 info: Router created for room: 651225d8-8f4a-4055-a47a-23ade78b23e0 -2025-09-02 14:02:03 info: WebRTC Server created -2025-09-02 14:03:46 info: Database connected successfully -2025-09-02 14:03:52 info: Router created for room: 2d6fb657-5336-4842-a2d8-106257a1dc9d -2025-09-02 14:03:52 info: WebRTC Server created -2025-09-02 14:06:20 info: Database connected successfully -2025-09-02 14:06:38 info: Database connected successfully -2025-09-02 14:06:46 info: Router created for room: e942a1c3-bd42-4468-a9a8-dac4f6ea6351 -2025-09-02 14:06:46 info: WebRTC Server created -2025-09-02 14:12:03 info: Database connected successfully -2025-09-02 14:12:11 info: Router created for room: 380651e0-47a7-4710-b256-97d63f8f46a5 -2025-09-02 14:12:11 info: WebRTC Server created -2025-09-02 14:13:40 info: Database connected successfully -2025-09-02 14:15:09 info: Database connected successfully -2025-09-02 14:15:29 info: Database connected successfully -2025-09-02 14:15:35 info: Router created for room: 58a81f61-a9c3-490d-91bc-b394af32abfe -2025-09-02 14:15:35 info: WebRTC Server created -2025-09-02 14:16:07 info: Database connected successfully -2025-09-02 14:16:22 info: Database connected successfully -2025-09-02 14:16:28 info: Router created for room: 0ebcdf73-e957-4c6f-ab7d-1ff5ae1a6b19 -2025-09-02 14:16:28 info: WebRTC Server created -2025-09-02 14:21:05 info: Database connected successfully -2025-09-02 14:21:10 info: Router created for room: 986fd436-d3cf-4172-b7fb-94fdba51a986 -2025-09-02 14:21:10 info: WebRTC Server created -2025-09-02 14:29:27 info: Database connected successfully -2025-09-02 14:29:41 info: Router created for room: 6bafab1a-3f0c-4151-91aa-86e4d01b41a2 -2025-09-02 14:29:41 info: WebRTC Server created -2025-09-02 14:30:29 info: Database connected successfully -2025-09-02 14:30:35 info: Router created for room: 777e145c-b806-43cd-bade-9f1b3eb7bbb4 -2025-09-02 14:30:35 info: WebRTC Server created -2025-09-03 16:06:20 error: MongoNetworkError: read ECONNRESET - at Connection.onSocketError (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mongodb\src\cmap\connection.ts:308:18) - at TLSSocket.emit (node:events:531:35) - at TLSSocket.emit (node:domain:488:12) - at emitErrorNT (node:internal/streams/destroy:169:8) - at emitErrorCloseNT (node:internal/streams/destroy:128:3) - at processTicksAndRejections (node:internal/process/task_queues:82:21) -2025-09-03 16:06:37 info: Database connected successfully -2025-09-03 16:06:53 info: Router created for room: ac14d141-4a2a-4674-930e-9daaf1a24ac2 -2025-09-03 16:06:53 info: WebRTC Server created -2025-09-03 16:13:22 info: Database connected successfully -2025-09-03 16:13:39 info: Router created for room: 42d062a1-149d-4d79-b028-52a6d604f676 -2025-09-03 16:13:39 info: WebRTC Server created -2025-09-03 16:25:05 info: Database connected successfully -2025-09-03 16:25:16 info: Router created for room: e9a3a196-24b1-4b56-86cc-c1e087843498 -2025-09-03 16:25:16 info: WebRTC Server created -2025-09-03 17:23:32 info: Database connected successfully -2025-09-03 17:23:54 info: Router created for room: cd8de01b-f686-41ec-9118-bcbd5456d7a4 -2025-09-03 17:23:54 info: WebRTC Server created -2025-09-03 17:24:44 info: Router created for room: 5b9e511f-97f0-4867-9752-292e5fc70219 -2025-09-03 17:24:44 info: WebRTC Server created -2025-09-03 17:24:50 error: Viewer consumer does not exist -2025-09-03 17:24:50 error: Viewer already exists in the database -2025-09-03 17:32:08 info: Database connected successfully -2025-09-03 17:32:37 info: Database connected successfully -2025-09-03 17:32:38 info: Router created for room: 5b0496ed-3930-40c9-9e6b-949a8bb7ad1b -2025-09-03 17:32:38 info: WebRTC Server created -2025-09-03 17:37:48 info: Database connected successfully -2025-09-03 17:37:57 info: Router created for room: d069a412-2642-4f15-a103-d249d601280b -2025-09-03 17:37:57 info: WebRTC Server created -2025-09-03 17:38:18 error: Viewer already exists in the database -2025-09-03 17:39:23 info: Database connected successfully -2025-09-03 17:39:47 info: Database connected successfully -2025-09-03 17:39:51 info: Router created for room: 1a42bff1-b0c8-448f-844b-5995c1be1526 -2025-09-03 17:39:51 info: WebRTC Server created -2025-09-03 17:40:49 info: Database connected successfully -2025-09-03 17:40:57 info: Router created for room: 980a91eb-4e45-4a56-9cf7-4daf1c798cf2 -2025-09-03 17:40:57 info: WebRTC Server created -2025-09-03 19:03:01 info: Database connected successfully -2025-09-03 19:03:07 info: Router created for room: eab7b454-e603-478f-bca6-492c98c65d8d -2025-09-03 19:03:07 info: WebRTC Server created -2025-09-03 19:08:47 info: Database connected successfully -2025-09-03 19:08:51 info: Router created for room: 9c9bcbb8-61d8-4ace-b806-d63d7d5718e8 -2025-09-03 19:08:51 info: WebRTC Server created -2025-09-03 19:09:49 info: Database connected successfully -2025-09-03 19:12:06 info: Database connected successfully -2025-09-03 19:12:11 info: Router created for room: 6089e101-f627-41e0-b81f-7ad38301990f -2025-09-03 19:12:11 info: WebRTC Server created -2025-09-03 19:12:36 info: Router created for room: 87c4bac3-d261-490e-8c4a-1ab559f601f5 -2025-09-03 19:12:36 info: WebRTC Server created -2025-09-03 19:13:12 info: Database connected successfully -2025-09-03 19:13:27 info: Router created for room: bf08ac6b-7077-4eff-8d06-d3d31ff10fc6 -2025-09-03 19:13:27 info: WebRTC Server created -2025-09-03 19:15:10 info: Database connected successfully -2025-09-03 19:15:22 info: Router created for room: d176613b-9360-4617-bbca-ca37e9cfa01a -2025-09-03 19:15:22 info: WebRTC Server created -2025-09-03 19:16:04 info: Database connected successfully -2025-09-03 19:17:40 info: Database connected successfully -2025-09-03 19:18:05 info: Database connected successfully -2025-09-03 19:18:22 info: Database connected successfully -2025-09-03 19:18:27 info: Router created for room: b238410a-365d-49c0-9269-ecf4203641a2 -2025-09-03 19:18:27 info: WebRTC Server created -2025-09-03 19:25:25 info: Database connected successfully -2025-09-03 19:26:00 info: Database connected successfully -2025-09-03 19:26:35 info: Database connected successfully -2025-09-03 19:26:53 info: Router created for room: 997a052e-649a-414b-8df5-681be5e09303 -2025-09-03 19:26:53 info: WebRTC Server created -2025-09-03 19:28:39 info: Database connected successfully -2025-09-03 19:28:43 info: Router created for room: 6a2d5c3e-3146-47f7-904d-783f44c72a80 -2025-09-03 19:28:43 info: WebRTC Server created -2025-09-03 19:30:04 info: Database connected successfully -2025-09-03 19:30:09 info: Router created for room: 3a04b74d-48f5-4b61-851a-dd12ac80ce37 -2025-09-03 19:30:09 info: WebRTC Server created -2025-09-03 19:31:48 info: Database connected successfully -2025-09-03 19:32:40 info: Database connected successfully -2025-09-03 19:33:06 info: Database connected successfully -2025-09-03 19:33:10 info: Router created for room: b500a6dd-91fb-4f2b-8f51-d47c6112bbbb -2025-09-03 19:33:10 info: WebRTC Server created -2025-09-03 19:35:56 info: Database connected successfully -2025-09-03 19:36:28 info: Database connected successfully -2025-09-03 19:37:00 info: Database connected successfully -2025-09-03 19:37:27 info: Database connected successfully -2025-09-03 19:37:38 info: Database connected successfully -2025-09-03 19:37:54 info: Database connected successfully -2025-09-03 19:38:18 info: Database connected successfully -2025-09-03 19:38:45 info: Database connected successfully -2025-09-03 19:38:57 info: Database connected successfully -2025-09-03 19:40:18 info: Database connected successfully -2025-09-03 19:40:26 info: Router created for room: ffee7b14-4a69-469e-8fcf-a7c7c8531a5b -2025-09-03 19:40:26 info: WebRTC Server created -2025-09-03 19:42:10 info: Database connected successfully -2025-09-03 19:46:25 info: Database connected successfully -2025-09-03 19:46:52 info: Router created for room: 5b5139d2-b6dc-4f22-959b-e955a6fb68a5 -2025-09-03 19:46:52 info: WebRTC Server created -2025-09-03 19:47:23 info: Database connected successfully -2025-09-03 19:47:28 info: Router created for room: e657776a-66a4-4fd4-8c1f-f522b0b20c4d -2025-09-03 19:47:28 info: WebRTC Server created -2025-09-03 19:48:31 info: Database connected successfully -2025-09-03 19:48:57 info: Database connected successfully -2025-09-03 19:49:10 info: Database connected successfully -2025-09-03 19:54:48 info: Database connected successfully -2025-09-03 19:56:02 info: Database connected successfully -2025-09-03 19:56:28 info: Router created for room: bb7e5109-af12-4d91-aa94-acc5826370c9 -2025-09-03 19:56:28 info: WebRTC Server created -2025-09-03 19:56:45 info: Viewer with socketId: V7mRQMczN6M6FlAvAAAF has left the live stream -2025-09-03 19:57:36 info: Database connected successfully -2025-09-03 19:57:43 info: Router created for room: dceb754b-2f0f-4453-8485-a5e87c12e0ae -2025-09-03 19:57:43 info: WebRTC Server created -2025-09-03 19:57:57 info: Viewer with socketId: ARJ8dcg0VS92wDbqAAAB has left the live stream -2025-09-03 19:58:05 info: Broadcaster with socketId: 95BzApW7eSSbqQvpAAAD has left the live stream -2025-09-03 20:01:13 info: Database connected successfully -2025-09-03 20:01:18 info: Router created for room: 4eae91b5-589f-4676-b94b-2907c8cc63b9 -2025-09-03 20:01:18 info: WebRTC Server created -2025-09-03 20:01:29 info: Viewer with socketId: SlT-a8mKIGoEOhmoAAAB has left the live stream -2025-09-03 20:01:39 info: Broadcaster with socketId: ud4-UIzacSg3kBaVAAAD has left the live stream -2025-09-03 20:02:42 info: Database connected successfully -2025-09-03 20:02:45 info: Router created for room: 5213e566-eaee-471c-bebd-a424a8aa84ed -2025-09-03 20:02:45 info: WebRTC Server created -2025-09-03 20:02:51 info: Viewer with socketId: RKPV8vUk_f_UGwqSAAAB has left the live stream -2025-09-03 20:02:51 info: All clean up for the viewer are done -2025-09-03 20:02:58 info: Broadcaster with socketId: v90QOPVY1e4d7etYAAAD has left the live stream -2025-09-03 20:02:58 info: All clean up for the broadcaster are done -2025-09-05 10:26:36 info: Database connected successfully -2025-09-05 10:26:43 info: Router created for room: 3fab5ddc-c4c7-4d72-adb5-3cc0c635ae52 -2025-09-05 10:26:43 info: WebRTC Server created -2025-09-05 10:27:03 info: Viewer with socketId: fMJGcOCAUWtqIe8WAAAF has left the live stream -2025-09-05 10:27:03 info: All clean up for the viewer are done -2025-09-05 10:27:05 info: Broadcaster with socketId: Tu-VER2K2MTlRD9TAAAD has left the live stream -2025-09-05 10:27:05 info: All clean up for the broadcaster are done -2025-09-05 11:08:17 info: Database connected successfully -2025-09-05 11:08:30 info: Router created for room: 738c2eba-79de-49bc-814d-fd23112483d8 -2025-09-05 11:08:30 info: WebRTC Server created -2025-09-05 11:09:00 info: Database connected successfully -2025-09-05 11:09:05 info: Router created for room: 73763665-e64c-4dbd-b56d-ebfba0f5fc8e -2025-09-05 11:09:05 info: WebRTC Server created -2025-09-05 11:11:59 info: Database connected successfully -2025-09-05 11:12:09 info: Database connected successfully -2025-09-05 11:12:15 info: Router created for room: eca1913f-7c90-4a6f-8f4b-f34c29d9b6c8 -2025-09-05 11:12:15 info: WebRTC Server created -2025-09-05 11:13:06 info: Database connected successfully -2025-09-05 11:13:24 info: Database connected successfully -2025-09-05 11:13:37 info: Database connected successfully -2025-09-05 11:14:02 info: Router created for room: 2d70bf3f-2d06-4e8f-806c-ee01144db45a -2025-09-05 11:14:02 info: WebRTC Server created -2025-09-05 11:15:55 info: Database connected successfully -2025-09-05 11:16:04 info: Router created for room: e5c70647-526c-453c-b480-ecdc1eea65cf -2025-09-05 11:16:04 info: WebRTC Server created -2025-09-05 11:17:36 info: Database connected successfully -2025-09-05 11:17:48 info: Database connected successfully -2025-09-05 11:18:04 info: Router created for room: 406e279d-6ea3-44da-a513-a6830635f6ce -2025-09-05 11:18:04 info: WebRTC Server created -2025-09-05 11:19:36 info: Database connected successfully -2025-09-05 11:20:09 info: Database connected successfully -2025-09-05 11:21:58 info: Database connected successfully -2025-09-05 11:22:19 info: Database connected successfully -2025-09-05 11:22:25 info: Router created for room: 19fa9306-3648-4536-8ae7-69d2ab97f953 -2025-09-05 11:22:25 info: WebRTC Server created -2025-09-05 11:23:10 info: Database connected successfully -2025-09-05 11:23:14 info: Router created for room: 2babfc0c-3e12-434a-aea2-cca7b22f4b1a -2025-09-05 11:23:14 info: WebRTC Server created -2025-09-05 11:25:31 info: Database connected successfully -2025-09-05 11:25:47 info: Database connected successfully -2025-09-05 11:25:55 info: Router created for room: 20613493-dbb0-44c8-a3ab-c5594f003802 -2025-09-05 11:25:55 info: WebRTC Server created -2025-09-05 11:26:03 error: ReferenceError: window is not defined - at requestToBecomeCoHost (D:\Web-Development\Projects\Croudly\live\backend\src\utils\coHost.utils.ts:25:26) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:283:50) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-09-05 11:26:38 info: Database connected successfully -2025-09-05 20:04:00 info: Database connected successfully -2025-09-05 20:04:08 info: Router created for room: d8be0d3c-3a61-41c3-a36e-2e525bbff1d3 -2025-09-05 20:04:08 info: WebRTC Server created -2025-09-05 20:08:32 info: Database connected successfully -2025-09-05 20:08:35 info: Router created for room: e61560b9-f1eb-407a-895e-80bd5d4a5814 -2025-09-05 20:08:35 info: WebRTC Server created -2025-09-05 20:09:23 info: Viewer with socketId: 1H5ya0rAuGGZe3SsAAAB has left the live stream -2025-09-05 20:09:23 info: All clean up for the viewer are done -2025-09-05 20:09:25 info: Broadcaster with socketId: lLKNQdnakfgrvw7LAAAD has left the live stream -2025-09-05 20:09:25 info: All clean up for the broadcaster are done -2025-09-05 20:11:15 info: Database connected successfully -2025-09-05 20:11:44 info: Database connected successfully -2025-09-05 20:12:22 info: Database connected successfully -2025-09-05 20:12:39 info: Database connected successfully -2025-09-05 20:12:56 info: Database connected successfully -2025-09-05 20:13:13 info: Database connected successfully -2025-09-05 20:14:28 info: Database connected successfully -2025-09-05 20:14:53 info: Database connected successfully -2025-09-05 20:16:20 info: Database connected successfully -2025-09-05 20:17:23 info: Database connected successfully -2025-09-05 20:17:36 info: Database connected successfully -2025-09-05 20:18:16 info: Database connected successfully -2025-09-05 20:18:31 info: Database connected successfully -2025-09-05 20:18:37 info: Router created for room: 8f26b014-2288-4c10-aabf-df221e5e740a -2025-09-05 20:18:37 info: WebRTC Server created -2025-09-05 20:18:49 info: Request rejected for the viewerId: CCHmIBi6YyA8wQOXAAAD for being co-host -2025-09-05 20:19:25 info: Request rejected for the viewerId: CCHmIBi6YyA8wQOXAAAD for being co-host -2025-09-05 20:19:32 info: Broadcaster with socketId: ziHBW_zZ8f-f8BG4AAAB has left the live stream -2025-09-05 20:19:32 info: All clean up for the broadcaster are done -2025-09-05 20:19:33 info: Viewer with socketId: CCHmIBi6YyA8wQOXAAAD has left the live stream -2025-09-05 20:19:33 info: All clean up for the viewer are done -2025-09-05 20:21:51 info: Database connected successfully -2025-09-05 20:23:11 info: Database connected successfully -2025-09-05 20:23:43 info: Database connected successfully -2025-09-05 20:23:59 info: Database connected successfully -2025-09-05 20:39:00 info: Database connected successfully -2025-09-05 20:39:08 info: Router created for room: 24debc0d-9fed-4ade-9f13-42a2fe436106 -2025-09-05 20:39:08 info: WebRTC Server created -2025-09-05 20:39:17 info: ViewerId: ZJqzbSE_pqhkK1kVAAAB role updated to co-host -2025-09-05 20:39:56 info: Viewer with socketId: F7MKbCm9CgU1gDGIAAAF has left the live stream -2025-09-05 20:39:56 info: All clean up for the viewer are done -2025-09-05 20:39:57 info: Broadcaster with socketId: L3clgI9ZbpD_pWm6AAAD has left the live stream -2025-09-05 20:39:57 info: All clean up for the broadcaster are done -2025-09-05 20:39:58 info: Viewer with socketId: ZJqzbSE_pqhkK1kVAAAB has left the live stream -2025-09-05 20:39:58 info: All clean up for the viewer are done -2025-09-05 20:53:04 info: Database connected successfully -2025-09-05 20:53:18 info: Router created for room: 0721ac88-1dea-4466-b94b-e4912041bede -2025-09-05 20:53:18 info: WebRTC Server created -2025-09-05 20:53:29 info: ViewerId: v04FYc-Yjikb_lrhAAAF role updated to co-host -2025-09-05 20:53:30 info: Router created for room: 30266996-9663-4a30-aa0e-648ce4a6d5cb -2025-09-05 20:53:30 info: WebRTC Server created -2025-09-05 20:54:08 info: Broadcaster with socketId: -uM0XV62z2uPZlrMAAAB has left the live stream -2025-09-05 20:54:08 info: All clean up for the broadcaster are done -2025-09-05 20:54:11 info: Broadcaster with socketId: v04FYc-Yjikb_lrhAAAF has left the live stream -2025-09-05 20:54:11 info: All clean up for the broadcaster are done -2025-09-06 17:24:51 info: Database connected successfully -2025-09-06 17:25:29 info: Router created for room: 207023b8-d9b3-4c65-9062-f78ec9c921c9 -2025-09-06 17:25:29 info: WebRTC Server created -2025-09-06 17:25:40 info: ViewerId: kfHd-QBmqZ34BRmJAAAB role updated to co-host -2025-09-06 17:27:28 info: Viewer with socketId: kfHd-QBmqZ34BRmJAAAB has left the live stream -2025-09-06 17:27:28 info: All clean up for the viewer are done -2025-09-06 17:27:30 info: Broadcaster with socketId: NuxSzSrsYePmrrWDAAAD has left the live stream -2025-09-06 17:27:30 info: All clean up for the broadcaster are done -2025-09-06 17:27:31 info: Router created for room: 33833bf9-d01a-4bde-bf68-901660a10bd0 -2025-09-06 17:27:31 info: WebRTC Server created -2025-09-06 17:27:42 info: ViewerId: jpmkKTvGzVViaihoAAAF role updated to co-host -2025-09-06 17:28:54 info: Viewer with socketId: jpmkKTvGzVViaihoAAAF has left the live stream -2025-09-06 17:28:54 info: All clean up for the viewer are done -2025-09-06 17:28:55 info: Broadcaster with socketId: TziCmVZZXaXHxh_5AAAH has left the live stream -2025-09-06 17:28:55 info: All clean up for the broadcaster are done -2025-09-06 17:28:56 info: Viewer with socketId: i-SrhJ0wXjxdxYt7AAAJ has left the live stream -2025-09-06 17:28:56 info: All clean up for the viewer are done -2025-09-06 17:30:38 info: Router created for room: 36d98274-b53c-497a-894a-c75c625ad27f -2025-09-06 17:30:38 info: WebRTC Server created -2025-09-06 17:30:48 info: ViewerId: LZQjh0YT5-2FI14VAAAN role updated to co-host -2025-09-06 17:34:19 info: Viewer with socketId: LZQjh0YT5-2FI14VAAAN has left the live stream -2025-09-06 17:34:19 info: All clean up for the viewer are done -2025-09-06 17:34:20 info: Broadcaster with socketId: XaZjOKJTFWcpazp0AAAL has left the live stream -2025-09-06 17:34:20 info: All clean up for the broadcaster are done -2025-09-06 17:34:20 info: Viewer with socketId: 2BC3nEmvIh4HAUgcAAAP has left the live stream -2025-09-06 17:34:20 info: All clean up for the viewer are done -2025-09-06 17:36:05 info: Database connected successfully -2025-09-06 17:42:13 info: Database connected successfully -2025-09-06 17:42:15 info: Router created for room: 5572b134-b86a-4302-856b-b1ee38c190a3 -2025-09-06 17:42:15 info: WebRTC Server created -2025-09-06 17:42:27 info: ViewerId: mH_TL3jyqF6-TxiVAAAD role updated to co-host -2025-09-06 17:42:31 info: Viewer with socketId: mH_TL3jyqF6-TxiVAAAD has left the live stream -2025-09-06 17:42:31 info: All clean up for the viewer are done -2025-09-06 17:42:55 info: ViewerId: x32bhjhMG3ehAtZJAAAF role updated to co-host -2025-09-06 17:44:43 info: Viewer with socketId: x32bhjhMG3ehAtZJAAAF has left the live stream -2025-09-06 17:44:43 info: All clean up for the viewer are done -2025-09-06 17:44:44 info: Broadcaster with socketId: rtxBkZ1MLrznmJtkAAAB has left the live stream -2025-09-06 17:44:44 info: All clean up for the broadcaster are done -2025-09-06 17:53:17 info: Database connected successfully -2025-09-06 17:53:24 info: Router created for room: cc87ae7d-a23f-4efc-97db-5f2d39fc5e97 -2025-09-06 17:53:24 info: WebRTC Server created -2025-09-06 17:53:35 info: ViewerId: f60J0zdV3cFbjMEnAAAD role updated to co-host -2025-09-06 17:54:59 info: Viewer with socketId: f60J0zdV3cFbjMEnAAAD has left the live stream -2025-09-06 17:54:59 info: All clean up for the viewer are done -2025-09-06 17:55:00 info: Broadcaster with socketId: M9sy5dHCGDC2f6uKAAAB has left the live stream -2025-09-06 17:55:00 info: All clean up for the broadcaster are done -2025-09-06 17:56:18 info: Router created for room: 99678d2b-3c06-420f-a850-58514accdeb8 -2025-09-06 17:56:18 info: WebRTC Server created -2025-09-06 17:56:33 info: ViewerId: cwsMfcwa_KMO41eCAAAF role updated to co-host -2025-09-06 17:57:07 info: Viewer with socketId: cwsMfcwa_KMO41eCAAAF has left the live stream -2025-09-06 17:57:07 info: All clean up for the viewer are done -2025-09-06 17:57:08 info: Broadcaster with socketId: K730Vft7w144xapHAAAH has left the live stream -2025-09-06 17:57:08 info: All clean up for the broadcaster are done -2025-09-06 17:57:09 info: Router created for room: 835f3458-a577-45e5-92f7-7e1b738ecb05 -2025-09-06 17:57:09 info: WebRTC Server created -2025-09-06 17:57:16 info: ViewerId: YqRWKKPby1lFdksFAAAJ role updated to co-host -2025-09-06 17:58:12 info: Viewer with socketId: YqRWKKPby1lFdksFAAAJ has left the live stream -2025-09-06 17:58:12 info: All clean up for the viewer are done -2025-09-06 17:58:14 info: Broadcaster with socketId: L1Djg6TWi0KH_XvKAAAL has left the live stream -2025-09-06 17:58:14 info: All clean up for the broadcaster are done -2025-09-06 20:26:06 info: Database connected successfully -2025-09-06 20:26:15 info: Router created for room: 543393c9-9e75-4bda-b395-a4c1d0f6c557 -2025-09-06 20:26:15 info: WebRTC Server created -2025-09-06 20:32:12 info: Viewer with socketId: voNHKk2Zs8UU7azpAAAD has left the live stream -2025-09-06 20:32:12 info: All clean up for the viewer are done -2025-09-06 20:32:13 info: Broadcaster with socketId: yeCtGl2_Uaz1qqCeAAAB has left the live stream -2025-09-06 20:32:13 info: All clean up for the broadcaster are done -2025-09-06 20:47:52 info: Database connected successfully -2025-09-06 20:48:06 info: Router created for room: 67eea6b0-ecb0-4b83-aa0f-9876105644cb -2025-09-06 20:48:06 info: WebRTC Server created -2025-09-06 20:48:16 info: ViewerId: TQOl_wQ4e66D1TapAAAB role updated to co-host -2025-09-06 20:49:33 info: Viewer with socketId: TQOl_wQ4e66D1TapAAAB has left the live stream -2025-09-06 20:49:33 info: All clean up for the viewer are done -2025-09-06 20:49:34 info: Broadcaster with socketId: lPgSM_co7PxoPO_DAAAD has left the live stream -2025-09-06 20:49:34 info: All clean up for the broadcaster are done -2025-09-06 20:49:40 info: Router created for room: d3373122-5bc5-411f-9aa5-e271fd65f8b5 -2025-09-06 20:49:40 info: WebRTC Server created -2025-09-06 20:49:54 info: ViewerId: BQJtvb92iqtg24xQAAAF role updated to co-host -2025-09-06 20:50:14 info: Viewer with socketId: BQJtvb92iqtg24xQAAAF has left the live stream -2025-09-06 20:50:14 info: All clean up for the viewer are done -2025-09-06 20:50:14 info: Broadcaster with socketId: YYr5AleIp-od2gI_AAAH has left the live stream -2025-09-06 20:50:14 info: All clean up for the broadcaster are done -2025-09-06 20:53:44 info: Database connected successfully -2025-09-06 20:53:48 info: Router created for room: 40618cd2-29f6-418f-b584-e973c9172e6f -2025-09-06 20:53:48 info: WebRTC Server created -2025-09-06 20:53:58 info: ViewerId: dr8ze4lklkpfsjVBAAAD role updated to co-host -2025-09-06 20:55:33 info: Viewer with socketId: dr8ze4lklkpfsjVBAAAD has left the live stream -2025-09-06 20:55:33 info: All clean up for the viewer are done -2025-09-06 20:55:33 info: Broadcaster with socketId: N6Wl1iOezWo511ZwAAAB has left the live stream -2025-09-06 20:55:33 info: All clean up for the broadcaster are done -2025-09-06 20:56:46 info: Router created for room: e7b78949-92b5-4929-9473-b9018c42fed3 -2025-09-06 20:56:46 info: WebRTC Server created -2025-09-06 20:56:56 info: ViewerId: F6O2E1YaN052zxE6AAAF role updated to co-host -2025-09-06 20:59:15 info: Viewer with socketId: F6O2E1YaN052zxE6AAAF has left the live stream -2025-09-06 20:59:15 info: All clean up for the viewer are done -2025-09-06 20:59:16 info: Broadcaster with socketId: CVcsJzbyP-GB1Ve8AAAH has left the live stream -2025-09-06 20:59:16 info: All clean up for the broadcaster are done -2025-09-06 20:59:20 info: Router created for room: ed485798-bff0-4092-8014-ba899df8b948 -2025-09-06 20:59:20 info: WebRTC Server created -2025-09-06 20:59:40 info: ViewerId: zPdk50mLqI7CgHL1AAAJ role updated to co-host -2025-09-06 21:01:31 info: Viewer with socketId: zPdk50mLqI7CgHL1AAAJ has left the live stream -2025-09-06 21:01:31 info: All clean up for the viewer are done -2025-09-06 21:01:32 info: Broadcaster with socketId: qR-vrw_BGnji_ZJaAAAL has left the live stream -2025-09-06 21:01:32 info: All clean up for the broadcaster are done -2025-09-07 09:27:12 info: Database connected successfully -2025-09-07 09:27:25 info: Router created for room: 0196ab58-2a60-4707-aea6-61c2d5201934 -2025-09-07 09:27:25 info: WebRTC Server created -2025-09-07 09:27:58 info: ViewerId: xRUzf8ea-QqiSKsFAAAD role updated to co-host -2025-09-07 09:29:06 info: Database connected successfully -2025-09-07 09:29:11 info: Router created for room: d6bdc021-c4ef-4a2c-b176-07bb49cfa88d -2025-09-07 09:29:11 info: WebRTC Server created -2025-09-07 09:29:20 info: ViewerId: uM7DORMPv7xeqU5HAAAB role updated to co-host -2025-09-07 09:30:11 info: Database connected successfully -2025-09-07 09:30:13 info: Router created for room: 51157428-efd2-4012-92ee-95ab83d20e2c -2025-09-07 09:30:13 info: WebRTC Server created -2025-09-07 09:31:03 info: ViewerId: KoZifQezJLDTNP91AAAD role updated to co-host -2025-09-07 09:32:59 info: Database connected successfully -2025-09-07 09:33:21 info: Database connected successfully -2025-09-07 09:33:23 info: Router created for room: d85edd8a-6763-47c9-9d1f-2fb81586a120 -2025-09-07 09:33:23 info: WebRTC Server created -2025-09-07 09:33:53 info: ViewerId: nAoHs3L-yRud96C0AAAD role updated to co-host -2025-09-07 09:36:49 info: Database connected successfully -2025-09-07 09:36:56 info: Router created for room: 9743a678-e3b1-4a93-aacf-6d1c7b46b486 -2025-09-07 09:36:56 info: WebRTC Server created -2025-09-07 09:37:21 info: ViewerId: 3PaIeUESLo_P7yS6AAAB role updated to co-host -2025-09-07 09:38:09 info: Database connected successfully -2025-09-07 09:43:13 info: Database connected successfully -2025-09-07 09:52:16 info: Database connected successfully -2025-09-07 09:52:41 info: Database connected successfully -2025-09-07 09:52:58 info: Database connected successfully -2025-09-07 09:53:17 info: Database connected successfully -2025-09-07 09:53:37 info: Router created for room: 80401626-fdfd-48ed-97a2-4bfabc90beaf -2025-09-07 09:53:37 info: WebRTC Server created -2025-09-07 09:53:46 info: ViewerId: yNR3vrQWKRgvShVnAAAD role updated to co-host -2025-09-07 09:56:17 info: Database connected successfully -2025-09-07 09:56:29 info: Database connected successfully -2025-09-07 10:00:16 info: Database connected successfully -2025-09-07 10:00:19 info: Router created for room: 9aa79a45-fcba-4ffd-b8da-cf9020ce2e26 -2025-09-07 10:00:19 info: WebRTC Server created -2025-09-07 10:00:27 info: ViewerId: CrAy_3IGgQvE9jMHAAAB role updated to co-host -2025-09-07 10:01:16 info: Database connected successfully -2025-09-07 10:01:24 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:83:20) - at joinAsViewer (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewer.handler.ts:19:23) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\registerViewer.handler.ts:18:25) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-09-07 10:01:35 info: Router created for room: ecaadc65-2c2e-4957-801b-4ef5efe56b68 -2025-09-07 10:01:35 info: WebRTC Server created -2025-09-07 10:01:44 info: ViewerId: nbORgctC6LDcSJKnAAAH role updated to co-host -2025-09-07 10:04:29 info: Database connected successfully -2025-09-07 10:04:35 info: Router created for room: 6a5a3954-fc7a-4fde-a0b3-efc401c8dac0 -2025-09-07 10:04:35 info: WebRTC Server created -2025-09-07 10:04:43 info: ViewerId: KyH-vaAOwnrOr2aqAAAD role updated to co-host -2025-09-07 10:06:28 info: Database connected successfully -2025-09-07 10:06:49 info: Database connected successfully -2025-09-07 10:06:51 info: Router created for room: f3b63542-bbbe-40aa-a077-d28393ee674f -2025-09-07 10:06:51 info: WebRTC Server created -2025-09-07 10:07:04 info: ViewerId: qUrQxgu-iDHyMuzTAAAB role updated to co-host -2025-09-07 10:07:47 info: Database connected successfully -2025-09-07 10:07:49 info: Router created for room: 1d4b91c9-b036-4a34-8988-940a9f7d7818 -2025-09-07 10:07:49 info: WebRTC Server created -2025-09-07 10:07:57 info: ViewerId: sy-W7A5xmTu8kYQCAAAC role updated to co-host -2025-09-07 10:08:21 info: Database connected successfully -2025-09-07 10:08:31 info: Database connected successfully -2025-09-07 10:08:33 info: Router created for room: c05b7c51-4a69-4b3d-96fc-942def2fa4c1 -2025-09-07 10:08:33 info: WebRTC Server created -2025-09-07 10:08:45 info: ViewerId: LNYBvDTFGDV5D-P3AAAF role updated to co-host -2025-09-07 10:09:45 info: Database connected successfully -2025-09-07 10:09:50 info: Router created for room: 6fb8e660-00c4-4d78-a476-780c57f2463f -2025-09-07 10:09:50 info: WebRTC Server created -2025-09-07 10:09:56 info: ViewerId: t2KVCX3vamEa9HF7AAAB role updated to co-host -2025-09-07 10:10:13 info: Database connected successfully -2025-09-07 10:12:03 info: Database connected successfully -2025-09-07 10:12:14 info: Database connected successfully -2025-09-07 10:12:21 info: Router created for room: d837517f-64cb-454a-9e5e-8b99520889f2 -2025-09-07 10:12:21 info: WebRTC Server created -2025-09-07 10:12:42 info: ViewerId: G9iiWLaw4SwS8M8TAAAD role updated to co-host -2025-09-07 10:15:28 info: Database connected successfully -2025-09-07 10:15:44 info: Database connected successfully -2025-09-07 10:15:51 info: Router created for room: 900402b7-1827-4698-b966-a76ddb447539 -2025-09-07 10:15:51 info: WebRTC Server created -2025-09-07 10:15:58 info: ViewerId: et7-wm9_MzHB9GWyAAAB role updated to co-host -2025-09-07 10:19:01 info: Database connected successfully -2025-09-07 10:19:05 info: Router created for room: cd89c9cb-bb25-4b6c-85e0-53674c2f8ece -2025-09-07 10:19:05 info: WebRTC Server created -2025-09-07 10:19:14 info: ViewerId: KiIgyRHaSfb7UVohAAAB role updated to co-host -2025-09-07 10:20:17 info: Database connected successfully -2025-09-07 10:20:40 info: Database connected successfully -2025-09-07 10:21:02 info: Database connected successfully -2025-09-07 10:21:05 info: Router created for room: b3c0abcf-d54d-47fb-b668-ded3ae709570 -2025-09-07 10:21:05 info: WebRTC Server created -2025-09-07 10:21:24 info: ViewerId: O8A_tb5lFbG4KDBXAAAF role updated to co-host -2025-09-07 10:22:11 info: Database connected successfully -2025-09-07 10:22:16 info: Router created for room: 8d6b00b7-779a-45b3-aae7-a11d20972a6d -2025-09-07 10:22:16 info: WebRTC Server created -2025-09-07 10:22:25 info: ViewerId: CNDhENC1yxQq8fAiAAAB role updated to co-host -2025-09-07 10:26:53 info: Database connected successfully -2025-09-07 10:26:56 info: Router created for room: 2fd5ca6a-d3e0-42d8-a734-2d5b4df9b7d1 -2025-09-07 10:26:56 info: WebRTC Server created -2025-09-07 10:27:15 info: ViewerId: BvCtnSFj9wlan_GaAAAB role updated to co-host -2025-09-07 10:29:16 info: Broadcaster with socketId: gwjxYhu8oL2zO3hSAAAD has left the live stream -2025-09-07 10:29:16 info: All clean up for the broadcaster are done -2025-09-07 10:29:16 info: Viewer with socketId: BvCtnSFj9wlan_GaAAAB has left the live stream -2025-09-07 10:29:16 info: All clean up for the viewer are done -2025-09-07 10:29:17 info: Viewer with socketId: GHHZ5I-p5Jrl6CMjAAAF has left the live stream -2025-09-07 10:29:17 info: All clean up for the viewer are done -2025-09-07 13:55:01 info: Database connected successfully -2025-09-07 13:55:19 info: Router created for room: fe4063d1-c2c5-43aa-b4cd-b305cee91781 -2025-09-07 13:55:19 info: WebRTC Server created -2025-09-07 13:55:44 info: ViewerId: rdV8McF179GaXzpoAAAB role updated to co-host -2025-09-07 13:56:48 info: Viewer with socketId: rdV8McF179GaXzpoAAAB has left the live stream -2025-09-07 13:56:48 info: All clean up for the viewer are done -2025-09-07 13:56:49 info: Broadcaster with socketId: VAeAcchNv7OYC6slAAAD has left the live stream -2025-09-07 13:56:49 info: All clean up for the broadcaster are done -2025-09-07 13:56:50 info: Viewer with socketId: CMP35Gop5zgWUEbZAAAF has left the live stream -2025-09-07 13:56:50 info: All clean up for the viewer are done -2025-09-07 14:08:13 info: Database connected successfully -2025-09-07 14:08:23 info: Router created for room: d447e4b2-aee6-4581-bbea-e3fdab54f8f0 -2025-09-07 14:08:23 info: WebRTC Server created -2025-09-07 14:08:53 info: ViewerId: IZz0dMmocWKGuo_hAAAD role updated to co-host -2025-09-07 14:10:35 info: Viewer with socketId: IZz0dMmocWKGuo_hAAAD has left the live stream -2025-09-07 14:10:35 info: All clean up for the viewer are done -2025-09-07 14:10:36 info: Broadcaster with socketId: DLpT558VCmhWDe5wAAAB has left the live stream -2025-09-07 14:10:36 info: All clean up for the broadcaster are done -2025-09-07 14:10:38 info: Viewer with socketId: 64ki4vOW_dcg2s4IAAAH has left the live stream -2025-09-07 14:10:38 info: All clean up for the viewer are done -2025-09-07 14:10:39 info: Viewer with socketId: anKI9HfNXUtrGp7xAAAF has left the live stream -2025-09-07 14:10:39 info: All clean up for the viewer are done -2025-09-07 14:11:07 info: Database connected successfully -2025-09-07 14:11:44 info: Database connected successfully -2025-09-07 14:11:59 info: Router created for room: 20ad5102-35e4-457d-8fd0-46d05bdc2acc -2025-09-07 14:11:59 info: WebRTC Server created -2025-09-07 14:12:22 info: ViewerId: BGA20E-zlRxM3WZIAAAC role updated to co-host -2025-09-07 14:13:19 info: Viewer with socketId: oCzFJs5AIqlXSoAPAAAF has left the live stream -2025-09-07 14:13:19 info: All clean up for the viewer are done -2025-09-07 14:14:26 info: Viewer with socketId: BGA20E-zlRxM3WZIAAAC has left the live stream -2025-09-07 14:14:26 info: All clean up for the viewer are done -2025-09-07 14:14:27 info: Broadcaster with socketId: wTEabYricxylHJ5lAAAD has left the live stream -2025-09-07 14:14:27 info: All clean up for the broadcaster are done -2025-09-07 14:14:28 info: Viewer with socketId: cnFSrdamCOOnEBpNAAAJ has left the live stream -2025-09-07 14:14:28 info: All clean up for the viewer are done -2025-09-07 14:18:44 info: Database connected successfully -2025-09-07 14:19:07 info: Database connected successfully -2025-09-07 14:19:23 info: Database connected successfully -2025-09-07 14:20:06 info: Router created for room: 512b4a8c-4eb4-476c-9184-dc546c0d87c7 -2025-09-07 14:20:06 info: WebRTC Server created -2025-09-07 14:20:26 info: ViewerId: 2pQ1zFPwxP9rujTgAAAF role updated to co-host -2025-09-07 14:22:22 info: Viewer with socketId: 2pQ1zFPwxP9rujTgAAAF has left the live stream -2025-09-07 14:22:22 info: All clean up for the viewer are done -2025-09-07 14:22:22 info: Broadcaster with socketId: 79HAw449wtY6ddPZAAAL has left the live stream -2025-09-07 14:22:22 info: All clean up for the broadcaster are done -2025-09-07 14:22:23 info: Viewer with socketId: qao25F4JNMBqfsPvAAAH has left the live stream -2025-09-07 14:22:23 info: All clean up for the viewer are done -2025-09-07 14:22:24 info: Viewer with socketId: X13f0BdhD4laKd0KAAAJ has left the live stream -2025-09-07 14:22:24 info: All clean up for the viewer are done -2025-09-07 14:22:32 info: Router created for room: 7b3587e4-f0a4-4205-8d43-bc9e2cfbd042 -2025-09-07 14:22:32 info: WebRTC Server created -2025-09-07 14:23:15 info: Database connected successfully -2025-09-07 14:23:25 info: Router created for room: 624b6d29-7fed-44b0-a86d-2574e6e23242 -2025-09-07 14:23:25 info: WebRTC Server created -2025-09-07 14:23:41 info: ViewerId: JHj0WkbBQ_1vbPaJAAAD role updated to co-host -2025-09-07 14:24:55 info: Broadcaster with socketId: -qidTteyrqds4w3WAAAB has left the live stream -2025-09-07 14:24:55 info: All clean up for the broadcaster are done -2025-09-07 14:24:56 info: Viewer with socketId: JHj0WkbBQ_1vbPaJAAAD has left the live stream -2025-09-07 14:24:56 info: All clean up for the viewer are done -2025-09-07 14:24:57 info: Viewer with socketId: phfZhgoikqpM1zIEAAAF has left the live stream -2025-09-07 14:24:57 info: All clean up for the viewer are done -2025-09-07 14:29:40 info: Database connected successfully -2025-09-07 14:29:49 info: Router created for room: 6620bfa2-1bb9-4c68-b165-312350f6e70b -2025-09-07 14:29:49 info: WebRTC Server created -2025-09-07 14:30:14 info: ViewerId: H1GRePedssk8VRT_AAAB role updated to co-host -2025-09-07 14:31:57 info: Database connected successfully -2025-09-07 14:32:05 info: Router created for room: c6021646-4740-461f-b7d7-47c0b90bd2b8 -2025-09-07 14:32:05 info: WebRTC Server created -2025-09-07 14:32:18 info: ViewerId: lpxzqPgfS79M0dtCAAAD role updated to co-host -2025-09-07 14:32:56 info: Database connected successfully -2025-09-07 14:33:01 info: Router created for room: 2999a52e-f486-4ff2-8eb7-4302f195bde9 -2025-09-07 14:33:01 info: WebRTC Server created -2025-09-07 14:33:16 info: ViewerId: VnR1Ohf8BVZoqRj1AAAH role updated to co-host -2025-09-07 14:39:53 info: Database connected successfully -2025-09-07 14:40:18 info: Router created for room: 6c30b4fe-eb8c-401d-af0b-b538697a666d -2025-09-07 14:40:18 info: WebRTC Server created -2025-09-07 14:40:34 info: ViewerId: r67RYWU0bCXigmHsAAAD role updated to co-host -2025-09-07 14:42:08 info: Viewer with socketId: r67RYWU0bCXigmHsAAAD has left the live stream -2025-09-07 14:42:08 info: All clean up for the viewer are done -2025-09-07 14:42:09 info: Broadcaster with socketId: cUw4Acxlr7gnuWBkAAAB has left the live stream -2025-09-07 14:42:09 info: All clean up for the broadcaster are done -2025-09-07 14:42:09 info: Viewer with socketId: PYZru2HUIccA9kvmAAAF has left the live stream -2025-09-07 14:42:09 info: All clean up for the viewer are done -2025-09-07 14:51:39 info: Database connected successfully -2025-09-07 14:51:58 info: Router created for room: d7018f69-908c-4404-9dbc-d23d54b87f06 -2025-09-07 14:51:58 info: WebRTC Server created -2025-09-07 14:52:46 info: ViewerId: xv_IGHCYLaMm2GtqAAAD role updated to co-host -2025-09-07 14:54:11 info: Viewer with socketId: xv_IGHCYLaMm2GtqAAAD has left the live stream -2025-09-07 14:54:11 info: All clean up for the viewer are done -2025-09-07 14:54:11 info: Broadcaster with socketId: F038QX10tiEPmdS4AAAB has left the live stream -2025-09-07 14:54:11 info: All clean up for the broadcaster are done -2025-09-07 14:54:12 info: Viewer with socketId: G5Er6YC28gL4TXDuAAAF has left the live stream -2025-09-07 14:54:12 info: All clean up for the viewer are done -2025-09-07 15:10:18 info: Database connected successfully -2025-09-07 15:10:24 info: Router created for room: 86b8add9-adf4-4545-b151-c03105978028 -2025-09-07 15:10:24 info: WebRTC Server created -2025-09-07 15:10:35 info: ViewerId: -fy-sduv6-YoA7_YAAAB role updated to co-host -2025-09-07 15:20:24 info: Database connected successfully -2025-09-07 15:20:31 info: Router created for room: 06cd2a36-8ada-42fb-9d69-8fe683627b9c -2025-09-07 15:20:31 info: WebRTC Server created -2025-09-07 15:20:49 info: ViewerId: byomJ04w5XYGzippAAAD role updated to co-host -2025-09-07 15:21:12 info: Database connected successfully -2025-09-07 15:31:23 info: Database connected successfully -2025-09-07 15:31:44 info: Database connected successfully -2025-09-07 15:32:54 info: Database connected successfully -2025-09-07 15:35:20 info: Database connected successfully -2025-09-07 15:35:42 info: Router created for room: 199abcc3-1ce4-48eb-b861-8b27e8820ea2 -2025-09-07 15:35:42 info: WebRTC Server created -2025-09-07 15:35:55 info: ViewerId: dPyr-gNVdp67AWTjAAAD role updated to co-host -2025-09-07 20:27:51 info: Database connected successfully -2025-09-07 20:28:01 info: Router created for room: f9acb447-7769-4751-803b-7c83da340057 -2025-09-07 20:28:01 info: WebRTC Server created -2025-09-07 20:28:58 info: Viewer with socketId: 7Knup40Zek2BrkciAAAD has left the live stream -2025-09-07 20:28:58 info: All clean up for the viewer are done -2025-09-07 20:28:59 info: Broadcaster with socketId: _0NsbGQPajgwBOhBAAAL has left the live stream -2025-09-07 20:28:59 info: All clean up for the broadcaster are done -2025-09-08 11:45:15 info: Database connected successfully -2025-09-08 11:45:21 info: Router created for room: de9e0f64-8108-40b7-8d72-c9a584e297aa -2025-09-08 11:45:21 info: WebRTC Server created -2025-09-08 11:46:07 info: ViewerId: QNNU9fnkZovEhu5VAAAB role updated to co-host -2025-09-08 11:48:06 info: Database connected successfully -2025-09-08 11:48:13 info: Router created for room: 640a4767-4195-4238-aa11-fc6df5ee5d1f -2025-09-08 11:48:13 info: WebRTC Server created -2025-09-08 11:48:24 info: ViewerId: 3FK_3eT6KNLOlCaTAAAF role updated to co-host -2025-09-08 11:49:03 info: Database connected successfully -2025-09-08 11:49:27 info: Database connected successfully -2025-09-08 11:49:42 info: Router created for room: 3b9c5c93-cedf-4023-a44f-87620e329566 -2025-09-08 11:49:42 info: WebRTC Server created -2025-09-08 11:49:59 info: ViewerId: MDzwNqJ9Ip9CRKj2AAAF role updated to co-host -2025-09-08 11:51:15 info: Database connected successfully -2025-09-08 11:51:24 info: Router created for room: 27b2e408-a2be-433b-bbcd-5960a3303b46 -2025-09-08 11:51:24 info: WebRTC Server created -2025-09-08 11:51:38 info: ViewerId: Y03UVBLT9MMbiUkPAAAH role updated to co-host -2025-09-08 11:53:16 info: Database connected successfully -2025-09-08 11:53:30 info: Router created for room: 6ce9cc79-aa00-49a8-b360-b28ba04165ba -2025-09-08 11:53:30 info: WebRTC Server created -2025-09-08 11:53:49 info: ViewerId: YXR5url3k8kK0WXtAAAB role updated to co-host -2025-09-08 11:55:25 info: Database connected successfully -2025-09-08 11:55:32 info: Router created for room: 160baf72-62f3-41f0-95f7-0653456bea02 -2025-09-08 11:55:32 info: WebRTC Server created -2025-09-08 11:55:45 error: Viewer already exists in the database -2025-09-08 11:55:51 info: Viewer with socketId: acAL3F44TZipSVe6AAAB has left the live stream -2025-09-08 11:55:51 info: All clean up for the viewer are done -2025-09-08 11:56:14 info: ViewerId: Zij5OCD9QYgbrW5hAAAD role updated to co-host -2025-09-08 11:57:35 info: Database connected successfully -2025-09-08 11:57:39 info: Router created for room: 17b6b693-7a49-48c0-a236-463c45df055c -2025-09-08 11:57:39 info: WebRTC Server created -2025-09-08 11:57:53 info: ViewerId: Do5Fie4DPMGkuaGjAAAB role updated to co-host -2025-09-08 11:58:47 info: Viewer with socketId: phiOlWfYd0_6ZKmnAAAD has left the live stream -2025-09-08 11:58:47 info: All clean up for the viewer are done -2025-09-08 11:58:48 info: Viewer with socketId: Do5Fie4DPMGkuaGjAAAB has left the live stream -2025-09-08 11:58:48 info: All clean up for the viewer are done -2025-09-08 11:58:50 info: Broadcaster with socketId: qJlHI49NHUWXljVzAAAF has left the live stream -2025-09-08 11:58:50 info: All clean up for the broadcaster are done -2025-09-08 12:04:44 info: Database connected successfully -2025-09-08 12:05:23 info: Router created for room: 32dd8e8c-fc11-414f-97cb-613a47e897b7 -2025-09-08 12:05:23 info: WebRTC Server created -2025-09-08 12:05:43 info: ViewerId: h-n562-GIMn3_MYsAAAD role updated to co-host -2025-09-08 12:06:36 info: Database connected successfully -2025-09-08 12:06:42 info: Router created for room: 85e2c288-4c48-4a54-a208-aacdc5cab550 -2025-09-08 12:06:42 info: WebRTC Server created -2025-09-08 12:07:17 info: ViewerId: 9wMmzJKCc2xo3RFnAAAB role updated to co-host -2025-09-08 12:08:21 info: Viewer with socketId: 9wMmzJKCc2xo3RFnAAAB has left the live stream -2025-09-08 12:08:21 info: All clean up for the viewer are done -2025-09-08 12:08:22 info: Broadcaster with socketId: vjpxSCQnqFodkI3sAAAF has left the live stream -2025-09-08 12:08:22 info: All clean up for the broadcaster are done -2025-09-08 12:08:22 info: Viewer with socketId: wVpArNlvkluQElECAAAD has left the live stream -2025-09-08 12:08:22 info: All clean up for the viewer are done -2025-09-08 12:13:25 info: Database connected successfully -2025-09-08 12:13:34 info: Router created for room: 5f79fe2b-819a-437a-9f4e-d90544c2ea4c -2025-09-08 12:13:34 info: WebRTC Server created -2025-09-08 12:15:47 info: Viewer with socketId: vbqxUATvMwOomjEtAAAF has left the live stream -2025-09-08 12:15:47 info: All clean up for the viewer are done -2025-09-08 12:15:48 info: Viewer with socketId: fnjDzNzSWgdrAOTIAAAH has left the live stream -2025-09-08 12:15:48 info: All clean up for the viewer are done -2025-09-08 12:15:49 info: Viewer with socketId: q_F76Gy1qkhKFoftAAAE has left the live stream -2025-09-08 12:15:49 info: All clean up for the viewer are done -2025-09-08 12:15:50 info: Broadcaster with socketId: jvO6t2zhnnqzrxaBAAAD has left the live stream -2025-09-08 12:15:50 info: All clean up for the broadcaster are done -2025-09-08 12:20:39 info: Database connected successfully -2025-09-08 12:21:10 info: Router created for room: 93271bdb-c3b9-44e1-acff-101581c38807 -2025-09-08 12:21:10 info: WebRTC Server created -2025-09-08 12:22:42 info: Broadcaster with socketId: Edod-CZpWvBC-lApAAAB has left the live stream -2025-09-08 12:22:42 info: All clean up for the broadcaster are done -2025-09-08 12:22:44 info: Viewer with socketId: EKlq2JWet3uYHdpWAAAH has left the live stream -2025-09-08 12:22:44 info: All clean up for the viewer are done -2025-09-08 12:22:44 info: Viewer with socketId: J74PklMd8mB70TQDAAAF has left the live stream -2025-09-08 12:22:44 info: All clean up for the viewer are done -2025-09-08 12:22:44 info: Viewer with socketId: xK83dNN5-Bc7uCKFAAAD has left the live stream -2025-09-08 12:22:44 info: All clean up for the viewer are done -2025-09-08 12:30:26 info: Database connected successfully -2025-09-08 12:31:42 info: Database connected successfully -2025-09-08 12:31:51 info: Router created for room: 792bf4a7-10a6-4690-9b6f-28183fde8d24 -2025-09-08 12:31:51 info: WebRTC Server created -2025-09-08 12:34:20 info: Broadcaster with socketId: nkljw3rA4SXHQDyMAAAB has left the live stream -2025-09-08 12:34:20 info: All clean up for the broadcaster are done -2025-09-08 12:34:20 info: Viewer with socketId: cULqxT5N0deTYoHWAAAD has left the live stream -2025-09-08 12:34:20 info: All clean up for the viewer are done -2025-09-08 12:34:21 info: Viewer with socketId: ndQRpwEbQRslSM6GAAAF has left the live stream -2025-09-08 12:34:21 info: All clean up for the viewer are done -2025-09-08 12:34:40 info: Database connected successfully -2025-09-08 12:34:54 info: Router created for room: 852a17c9-83dd-4c3b-a8f9-0c2d7ccae409 -2025-09-08 12:34:54 info: WebRTC Server created -2025-09-08 12:36:05 info: Broadcaster with socketId: M4kH_sqn8_eiR2VPAAAB has left the live stream -2025-09-08 12:36:05 info: All clean up for the broadcaster are done -2025-09-08 12:36:06 info: Viewer with socketId: ZF4I8mWg3CGrLml4AAAF has left the live stream -2025-09-08 12:36:06 info: All clean up for the viewer are done -2025-09-08 12:36:07 info: Viewer with socketId: PFGE9ZZ8-zcZ5Uo1AAAD has left the live stream -2025-09-08 12:36:07 info: All clean up for the viewer are done -2025-09-08 12:36:33 info: Router created for room: c4eb0aba-49fb-4d00-a5eb-2691fb50ac73 -2025-09-08 12:36:33 info: WebRTC Server created -2025-09-08 12:38:02 info: Broadcaster with socketId: yHZJojN-4QpM3f51AAAL has left the live stream -2025-09-08 12:38:02 info: All clean up for the broadcaster are done -2025-09-08 12:38:05 info: Viewer with socketId: RtQqXOVP1CJCG5Q5AAAJ has left the live stream -2025-09-08 12:38:05 info: All clean up for the viewer are done -2025-09-08 12:38:07 info: Viewer with socketId: iOcOG5rtNHWTy9FGAAAN has left the live stream -2025-09-08 12:38:07 info: All clean up for the viewer are done -2025-09-08 12:38:07 info: Viewer with socketId: bA2uAD5Lhp03K8YTAAAH has left the live stream -2025-09-08 12:38:07 info: All clean up for the viewer are done -2025-09-08 12:47:50 info: Database connected successfully -2025-09-08 12:48:01 info: Router created for room: 6b2e02c9-f193-44e7-b87f-4e7c9f6be576 -2025-09-08 12:48:01 info: WebRTC Server created -2025-09-08 12:49:32 info: Viewer with socketId: CMizfGB66tgz0nSZAAAD has left the live stream -2025-09-08 12:49:32 info: All clean up for the viewer are done -2025-09-08 12:49:33 info: Broadcaster with socketId: lmndfGjShrIdRGRcAAAB has left the live stream -2025-09-08 12:49:33 info: All clean up for the broadcaster are done -2025-09-08 12:49:38 info: Viewer with socketId: 9w6U_VQFvAkzjAm9AAAJ has left the live stream -2025-09-08 12:49:38 info: All clean up for the viewer are done -2025-09-08 12:49:39 info: Viewer with socketId: 3IYuryvuCf4MBhSuAAAH has left the live stream -2025-09-08 12:49:39 info: All clean up for the viewer are done -2025-09-08 12:49:39 info: Viewer with socketId: Jx2tYwn2vWK8pFuBAAAF has left the live stream -2025-09-08 12:49:39 info: All clean up for the viewer are done -2025-09-08 12:50:30 info: Database connected successfully -2025-09-08 12:50:59 info: Router created for room: 5ea04dca-eb7a-4ca6-a3b6-86d173cdd3ab -2025-09-08 12:50:59 info: WebRTC Server created -2025-09-08 12:51:26 info: ViewerId: CIDRUEr7YBdVcH8PAAAD role updated to co-host -2025-09-08 12:51:57 info: Broadcaster with socketId: 6Ul6RhG4DVadxOVhAAAB has left the live stream -2025-09-08 12:51:57 info: All clean up for the broadcaster are done -2025-09-08 12:51:58 info: Viewer with socketId: CIDRUEr7YBdVcH8PAAAD has left the live stream -2025-09-08 12:51:58 info: All clean up for the viewer are done -2025-09-08 12:51:59 info: Viewer with socketId: rZZb4pbjcSkWnca6AAAF has left the live stream -2025-09-08 12:51:59 info: All clean up for the viewer are done -2025-09-08 12:51:59 info: Viewer with socketId: EPcRzL1XJL_MZfwUAAAH has left the live stream -2025-09-08 12:51:59 info: All clean up for the viewer are done -2025-09-08 12:52:00 info: Viewer with socketId: AycEMBCkMbweHu0nAAAJ has left the live stream -2025-09-08 12:52:00 info: All clean up for the viewer are done -2025-09-08 12:52:00 info: Viewer with socketId: vlv3jvkSlKt1jnv9AAAL has left the live stream -2025-09-08 12:52:00 info: All clean up for the viewer are done -2025-09-08 12:57:03 info: Database connected successfully -2025-09-08 12:57:18 info: Database connected successfully -2025-09-08 12:57:56 info: Database connected successfully -2025-09-08 12:58:06 info: Database connected successfully -2025-09-08 12:58:39 info: Database connected successfully -2025-09-08 12:59:45 info: Database connected successfully -2025-09-08 13:00:02 info: Router created for room: 843d647b-8b36-4132-aee0-1709c0545af8 -2025-09-08 13:00:02 info: WebRTC Server created -2025-09-08 13:01:23 info: Database connected successfully -2025-09-08 13:01:55 info: Database connected successfully -2025-09-08 13:02:06 info: Router created for room: 821fd29a-4a8a-4031-b5fc-3fc7d139a746 -2025-09-08 13:02:06 info: WebRTC Server created -2025-09-08 13:04:38 info: Database connected successfully -2025-09-08 13:06:03 info: Database connected successfully -2025-09-08 13:06:27 info: Database connected successfully -2025-09-08 13:06:35 info: Router created for room: cf46005c-6914-4edb-8d41-a407322be9d8 -2025-09-08 13:06:35 info: WebRTC Server created -2025-09-08 13:07:56 info: Database connected successfully -2025-09-08 13:08:08 info: Router created for room: 63df0ec4-dcf3-4816-b7d6-164d8b6bbe43 -2025-09-08 13:08:08 info: WebRTC Server created -2025-09-08 13:08:51 info: Broadcaster with socketId: qfLK6kRDrhhrEwf0AAAB has left the live stream -2025-09-08 13:08:51 info: All clean up for the broadcaster are done -2025-09-08 13:08:51 info: Viewer with socketId: EI7kD34HFD7vNaSoAAAD has left the live stream -2025-09-08 13:08:51 info: All clean up for the viewer are done -2025-09-08 13:08:52 info: Viewer with socketId: UAGrh2HLwjxSG266AAAF has left the live stream -2025-09-08 13:08:52 info: All clean up for the viewer are done -2025-09-08 13:08:52 info: Viewer with socketId: ezFs0ic8oNSVoj4PAAAH has left the live stream -2025-09-08 13:08:52 info: All clean up for the viewer are done -2025-09-08 13:08:53 info: Viewer with socketId: b5MV8XwfqMbBKAyJAAAJ has left the live stream -2025-09-08 13:08:53 info: All clean up for the viewer are done -2025-09-08 13:58:47 info: Database connected successfully -2025-09-08 13:58:59 info: Router created for room: 1aae8e02-625e-4c8e-a3bf-d5b144c0dc5c -2025-09-08 13:58:59 info: WebRTC Server created -2025-09-08 13:59:27 info: Viewer with socketId: JIDJRfZjY0_qTyEQAAAB has left the live stream -2025-09-08 13:59:27 info: All clean up for the viewer are done -2025-09-08 13:59:54 info: Database connected successfully -2025-09-08 13:59:59 info: Router created for room: 41b70033-4b0b-4e12-8701-08e9293f6be0 -2025-09-08 13:59:59 info: WebRTC Server created -2025-09-08 14:00:29 info: ViewerId: FQv5s1io7nuUq0K1AAAD role updated to co-host -2025-09-08 14:00:55 info: Broadcaster with socketId: EN80MUTJ_3_m-I7wAAAB has left the live stream -2025-09-08 14:00:55 info: All clean up for the broadcaster are done -2025-09-08 14:00:55 info: Viewer with socketId: FQv5s1io7nuUq0K1AAAD has left the live stream -2025-09-08 14:00:55 info: All clean up for the viewer are done -2025-09-08 14:00:56 info: Viewer with socketId: Z5f5Yde_DTzQ1MQPAAAF has left the live stream -2025-09-08 14:00:56 info: All clean up for the viewer are done -2025-09-08 14:02:06 info: Database connected successfully -2025-09-08 14:02:08 info: Router created for room: a11333c8-5716-4255-80ac-c63a0426bb03 -2025-09-08 14:02:09 info: WebRTC Server created -2025-09-08 14:02:38 info: Database connected successfully -2025-09-08 14:02:44 info: Router created for room: b9d20121-8f42-43b3-b8da-e832c42d296a -2025-09-08 14:02:44 info: WebRTC Server created -2025-09-08 14:03:33 info: Database connected successfully -2025-09-08 14:03:54 info: Database connected successfully -2025-09-08 14:04:04 info: Router created for room: eb754df3-7080-4ab6-896f-a583f758b91d -2025-09-08 14:04:04 info: WebRTC Server created -2025-09-08 14:04:55 info: Broadcaster with socketId: DKf1XKlAs1AvcQcZAAAB has left the live stream -2025-09-08 14:04:55 info: All clean up for the broadcaster are done -2025-09-08 14:04:55 info: Viewer with socketId: ag8rNKrGHxUBa1mzAAAD has left the live stream -2025-09-08 14:04:55 info: All clean up for the viewer are done -2025-09-08 14:04:56 info: Viewer with socketId: CcQv_33-IVx5kv0ZAAAF has left the live stream -2025-09-08 14:04:56 info: All clean up for the viewer are done -2025-09-08 14:05:07 info: Database connected successfully -2025-09-08 14:05:13 info: Router created for room: 70aebbe4-80c0-4acd-b638-78a81303d7b6 -2025-09-08 14:05:13 info: WebRTC Server created -2025-09-08 14:05:45 info: ViewerId: FSQp0KcF7to-RDFtAAAD role updated to co-host -2025-09-08 14:05:55 info: Viewer with socketId: FSQp0KcF7to-RDFtAAAD has left the live stream -2025-09-08 14:05:55 info: All clean up for the viewer are done -2025-09-08 14:05:57 info: Broadcaster with socketId: kRywYe5Hz0dOtBH_AAAF has left the live stream -2025-09-08 14:05:57 info: All clean up for the broadcaster are done -2025-09-08 14:05:57 info: Viewer with socketId: 1Iz59OnJfte7mueyAAAC has left the live stream -2025-09-08 14:05:57 info: All clean up for the viewer are done -2025-09-08 15:25:24 info: Database connected successfully -2025-09-08 15:25:33 info: Router created for room: 719be1b2-5ee1-43f3-9c58-c01f7cb9d8e8 -2025-09-08 15:25:33 info: WebRTC Server created -2025-09-08 15:25:57 info: ViewerId: l_twgbJlagseelCiAAAB role updated to co-host -2025-09-08 15:27:52 info: Database connected successfully -2025-09-08 15:27:56 info: Router created for room: bacc5ab0-673f-4326-babf-48993a23bfdd -2025-09-08 15:27:56 info: WebRTC Server created -2025-09-08 15:28:09 info: ViewerId: u9usIk5mdYpr3_uGAAAD role updated to co-host -2025-09-08 15:28:27 info: Viewer with socketId: -Ke5iPfI9R03sU4wAAAB has left the live stream -2025-09-08 15:28:27 info: All clean up for the viewer are done -2025-09-08 15:28:28 info: Viewer with socketId: u9usIk5mdYpr3_uGAAAD has left the live stream -2025-09-08 15:28:28 info: All clean up for the viewer are done -2025-09-08 15:28:30 info: Broadcaster with socketId: IHFkkag9ocuFHAuGAAAF has left the live stream -2025-09-08 15:28:30 info: All clean up for the broadcaster are done -2025-09-08 15:30:37 info: Database connected successfully -2025-09-08 15:30:44 info: Router created for room: b5a6701f-cb8c-4202-8510-98a44d197292 -2025-09-08 15:30:44 info: WebRTC Server created -2025-09-08 15:30:56 info: ViewerId: 2bDaxN7tx0OUV9zLAAAB role updated to co-host -2025-09-08 15:31:06 info: Viewer with socketId: 2bDaxN7tx0OUV9zLAAAB has left the live stream -2025-09-08 15:31:06 info: All clean up for the viewer are done -2025-09-08 15:31:08 info: Broadcaster with socketId: p5wSqTo-gMIywDKNAAAF has left the live stream -2025-09-08 15:31:08 info: All clean up for the broadcaster are done -2025-09-08 15:31:08 info: Viewer with socketId: oRL4baObprxiZ7TtAAAD has left the live stream -2025-09-08 15:31:08 info: All clean up for the viewer are done -2025-09-11 08:35:01 info: Database connected successfully -2025-09-11 08:35:11 info: Router created for room: f2152265-6c96-4a0b-96ee-1831f020f795 -2025-09-11 08:35:11 info: WebRTC Server created -2025-09-11 08:35:27 info: ViewerId: m7Y1A-EWTwjKTd8HAAAF role updated to co-host -2025-09-11 08:35:59 info: Viewer with socketId: m7Y1A-EWTwjKTd8HAAAF has left the live stream -2025-09-11 08:35:59 info: All clean up for the viewer are done -2025-09-11 08:35:59 info: Viewer with socketId: b3IFJ6uF1cMp4PV_AAAB has left the live stream -2025-09-11 08:35:59 info: All clean up for the viewer are done -2025-09-11 08:36:00 info: Broadcaster with socketId: bUXB43YEoodnhxf1AAAD has left the live stream -2025-09-11 08:36:00 info: All clean up for the broadcaster are done -2025-09-11 09:35:56 info: Database connected successfully -2025-09-11 09:36:16 info: Router created for room: 92d09786-345c-4589-8483-319f124d3795 -2025-09-11 09:36:16 info: WebRTC Server created -2025-09-11 09:36:27 info: ViewerId: nDo5EUPP5wG14iaVAAAD role updated to co-host -2025-09-11 09:37:10 info: Viewer with socketId: IMjLGRKv1GHT2wM9AAAB has left the live stream -2025-09-11 09:37:10 info: All clean up for the viewer are done -2025-09-11 09:37:11 info: Viewer with socketId: nDo5EUPP5wG14iaVAAAD has left the live stream -2025-09-11 09:37:11 info: All clean up for the viewer are done -2025-09-11 09:37:12 info: Broadcaster with socketId: FMHZfeyRHt4c_uDEAAAF has left the live stream -2025-09-11 09:37:12 info: All clean up for the broadcaster are done -2025-09-11 09:55:17 info: Database connected successfully -2025-09-11 09:55:24 info: Router created for room: a9e3c011-74e0-4e4c-88b7-29238ffb0be5 -2025-09-11 09:55:24 info: WebRTC Server created -2025-09-11 09:55:35 info: ViewerId: iYTV1y4DJmdrKf7uAAAB role updated to co-host -2025-09-11 09:56:26 info: Viewer with socketId: iYTV1y4DJmdrKf7uAAAB has left the live stream -2025-09-11 09:56:26 info: All clean up for the viewer are done -2025-09-11 09:56:38 info: ViewerId: eRD7cfiTXUlhjH7zAAAH role updated to co-host -2025-09-11 09:59:50 info: Viewer with socketId: eRD7cfiTXUlhjH7zAAAH has left the live stream -2025-09-11 09:59:50 info: All clean up for the viewer are done -2025-09-11 10:00:02 info: ViewerId: 5MffqXuCoA5Z1BwCAAAJ role updated to co-host -2025-09-11 10:00:42 info: Viewer with socketId: 5MffqXuCoA5Z1BwCAAAJ has left the live stream -2025-09-11 10:00:42 info: All clean up for the viewer are done -2025-09-11 10:00:43 info: Broadcaster with socketId: Dunl9mCkta0KW9USAAAF has left the live stream -2025-09-11 10:00:43 info: All clean up for the broadcaster are done -2025-09-11 10:00:44 info: Viewer with socketId: nEJI5odw2GpciJ0pAAAD has left the live stream -2025-09-11 10:00:44 info: All clean up for the viewer are done -2025-09-13 11:59:36 info: Database connected successfully -2025-09-13 11:59:52 info: Router created for room: b51634a8-2a5a-47f3-8ea6-03d7b0e31161 -2025-09-13 11:59:52 info: WebRTC Server created -2025-09-13 12:00:48 info: ViewerId: p4H8jS583dvYXHtBAAAB role updated to co-host -2025-09-13 12:01:25 info: Viewer with socketId: p4H8jS583dvYXHtBAAAB has left the live stream -2025-09-13 12:01:25 info: All clean up for the viewer are done -2025-09-13 12:01:27 info: Viewer with socketId: 6kOsEM8AXxIpfWI7AAAF has left the live stream -2025-09-13 12:01:27 info: All clean up for the viewer are done -2025-09-13 12:01:27 info: Broadcaster with socketId: EdDZ_foBqSH2vDOWAAAD has left the live stream -2025-09-13 12:01:27 info: All clean up for the broadcaster are done -2025-09-13 12:58:00 info: Database connected successfully -2025-09-13 12:58:04 info: Router created for room: 1980043d-7efe-480c-b3f2-bb37cbe28592 -2025-09-13 12:58:04 info: WebRTC Server created -2025-09-13 12:58:20 info: ViewerId: VYNIXZ2DuKNqZMQiAAAD role updated to co-host -2025-09-13 12:58:37 info: Viewer with socketId: VYNIXZ2DuKNqZMQiAAAD has left the live stream -2025-09-13 12:58:37 info: All clean up for the viewer are done -2025-09-13 12:58:38 info: Broadcaster with socketId: K-IPK8gQdfOmvJi6AAAF has left the live stream -2025-09-13 12:58:38 info: All clean up for the broadcaster are done -2025-09-13 12:58:38 info: Viewer with socketId: bDaTqrl4tWNRaks2AAAB has left the live stream -2025-09-13 12:58:38 info: All clean up for the viewer are done -2025-09-13 13:33:27 info: Database connected successfully -2025-09-13 13:34:38 info: Database connected successfully -2025-09-13 13:34:43 info: Router created for room: 6cbcdcb9-3b90-4fd9-8793-6a70eb0ed8e6 -2025-09-13 13:34:43 info: WebRTC Server created -2025-09-13 13:34:56 info: ViewerId: D6fNPe1v7e6CiHolAAAD role updated to co-host -2025-09-15 12:53:07 info: Database connected successfully -2025-09-15 12:53:19 info: Router created for room: 447da737-7183-43ec-bdf6-8a603fac9cdc -2025-09-15 12:53:19 info: WebRTC Server created -2025-09-15 12:53:41 info: ViewerId: -Qyp4WR_TGnVRmLqAAAD role updated to co-host -2025-09-15 12:56:03 info: Viewer with socketId: -Qyp4WR_TGnVRmLqAAAD has left the live stream -2025-09-15 12:56:03 info: All clean up for the viewer are done -2025-09-15 12:56:04 info: Broadcaster with socketId: RPCT-Ed6EktBBJe3AAAB has left the live stream -2025-09-15 12:56:04 info: All clean up for the broadcaster are done -2025-09-15 12:56:05 info: Viewer with socketId: 4lu89X7R_o3l3032AAAF has left the live stream -2025-09-15 12:56:05 info: All clean up for the viewer are done -2025-09-15 12:58:29 info: Database connected successfully -2025-09-15 12:58:47 info: Database connected successfully -2025-09-15 12:58:55 info: Router created for room: 1c5f605e-840c-4383-a9ba-df345d58912e -2025-09-15 12:58:55 info: WebRTC Server created -2025-09-15 12:59:08 info: ViewerId: DaerNKwvTuY9N7V2AAAD role updated to co-host -2025-09-15 13:00:08 info: Database connected successfully -2025-09-15 13:00:17 info: Router created for room: 02861c24-b09a-41e9-af65-1c3345aad5e3 -2025-09-15 13:00:17 info: WebRTC Server created -2025-09-15 13:00:31 info: ViewerId: awzemyyCaeqQ24EwAAAB role updated to co-host -2025-09-15 13:04:15 info: Database connected successfully -2025-09-15 13:04:43 info: Router created for room: 6c3f24b1-218d-451b-9aa3-060189021e6b -2025-09-15 13:04:43 info: WebRTC Server created -2025-09-15 13:05:19 info: ViewerId: aQGCcl4msReiC5rTAAAD role updated to co-host -2025-09-15 13:05:52 info: Broadcaster with socketId: mlke9KSjNvbIYuo6AAAB has left the live stream -2025-09-15 13:05:52 info: All clean up for the broadcaster are done -2025-09-15 13:05:53 info: Viewer with socketId: aQGCcl4msReiC5rTAAAD has left the live stream -2025-09-15 13:05:53 info: All clean up for the viewer are done -2025-09-15 13:05:53 info: Viewer with socketId: XbK0yEvTsdMRveCfAAAF has left the live stream -2025-09-15 13:05:53 info: All clean up for the viewer are done -2025-09-15 13:05:57 info: Router created for room: 109298f7-5201-4606-9f73-603f3b6369d6 -2025-09-15 13:05:57 info: WebRTC Server created -2025-09-15 13:06:13 info: ViewerId: 3OJSsw8xy5eVKPXmAAAH role updated to co-host -2025-09-15 13:07:31 info: Database connected successfully -2025-09-15 13:08:49 info: Database connected successfully -2025-09-15 13:09:44 info: Database connected successfully -2025-09-15 13:17:07 info: Database connected successfully -2025-09-15 13:17:12 info: Router created for room: e014776a-c720-4f89-8549-cd0b88b902ec -2025-09-15 13:17:12 info: WebRTC Server created -2025-09-15 13:18:43 info: Database connected successfully -2025-09-15 13:20:40 info: Router created for room: b567ef37-a965-4bdc-8e1b-cc0d56e54986 -2025-09-15 13:20:40 info: WebRTC Server created -2025-09-15 13:21:00 info: ViewerId: QWO7fh725iMj_wAwAAAH role updated to co-host -2025-09-15 13:22:48 info: Database connected successfully -2025-09-15 13:22:56 info: Router created for room: c2fd7d05-d50b-44e4-b47e-f349fd45675a -2025-09-15 13:22:56 info: WebRTC Server created -2025-09-15 13:23:16 info: ViewerId: -ixKw6Cm6WKjmFq3AAAF role updated to co-host -2025-09-15 13:25:03 info: Database connected successfully -2025-09-15 13:26:10 info: Router created for room: 3d36d0c2-c952-414d-a19f-389f3a444b06 -2025-09-15 13:26:10 info: WebRTC Server created -2025-09-15 13:26:13 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:83:20) - at joinAsViewer (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewer.handler.ts:19:23) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\registerViewer.handler.ts:17:25) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-09-15 13:26:15 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:83:20) - at joinAsViewer (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewer.handler.ts:19:23) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\registerViewer.handler.ts:17:25) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-09-15 13:26:49 info: Database connected successfully -2025-09-15 13:26:56 info: Router created for room: 3315c429-0fb7-4d29-9a4e-7e29f240328c -2025-09-15 13:26:56 info: WebRTC Server created -2025-09-15 13:27:07 info: ViewerId: WJZPjGRdZTDpo4vIAAAE role updated to co-host -2025-09-15 13:28:45 info: Broadcaster with socketId: i1a14Umx_JdgrA0wAAAG has left the live stream -2025-09-15 13:28:45 info: All clean up for the broadcaster are done -2025-09-15 13:28:46 info: Viewer with socketId: WJZPjGRdZTDpo4vIAAAE has left the live stream -2025-09-15 13:28:46 info: All clean up for the viewer are done -2025-09-15 13:28:47 info: Viewer with socketId: DdGYLGoHLnIyQOkaAAAC has left the live stream -2025-09-15 13:28:47 info: All clean up for the viewer are done -2025-09-27 18:18:46 info: Database connected successfully -2025-09-27 18:20:05 info: Router created for room: c81b0db7-9632-456a-aa65-044efc3c7869 -2025-09-27 18:20:05 info: WebRTC Server created -2025-09-27 18:20:20 info: ViewerId: dhLA-5hLNRX_U2bwAAAB role updated to co-host -2025-09-27 18:20:53 info: Viewer with socketId: dhLA-5hLNRX_U2bwAAAB has left the live stream -2025-09-27 18:20:53 info: All clean up for the viewer are done -2025-09-27 18:20:55 info: Broadcaster with socketId: BPaI3VQ2ztjH5DW2AAAF has left the live stream -2025-09-27 18:20:55 info: All clean up for the broadcaster are done -2025-09-27 18:20:56 info: Viewer with socketId: Aun5sOXoZpqxrnhGAAAD has left the live stream -2025-09-27 18:20:56 info: All clean up for the viewer are done -2025-09-28 18:44:46 info: Database connected successfully -2025-09-28 18:44:53 info: Router created for room: d4e1506c-294b-45d5-9799-7d4ace5185b9 -2025-09-28 18:44:53 info: WebRTC Server created -2025-09-28 18:45:12 info: ViewerId: XFlkJRu0iCyDnEKUAAAB role updated to co-host -2025-09-28 18:48:53 info: Database connected successfully -2025-09-28 18:49:11 info: Database connected successfully -2025-09-28 18:49:36 info: Database connected successfully -2025-09-28 18:50:16 info: Database connected successfully -2025-09-28 18:50:50 info: Database connected successfully -2025-09-28 18:51:02 info: Router created for room: 64162ac4-a6fe-4372-9323-6982e27b9e85 -2025-09-28 18:51:02 info: WebRTC Server created -2025-09-28 18:51:36 info: ViewerId: hgdkPaVh44cUH42nAAAD role updated to co-host -2025-09-28 18:52:36 info: Database connected successfully -2025-09-28 18:52:54 info: Database connected successfully -2025-09-28 18:53:03 info: Database connected successfully -2025-09-28 18:53:45 info: Database connected successfully -2025-09-28 18:53:57 info: Router created for room: befaa1f8-b6d8-416c-97af-9af9fe0eb88a -2025-09-28 18:53:57 info: WebRTC Server created -2025-09-28 18:54:12 info: ViewerId: nRqdeoy-N56t33BhAAAD role updated to co-host -2025-09-28 18:55:43 info: Database connected successfully -2025-09-28 18:55:56 info: Router created for room: fe957ce2-4bb5-4f99-8637-eb4ff80b6b3d -2025-09-28 18:55:56 info: WebRTC Server created -2025-09-28 18:56:09 info: ViewerId: aGo5Yhg7v0zKS_eOAAAD role updated to co-host -2025-09-28 18:58:47 info: Database connected successfully -2025-09-28 18:58:53 info: Router created for room: 697bd9dc-1223-4278-9078-3637c751d8c7 -2025-09-28 18:58:53 info: WebRTC Server created -2025-09-28 18:59:20 info: ViewerId: TErRFyld0RET0vFwAAAD role updated to co-host -2025-09-28 19:00:57 info: Broadcaster with socketId: tpWWK_rm9egU_YgtAAAB has left the live stream -2025-09-28 19:00:57 info: All clean up for the broadcaster are done -2025-09-28 19:00:58 info: Viewer with socketId: TErRFyld0RET0vFwAAAD has left the live stream -2025-09-28 19:00:58 info: All clean up for the viewer are done -2025-09-28 19:00:58 info: Viewer with socketId: j_E2IZVrgaxWY0HlAAAF has left the live stream -2025-09-28 19:00:58 info: All clean up for the viewer are done -2026-01-07 11:11:58 info: Router created for room: 6874f449-18e1-4441-bfc7-b529b75eec6d -2026-01-07 11:11:58 info: WebRTC Server created -2026-01-07 11:15:26 error: Error: Room not found - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:83:20) - at joinAsViewer (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/viewer.handler.ts:19:23) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:17:25) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-07 11:16:15 info: Router created for room: d1874c27-321e-4b9e-a475-77ac56628f23 -2026-01-07 11:16:15 info: WebRTC Server created -2026-01-07 11:17:22 info: Router created for room: 50c74dfd-4d46-4071-908c-a016b87aea36 -2026-01-07 11:17:22 info: WebRTC Server created -2026-01-07 11:17:32 error: Error creating transport -2026-01-07 11:17:40 error: MongooseError: Operation `viewers.findOne()` buffering timed out after 10000ms - at Timeout. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mongoose/lib/drivers/node-mongodb-native/collection.js:187:23) - at listOnTimeout (node:internal/timers:605:17) - at processTimers (node:internal/timers:541:7) -2026-01-07 11:18:38 info: Router created for room: 4d548326-cad3-4225-8c82-65a6ce65a305 -2026-01-07 11:18:38 info: WebRTC Server created -2026-01-07 11:18:57 info: Router created for room: 199b4d4a-6e66-45ae-bec1-46cccdf9d8c3 -2026-01-07 11:18:57 info: WebRTC Server created -2026-01-07 11:19:08 error: Error creating transport -2026-01-07 11:19:14 error: MongooseError: Operation `viewers.findOne()` buffering timed out after 10000ms - at Timeout. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mongoose/lib/drivers/node-mongodb-native/collection.js:187:23) - at listOnTimeout (node:internal/timers:605:17) - at processTimers (node:internal/timers:541:7) -2026-01-07 11:21:00 info: Router created for room: 65a2a085-3ed3-4738-a4b9-5ee70517c3c6 -2026-01-07 11:21:00 info: WebRTC Server created -2026-01-07 11:21:11 error: Error creating transport -2026-01-07 12:07:06 info: Router created for room: 9eafc83f-0949-4d91-a79f-40b26a42d9e5 -2026-01-07 12:07:06 info: WebRTC Server created -2026-01-07 12:07:17 error: Error creating transport -2026-01-09 14:35:55 info: Client connected: a8SB3w1pA0_HD5kVAAAB -2026-01-09 14:36:24 info: Create room socket lister started -2026-01-09 14:36:24 info: Create room started -2026-01-09 14:36:24 info: Creating worker started -2026-01-09 14:36:24 info: Add broadcaster started -2026-01-09 14:36:24 info: Get room started -2026-01-09 14:36:24 error: Room not found -2026-01-09 14:36:24 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:135:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:156:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:36:24 error: Room not found -2026-01-09 14:36:24 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:160:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:36:24 info: Broadcaster created successfully -2026-01-09 14:36:24 info: Create room listener successfully executed -2026-01-09 14:36:24 info: Creation of worker successfully executed -2026-01-09 14:36:24 info: Creation of worker started -2026-01-09 14:36:24 info: Creating worker started -2026-01-09 14:36:24 info: Creation of worker successfully executed -2026-01-09 14:36:24 info: Router created for room: b03863fc-aca3-476f-8f20-ddb24eb8935f -2026-01-09 14:36:24 info: Creation of webRtc server started -2026-01-09 14:36:24 info: WebRTC Server created successfully -2026-01-09 14:36:24 info: Creation of room successfully executed -2026-01-09 14:36:24 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 14:36:24 info: Get room started -2026-01-09 14:36:24 info: Get room executed successfully -2026-01-09 14:36:24 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 14:36:24 info: Create broadcaster lister started -2026-01-09 14:36:24 info: Get room started -2026-01-09 14:36:24 info: Get room executed successfully -2026-01-09 14:36:24 info: Creating worker started -2026-01-09 14:36:24 info: Creation of worker successfully executed -2026-01-09 14:36:24 info: Creation of webRtc server started -2026-01-09 14:36:24 info: WebRTC Server created successfully -2026-01-09 14:36:24 info: Creation of webRTC transport started -2026-01-09 14:36:24 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:36:24 error: Broadcaster not found -2026-01-09 14:36:24 error: Error - at saveBroadcasterTransport (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:198:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:142:31) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:36:51 info: Client connected: jJ9b27q4Ee7u4HJGAAAD -2026-01-09 14:36:57 info: Join as viewer listner started -2026-01-09 14:36:57 info: Join as viewer started -2026-01-09 14:36:57 info: Get room started -2026-01-09 14:36:57 info: Get room executed successfully -2026-01-09 14:36:57 info: Join as viewer completed successfully -2026-01-09 14:36:57 info: Get room started -2026-01-09 14:36:57 info: Get room executed successfully -2026-01-09 14:36:57 info: Join viewer listner successfully executed -2026-01-09 14:36:57 info: Create viewer transport listner started -2026-01-09 14:36:57 info: Get room started -2026-01-09 14:36:57 info: Get room executed successfully -2026-01-09 14:36:57 info: Create viewer transport started -2026-01-09 14:36:57 info: Get room started -2026-01-09 14:36:57 info: Get room executed successfully -2026-01-09 14:36:57 info: Creating worker started -2026-01-09 14:36:57 info: Creation of worker successfully executed -2026-01-09 14:36:57 info: Creation of webRtc server started -2026-01-09 14:36:57 info: WebRTC Server created successfully -2026-01-09 14:36:57 info: Creation of webRTC transport started -2026-01-09 14:36:57 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:36:57 info: Create viewer transport successfully executed -2026-01-09 14:36:57 info: Create viewer transport listner successfully executed -2026-01-09 14:37:26 info: User disconnected jJ9b27q4Ee7u4HJGAAAD beacuse of transport close -2026-01-09 14:37:40 info: Client connected: GtxKqSnBMNNOdAEBAAAF -2026-01-09 14:37:46 info: Join as viewer listner started -2026-01-09 14:37:46 info: Join as viewer started -2026-01-09 14:37:46 info: Get room started -2026-01-09 14:37:46 info: Get room executed successfully -2026-01-09 14:37:46 info: Join as viewer completed successfully -2026-01-09 14:37:46 info: Get room started -2026-01-09 14:37:46 info: Get room executed successfully -2026-01-09 14:37:46 info: Join viewer listner successfully executed -2026-01-09 14:37:47 info: Create viewer transport listner started -2026-01-09 14:37:47 info: Get room started -2026-01-09 14:37:47 info: Get room executed successfully -2026-01-09 14:37:47 info: Create viewer transport started -2026-01-09 14:37:47 info: Get room started -2026-01-09 14:37:47 info: Get room executed successfully -2026-01-09 14:37:47 info: Creating worker started -2026-01-09 14:37:47 info: Creation of worker successfully executed -2026-01-09 14:37:47 info: Creation of webRtc server started -2026-01-09 14:37:47 info: WebRTC Server created successfully -2026-01-09 14:37:47 info: Creation of webRTC transport started -2026-01-09 14:37:47 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:37:47 info: Create viewer transport successfully executed -2026-01-09 14:37:47 info: Create viewer transport listner successfully executed -2026-01-09 14:38:47 info: Client connected: x8oXyF-DDaml_MxcAAAB -2026-01-09 14:38:48 info: Create room socket lister started -2026-01-09 14:38:48 info: Create room started -2026-01-09 14:38:48 info: Creating worker started -2026-01-09 14:38:48 info: Add broadcaster started -2026-01-09 14:38:48 info: Get room started -2026-01-09 14:38:48 error: Room not found -2026-01-09 14:38:48 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:135:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:156:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:38:48 error: Room not found -2026-01-09 14:38:48 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:160:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:38:48 info: Broadcaster created successfully -2026-01-09 14:38:48 info: Create room listener successfully executed -2026-01-09 14:38:48 info: Creation of worker successfully executed -2026-01-09 14:38:48 info: Creation of worker started -2026-01-09 14:38:48 info: Creating worker started -2026-01-09 14:38:48 info: Creation of worker successfully executed -2026-01-09 14:38:48 info: Router created for room: 859fa379-0f03-4e89-9465-a9438f38bb54 -2026-01-09 14:38:48 info: Creation of webRtc server started -2026-01-09 14:38:48 info: WebRTC Server created successfully -2026-01-09 14:38:48 info: Creation of room successfully executed -2026-01-09 14:38:49 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 14:38:49 info: Get room started -2026-01-09 14:38:49 info: Get room executed successfully -2026-01-09 14:38:49 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 14:38:49 info: Create broadcaster lister started -2026-01-09 14:38:49 info: Get room started -2026-01-09 14:38:49 info: Get room executed successfully -2026-01-09 14:38:49 info: Creating worker started -2026-01-09 14:38:49 info: Creation of worker successfully executed -2026-01-09 14:38:49 info: Creation of webRtc server started -2026-01-09 14:38:49 info: WebRTC Server created successfully -2026-01-09 14:38:49 info: Creation of webRTC transport started -2026-01-09 14:38:49 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:38:49 error: Broadcaster not found -2026-01-09 14:38:49 error: Error - at saveBroadcasterTransport (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:198:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:142:31) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:39:09 info: Client connected: FQ7GlZx9ziV0wbdEAAAD -2026-01-09 14:39:15 info: Join as viewer listner started -2026-01-09 14:39:15 info: Join as viewer started -2026-01-09 14:39:15 info: Get room started -2026-01-09 14:39:15 info: Get room executed successfully -2026-01-09 14:39:15 info: Join as viewer completed successfully -2026-01-09 14:39:15 info: Get room started -2026-01-09 14:39:15 info: Get room executed successfully -2026-01-09 14:39:15 info: Join viewer listner successfully executed -2026-01-09 14:39:15 info: Create viewer transport listner started -2026-01-09 14:39:15 info: Get room started -2026-01-09 14:39:15 info: Get room executed successfully -2026-01-09 14:39:15 info: Create viewer transport started -2026-01-09 14:39:15 info: Get room started -2026-01-09 14:39:15 info: Get room executed successfully -2026-01-09 14:39:15 info: Creating worker started -2026-01-09 14:39:15 info: Creation of worker successfully executed -2026-01-09 14:39:15 info: Creation of webRtc server started -2026-01-09 14:39:15 info: WebRTC Server created successfully -2026-01-09 14:39:15 info: Creation of webRTC transport started -2026-01-09 14:39:15 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:39:15 info: Create viewer transport successfully executed -2026-01-09 14:39:15 info: Create viewer transport listner successfully executed -2026-01-09 14:40:58 info: Client connected: 8plRBkjsV9AaClItAAAC -2026-01-09 14:40:59 info: Client connected: oMn1J4TbMGo9qW3dAAAE -2026-01-09 14:41:00 info: User disconnected oMn1J4TbMGo9qW3dAAAE beacuse of transport close -2026-01-09 14:41:00 info: Client connected: 2NZ3fSw1JtlighCpAAAG -2026-01-09 14:41:00 info: Create room socket lister started -2026-01-09 14:41:00 info: Create room started -2026-01-09 14:41:00 info: Creating worker started -2026-01-09 14:41:00 info: Add broadcaster started -2026-01-09 14:41:00 info: Get room started -2026-01-09 14:41:00 error: Room not found -2026-01-09 14:41:00 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:135:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:156:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:41:00 error: Room not found -2026-01-09 14:41:00 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:160:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:41:00 info: Broadcaster created successfully -2026-01-09 14:41:00 info: Create room listener successfully executed -2026-01-09 14:41:00 info: Creation of worker successfully executed -2026-01-09 14:41:00 info: Creation of worker started -2026-01-09 14:41:00 info: Creating worker started -2026-01-09 14:41:00 info: Creation of worker successfully executed -2026-01-09 14:41:00 info: Router created for room: d7820e39-ad6e-427c-9df9-5aabc8a1de43 -2026-01-09 14:41:00 info: Creation of webRtc server started -2026-01-09 14:41:00 info: WebRTC Server created successfully -2026-01-09 14:41:00 info: Creation of room successfully executed -2026-01-09 14:41:01 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 14:41:01 info: Get room started -2026-01-09 14:41:01 info: Get room executed successfully -2026-01-09 14:41:01 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 14:41:01 info: Create broadcaster lister started -2026-01-09 14:41:01 info: Get room started -2026-01-09 14:41:01 info: Get room executed successfully -2026-01-09 14:41:01 info: Creating worker started -2026-01-09 14:41:01 info: Creation of worker successfully executed -2026-01-09 14:41:01 info: Creation of webRtc server started -2026-01-09 14:41:01 info: WebRTC Server created successfully -2026-01-09 14:41:01 info: Creation of webRTC transport started -2026-01-09 14:41:01 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:41:01 error: Broadcaster not found -2026-01-09 14:41:01 error: Error - at saveBroadcasterTransport (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:198:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:142:31) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:41:04 info: Join as viewer listner started -2026-01-09 14:41:04 info: Join as viewer started -2026-01-09 14:41:04 info: Get room started -2026-01-09 14:41:04 info: Get room executed successfully -2026-01-09 14:41:04 info: Join as viewer completed successfully -2026-01-09 14:41:04 info: Get room started -2026-01-09 14:41:04 info: Get room executed successfully -2026-01-09 14:41:04 info: Join viewer listner successfully executed -2026-01-09 14:41:04 info: Create viewer transport listner started -2026-01-09 14:41:04 info: Get room started -2026-01-09 14:41:04 info: Get room executed successfully -2026-01-09 14:41:04 info: Create viewer transport started -2026-01-09 14:41:04 info: Get room started -2026-01-09 14:41:04 info: Get room executed successfully -2026-01-09 14:41:04 info: Creating worker started -2026-01-09 14:41:04 info: Creation of worker successfully executed -2026-01-09 14:41:04 info: Creation of webRtc server started -2026-01-09 14:41:04 info: WebRTC Server created successfully -2026-01-09 14:41:04 info: Creation of webRTC transport started -2026-01-09 14:41:04 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:41:04 info: Create viewer transport successfully executed -2026-01-09 14:41:04 info: Create viewer transport listner successfully executed -2026-01-09 14:41:57 info: Client connected: hny8b_MYdKwFsQESAAAB -2026-01-09 14:42:12 info: Client connected: WzinpKofwUr_D8bIAAAB -2026-01-09 14:42:14 info: Client connected: 16OnSKsXIfwbtH0AAAAD -2026-01-09 14:42:15 info: Create room socket lister started -2026-01-09 14:42:15 info: Create room started -2026-01-09 14:42:15 info: Creating worker started -2026-01-09 14:42:15 info: Add broadcaster started -2026-01-09 14:42:15 info: Get room started -2026-01-09 14:42:15 error: Room not found -2026-01-09 14:42:15 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:135:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:156:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:42:15 error: Room not found -2026-01-09 14:42:15 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:160:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:42:15 info: Broadcaster created successfully -2026-01-09 14:42:15 info: Create room listener successfully executed -2026-01-09 14:42:15 info: Creation of worker successfully executed -2026-01-09 14:42:15 info: Creation of worker started -2026-01-09 14:42:15 info: Creating worker started -2026-01-09 14:42:15 info: Creation of worker successfully executed -2026-01-09 14:42:15 info: Router created for room: d7361f80-3e82-4dc6-8371-ff304ea1fd52 -2026-01-09 14:42:15 info: Creation of webRtc server started -2026-01-09 14:42:15 info: WebRTC Server created successfully -2026-01-09 14:42:15 info: Creation of room successfully executed -2026-01-09 14:42:16 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 14:42:16 info: Get room started -2026-01-09 14:42:16 info: Get room executed successfully -2026-01-09 14:42:16 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 14:42:16 info: Create broadcaster lister started -2026-01-09 14:42:16 info: Get room started -2026-01-09 14:42:16 info: Get room executed successfully -2026-01-09 14:42:16 info: Creating worker started -2026-01-09 14:42:16 info: Creation of worker successfully executed -2026-01-09 14:42:16 info: Creation of webRtc server started -2026-01-09 14:42:16 info: WebRTC Server created successfully -2026-01-09 14:42:16 info: Creation of webRTC transport started -2026-01-09 14:42:16 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:42:16 error: Broadcaster not found -2026-01-09 14:42:16 error: Error - at saveBroadcasterTransport (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:198:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:142:31) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:42:19 info: Join as viewer listner started -2026-01-09 14:42:19 info: Join as viewer started -2026-01-09 14:42:19 info: Get room started -2026-01-09 14:42:19 info: Get room executed successfully -2026-01-09 14:42:19 info: Join as viewer completed successfully -2026-01-09 14:42:19 info: Get room started -2026-01-09 14:42:19 info: Get room executed successfully -2026-01-09 14:42:19 info: Join viewer listner successfully executed -2026-01-09 14:42:19 info: Create viewer transport listner started -2026-01-09 14:42:19 info: Get room started -2026-01-09 14:42:19 info: Get room executed successfully -2026-01-09 14:42:19 info: Create viewer transport started -2026-01-09 14:42:19 info: Get room started -2026-01-09 14:42:19 info: Get room executed successfully -2026-01-09 14:42:19 info: Creating worker started -2026-01-09 14:42:19 info: Creation of worker successfully executed -2026-01-09 14:42:19 info: Creation of webRtc server started -2026-01-09 14:42:19 info: WebRTC Server created successfully -2026-01-09 14:42:19 info: Creation of webRTC transport started -2026-01-09 14:42:19 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:42:19 info: Create viewer transport successfully executed -2026-01-09 14:42:19 info: Create viewer transport listner successfully executed -2026-01-09 14:42:48 info: Client connected: xrluI3zdf7_f_vFJAAAB -2026-01-09 14:42:51 info: Create room socket lister started -2026-01-09 14:42:51 info: Create room started -2026-01-09 14:42:51 info: Creating worker started -2026-01-09 14:42:51 info: Add broadcaster started -2026-01-09 14:42:51 info: Get room started -2026-01-09 14:42:51 error: Room not found -2026-01-09 14:42:51 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:135:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:156:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:42:51 error: Room not found -2026-01-09 14:42:51 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:160:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:42:51 info: Broadcaster created successfully -2026-01-09 14:42:51 info: Create room listener successfully executed -2026-01-09 14:42:51 info: Creation of worker successfully executed -2026-01-09 14:42:51 info: Creation of worker started -2026-01-09 14:42:51 info: Creating worker started -2026-01-09 14:42:51 info: Creation of worker successfully executed -2026-01-09 14:42:51 info: Router created for room: 22ef9e26-2dc2-441d-91fa-00f49dd2d2b0 -2026-01-09 14:42:51 info: Creation of webRtc server started -2026-01-09 14:42:51 info: WebRTC Server created successfully -2026-01-09 14:42:51 info: Creation of room successfully executed -2026-01-09 14:42:52 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 14:42:52 info: Get room started -2026-01-09 14:42:52 info: Get room executed successfully -2026-01-09 14:42:52 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 14:42:52 info: Create broadcaster lister started -2026-01-09 14:42:52 info: Get room started -2026-01-09 14:42:52 info: Get room executed successfully -2026-01-09 14:42:52 info: Creating worker started -2026-01-09 14:42:52 info: Creation of worker successfully executed -2026-01-09 14:42:52 info: Creation of webRtc server started -2026-01-09 14:42:52 info: WebRTC Server created successfully -2026-01-09 14:42:52 info: Creation of webRTC transport started -2026-01-09 14:42:52 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:42:52 error: Broadcaster not found -2026-01-09 14:42:52 error: Error - at saveBroadcasterTransport (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:198:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:142:31) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:43:02 info: Client connected: ktkAn6nhz08d0AQqAAAD -2026-01-09 14:43:02 info: User disconnected ktkAn6nhz08d0AQqAAAD beacuse of transport error -2026-01-09 14:43:02 info: Client connected: 1ZTSJ9-Bn3tZ-mfRAAAF -2026-01-09 14:43:05 info: Join as viewer listner started -2026-01-09 14:43:05 info: Join as viewer started -2026-01-09 14:43:05 info: Get room started -2026-01-09 14:43:05 info: Get room executed successfully -2026-01-09 14:43:05 info: Join as viewer completed successfully -2026-01-09 14:43:05 info: Get room started -2026-01-09 14:43:05 info: Get room executed successfully -2026-01-09 14:43:05 info: Join viewer listner successfully executed -2026-01-09 14:43:05 info: Create viewer transport listner started -2026-01-09 14:43:05 info: Get room started -2026-01-09 14:43:05 info: Get room executed successfully -2026-01-09 14:43:05 info: Create viewer transport started -2026-01-09 14:43:05 info: Get room started -2026-01-09 14:43:05 info: Get room executed successfully -2026-01-09 14:43:05 info: Creating worker started -2026-01-09 14:43:05 info: Creation of worker successfully executed -2026-01-09 14:43:05 info: Creation of webRtc server started -2026-01-09 14:43:05 info: WebRTC Server created successfully -2026-01-09 14:43:05 info: Creation of webRTC transport started -2026-01-09 14:43:05 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:43:05 info: Create viewer transport successfully executed -2026-01-09 14:43:05 info: Create viewer transport listner successfully executed -2026-01-09 14:44:25 info: Client connected: 3LZxr2CLJN-q7kLaAAAB -2026-01-09 14:44:28 info: Client connected: a5pajTqrr0AtyFk8AAAD -2026-01-09 14:44:31 info: Create room socket lister started -2026-01-09 14:44:31 info: Create room started -2026-01-09 14:44:31 info: Creating worker started -2026-01-09 14:44:31 info: Add broadcaster started -2026-01-09 14:44:31 info: Get room started -2026-01-09 14:44:31 error: Room not found -2026-01-09 14:44:31 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:135:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:156:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:44:31 error: Room not found -2026-01-09 14:44:31 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:160:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:44:31 info: Broadcaster created successfully -2026-01-09 14:44:31 info: Create room listener successfully executed -2026-01-09 14:44:31 info: Creation of worker successfully executed -2026-01-09 14:44:31 info: Creation of worker started -2026-01-09 14:44:31 info: Creating worker started -2026-01-09 14:44:31 info: Creation of worker successfully executed -2026-01-09 14:44:31 info: Router created for room: ce8445ef-881d-4c24-88ef-3e01d211c1f8 -2026-01-09 14:44:31 info: Creation of webRtc server started -2026-01-09 14:44:31 info: WebRTC Server created successfully -2026-01-09 14:44:31 info: Creation of room successfully executed -2026-01-09 14:44:31 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 14:44:31 info: Get room started -2026-01-09 14:44:31 info: Get room executed successfully -2026-01-09 14:44:31 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 14:44:31 info: Create broadcaster lister started -2026-01-09 14:44:31 info: Get room started -2026-01-09 14:44:31 info: Get room executed successfully -2026-01-09 14:44:31 info: Creating worker started -2026-01-09 14:44:31 info: Creation of worker successfully executed -2026-01-09 14:44:31 info: Creation of webRtc server started -2026-01-09 14:44:31 info: WebRTC Server created successfully -2026-01-09 14:44:31 info: Creation of webRTC transport started -2026-01-09 14:44:32 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:44:32 error: Broadcaster not found -2026-01-09 14:44:32 error: Error - at saveBroadcasterTransport (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:198:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:142:31) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:45:12 info: Join as viewer listner started -2026-01-09 14:45:12 info: Join as viewer started -2026-01-09 14:45:12 info: Get room started -2026-01-09 14:45:12 info: Get room executed successfully -2026-01-09 14:45:12 info: Join as viewer completed successfully -2026-01-09 14:45:12 info: Get room started -2026-01-09 14:45:12 info: Get room executed successfully -2026-01-09 14:45:12 info: Join viewer listner successfully executed -2026-01-09 14:45:12 info: Create viewer transport listner started -2026-01-09 14:45:12 info: Get room started -2026-01-09 14:45:12 info: Get room executed successfully -2026-01-09 14:45:12 info: Create viewer transport started -2026-01-09 14:45:12 info: Get room started -2026-01-09 14:45:12 info: Get room executed successfully -2026-01-09 14:45:12 info: Creating worker started -2026-01-09 14:45:12 info: Creation of worker successfully executed -2026-01-09 14:45:12 info: Creation of webRtc server started -2026-01-09 14:45:12 info: WebRTC Server created successfully -2026-01-09 14:45:12 info: Creation of webRTC transport started -2026-01-09 14:45:12 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:45:12 info: Create viewer transport successfully executed -2026-01-09 14:45:12 info: Create viewer transport listner successfully executed -2026-01-09 14:47:15 info: Client connected: CJN5hxyiDEG23F1fAAAB -2026-01-09 14:47:18 info: Create room socket lister started -2026-01-09 14:47:18 info: Create room started -2026-01-09 14:47:18 info: Creating worker started -2026-01-09 14:47:18 info: Add broadcaster started -2026-01-09 14:47:18 info: Get room started -2026-01-09 14:47:18 error: Room not found -2026-01-09 14:47:18 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:135:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:156:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:47:18 error: Room not found -2026-01-09 14:47:18 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:160:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:47:18 info: Broadcaster created successfully -2026-01-09 14:47:18 info: Create room listener successfully executed -2026-01-09 14:47:18 info: Creation of worker successfully executed -2026-01-09 14:47:18 info: Creation of worker started -2026-01-09 14:47:18 info: Creating worker started -2026-01-09 14:47:18 info: Creation of worker successfully executed -2026-01-09 14:47:18 info: Router created for room: c72085cb-a2b3-4e96-841d-8dc238ea34bd -2026-01-09 14:47:18 info: Creation of webRtc server started -2026-01-09 14:47:18 info: WebRTC Server created successfully -2026-01-09 14:47:18 info: Creation of room successfully executed -2026-01-09 14:47:19 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 14:47:19 info: Get room started -2026-01-09 14:47:19 info: Get room executed successfully -2026-01-09 14:47:19 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 14:47:19 info: Create broadcaster lister started -2026-01-09 14:47:19 info: Get room started -2026-01-09 14:47:19 info: Get room executed successfully -2026-01-09 14:47:19 info: Creating worker started -2026-01-09 14:47:19 info: Creation of worker successfully executed -2026-01-09 14:47:19 info: Creation of webRtc server started -2026-01-09 14:47:19 info: WebRTC Server created successfully -2026-01-09 14:47:19 info: Creation of webRTC transport started -2026-01-09 14:47:19 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:47:19 error: Broadcaster not found -2026-01-09 14:47:19 error: Error - at saveBroadcasterTransport (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:200:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:142:31) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:49:37 info: Client connected: dCJOIwozWpRr8DM6AAAB -2026-01-09 14:49:38 info: Create room started -2026-01-09 14:49:38 info: Creating worker started -2026-01-09 14:49:38 info: Add broadcaster started -2026-01-09 14:49:38 info: Get room started -2026-01-09 14:49:38 error: Room not found -2026-01-09 14:49:38 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:135:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:156:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:29:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:49:38 error: Room not found -2026-01-09 14:49:38 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:160:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:29:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:49:38 info: Get room started -2026-01-09 14:49:38 error: Room not found -2026-01-09 14:49:38 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:135:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:31:29) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:49:38 info: Broadcaster created successfully -2026-01-09 14:49:38 info: Creation of worker successfully executed -2026-01-09 14:49:38 info: Creation of worker started -2026-01-09 14:49:38 info: Creating worker started -2026-01-09 14:49:38 info: Creation of worker successfully executed -2026-01-09 14:49:38 info: Router created for room: 5d93969d-c3ea-49c7-be68-9d1f5a891365 -2026-01-09 14:49:38 info: Creation of webRtc server started -2026-01-09 14:49:38 info: WebRTC Server created successfully -2026-01-09 14:49:38 info: Creation of room successfully executed -2026-01-09 14:49:39 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 14:49:39 info: Get room started -2026-01-09 14:49:39 info: Get room executed successfully -2026-01-09 14:49:39 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 14:49:39 info: Create broadcaster lister started -2026-01-09 14:49:39 info: Get room started -2026-01-09 14:49:39 info: Get room executed successfully -2026-01-09 14:49:39 info: Creating worker started -2026-01-09 14:49:39 info: Creation of worker successfully executed -2026-01-09 14:49:39 info: Creation of webRtc server started -2026-01-09 14:49:39 info: WebRTC Server created successfully -2026-01-09 14:49:39 info: Creation of webRTC transport started -2026-01-09 14:49:39 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:49:39 error: Broadcaster not found -2026-01-09 14:49:39 error: Error - at saveBroadcasterTransport (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:200:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:141:31) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:50:26 info: Client connected: obZBYDEi3C3p2Ad-AAAB -2026-01-09 14:50:39 info: Client connected: dMLjm1UoW0cL8yQ-AAAB -2026-01-09 14:50:42 info: Create room started -2026-01-09 14:50:42 info: Creating worker started -2026-01-09 14:50:42 info: Add broadcaster started -2026-01-09 14:50:42 info: Get room started -2026-01-09 14:50:42 error: Room not found -2026-01-09 14:50:42 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:136:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:157:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:29:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:50:42 error: Room not found -2026-01-09 14:50:42 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:161:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:29:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:50:42 info: Get room started -2026-01-09 14:50:42 error: Room not found -2026-01-09 14:50:42 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:136:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:31:29) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:50:42 info: Broadcaster created successfully -2026-01-09 14:50:42 info: Creation of worker successfully executed -2026-01-09 14:50:42 info: Creation of worker started -2026-01-09 14:50:42 info: Creating worker started -2026-01-09 14:50:42 info: Creation of worker successfully executed -2026-01-09 14:50:42 info: Router created for room: 5f5f8d0e-1346-4669-bf1d-9787ae3d0ba4 -2026-01-09 14:50:42 info: Creation of webRtc server started -2026-01-09 14:50:42 info: WebRTC Server created successfully -2026-01-09 14:50:42 info: Creation of room successfully executed -2026-01-09 14:50:43 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 14:50:43 info: Get room started -2026-01-09 14:50:43 info: Get room executed successfully -2026-01-09 14:50:43 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 14:50:43 info: Create broadcaster lister started -2026-01-09 14:50:43 info: Get room started -2026-01-09 14:50:43 info: Get room executed successfully -2026-01-09 14:50:43 info: Creating worker started -2026-01-09 14:50:43 info: Creation of worker successfully executed -2026-01-09 14:50:43 info: Creation of webRtc server started -2026-01-09 14:50:43 info: WebRTC Server created successfully -2026-01-09 14:50:43 info: Creation of webRTC transport started -2026-01-09 14:50:43 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:50:43 error: Broadcaster not found -2026-01-09 14:50:43 error: Error - at saveBroadcasterTransport (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:201:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:141:31) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:52:12 info: Client connected: yL5Hpvd7cnNaEwfJAAAB -2026-01-09 14:52:25 info: User disconnected yL5Hpvd7cnNaEwfJAAAB beacuse of transport close -2026-01-09 14:52:25 info: Client connected: n6bAOsKoODDdzlBTAAAD -2026-01-09 14:52:25 info: Create room started -2026-01-09 14:52:25 info: Creating worker started -2026-01-09 14:52:25 info: Add broadcaster started -2026-01-09 14:52:25 info: Get room started -2026-01-09 14:52:25 error: Room not found -2026-01-09 14:52:25 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:136:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:157:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:29:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:52:25 error: Room not found -2026-01-09 14:52:25 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:161:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:29:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:52:25 info: Get room started -2026-01-09 14:52:25 error: Room not found -2026-01-09 14:52:25 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:136:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:31:29) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:52:25 info: Broadcaster created successfully -2026-01-09 14:52:25 info: Creation of worker successfully executed -2026-01-09 14:52:25 info: Creation of worker started -2026-01-09 14:52:25 info: Creating worker started -2026-01-09 14:52:25 info: Creation of worker successfully executed -2026-01-09 14:52:25 info: Router created for room: 28a60d02-947a-46f0-8778-0e68613bc658 -2026-01-09 14:52:25 info: Creation of webRtc server started -2026-01-09 14:52:25 info: WebRTC Server created successfully -2026-01-09 14:52:25 info: Creation of room successfully executed -2026-01-09 14:52:26 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 14:52:26 info: Get room started -2026-01-09 14:52:26 info: Get room executed successfully -2026-01-09 14:52:26 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 14:52:26 info: Create broadcaster lister started -2026-01-09 14:52:26 info: Get room started -2026-01-09 14:52:26 info: Get room executed successfully -2026-01-09 14:52:26 info: Creating worker started -2026-01-09 14:52:26 info: Creation of worker successfully executed -2026-01-09 14:52:26 info: Creation of webRtc server started -2026-01-09 14:52:26 info: WebRTC Server created successfully -2026-01-09 14:52:26 info: Creation of webRTC transport started -2026-01-09 14:52:26 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:52:26 error: Broadcaster not found -2026-01-09 14:52:26 error: Error - at saveBroadcasterTransport (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:201:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:141:31) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:54:28 info: Client connected: 9CdQ_jMTUnmOsz7GAAAB -2026-01-09 14:54:30 info: Create room started -2026-01-09 14:54:30 info: Creating worker started -2026-01-09 14:54:30 info: Add broadcaster started -2026-01-09 14:54:30 info: Get room started -2026-01-09 14:54:30 error: Room not found -2026-01-09 14:54:30 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:136:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:157:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:29:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:54:30 error: Room not found -2026-01-09 14:54:30 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:161:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:29:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:54:30 info: Get room started -2026-01-09 14:54:30 error: Room not found -2026-01-09 14:54:30 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:136:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:31:29) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:54:30 info: Broadcaster created successfully -2026-01-09 14:54:30 info: Creation of worker successfully executed -2026-01-09 14:54:30 info: Creation of worker started -2026-01-09 14:54:30 info: Creating worker started -2026-01-09 14:54:30 info: Creation of worker successfully executed -2026-01-09 14:54:30 info: Router created for room: b0c5a646-ee43-4983-aa7f-f80cb156b685 -2026-01-09 14:54:30 info: Creation of webRtc server started -2026-01-09 14:54:30 info: WebRTC Server created successfully -2026-01-09 14:54:30 info: Creation of room successfully executed -2026-01-09 14:54:30 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 14:54:30 info: Get room started -2026-01-09 14:54:30 info: Get room executed successfully -2026-01-09 14:54:30 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 14:54:30 info: Create broadcaster lister started -2026-01-09 14:54:30 info: Get room started -2026-01-09 14:54:30 info: Get room executed successfully -2026-01-09 14:54:30 info: Creating worker started -2026-01-09 14:54:30 info: Creation of worker successfully executed -2026-01-09 14:54:30 info: Creation of webRtc server started -2026-01-09 14:54:30 info: WebRTC Server created successfully -2026-01-09 14:54:30 info: Creation of webRTC transport started -2026-01-09 14:54:30 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:54:30 error: Broadcaster not found -2026-01-09 14:54:30 error: Error - at saveBroadcasterTransport (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:201:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:141:31) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:58:08 info: Client connected: 2tJjfdFxUDmjvo05AAAB -2026-01-09 14:58:10 info: Create room started -2026-01-09 14:58:10 info: Creating worker started -2026-01-09 14:58:10 info: Creation of worker successfully executed -2026-01-09 14:58:10 info: Creation of worker started -2026-01-09 14:58:10 info: Creating worker started -2026-01-09 14:58:10 info: Creation of worker successfully executed -2026-01-09 14:58:10 info: Router created for room: 97dfd188-3545-4000-b0a9-5cdf7e17af3b -2026-01-09 14:58:10 info: Creation of webRtc server started -2026-01-09 14:58:10 info: WebRTC Server created successfully -2026-01-09 14:58:10 info: Creation of room successfully executed -2026-01-09 14:58:10 info: Add broadcaster started -2026-01-09 14:58:10 info: Get room started -2026-01-09 14:58:10 info: Get room executed successfully -2026-01-09 14:58:10 info: Added broadcaster into memory room -2026-01-09 14:58:10 info: Get room started -2026-01-09 14:58:10 info: Get room executed successfully -2026-01-09 14:58:10 info: Broadcaster created successfully -2026-01-09 14:58:11 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 14:58:11 info: Get room started -2026-01-09 14:58:11 info: Get room executed successfully -2026-01-09 14:58:11 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 14:58:11 info: Create broadcaster lister started -2026-01-09 14:58:11 info: Get room started -2026-01-09 14:58:11 info: Get room executed successfully -2026-01-09 14:58:11 info: Creating worker started -2026-01-09 14:58:11 info: Creation of worker successfully executed -2026-01-09 14:58:11 info: Creation of webRtc server started -2026-01-09 14:58:11 info: WebRTC Server created successfully -2026-01-09 14:58:11 info: Creation of webRTC transport started -2026-01-09 14:58:11 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:58:11 info: Save broadcaster transport executed successfully -2026-01-09 15:00:16 info: Client connected: DeZ7_j6Ty_uSWumRAAAB -2026-01-09 15:00:17 info: Create room started -2026-01-09 15:00:17 info: Creating worker started -2026-01-09 15:00:17 info: Creation of worker successfully executed -2026-01-09 15:00:17 info: Creation of worker started -2026-01-09 15:00:17 info: Creating worker started -2026-01-09 15:00:17 info: Creation of worker successfully executed -2026-01-09 15:00:17 info: Router created for room: 2a241ed1-a7ed-4468-aed8-7d5efdbd388a -2026-01-09 15:00:17 info: Creation of webRtc server started -2026-01-09 15:00:17 info: WebRTC Server created successfully -2026-01-09 15:00:17 info: Creation of room successfully executed -2026-01-09 15:00:17 info: Add broadcaster started -2026-01-09 15:00:17 info: Get room started -2026-01-09 15:00:17 info: Get room executed successfully -2026-01-09 15:00:17 info: Added broadcaster into memory room -2026-01-09 15:00:17 info: Get room started -2026-01-09 15:00:17 info: Get room executed successfully -2026-01-09 15:00:17 info: Broadcaster created successfully -2026-01-09 15:00:18 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 15:00:18 info: Get room started -2026-01-09 15:00:18 info: Get room executed successfully -2026-01-09 15:00:18 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 15:00:18 info: Create broadcaster lister started -2026-01-09 15:00:18 info: Get room started -2026-01-09 15:00:18 info: Get room executed successfully -2026-01-09 15:00:18 info: Creating worker started -2026-01-09 15:00:18 info: Creation of worker successfully executed -2026-01-09 15:00:18 info: Creation of webRtc server started -2026-01-09 15:00:18 info: WebRTC Server created successfully -2026-01-09 15:00:18 info: Creation of webRTC transport started -2026-01-09 15:00:18 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 15:00:18 info: Save broadcaster transport executed successfully -2026-01-09 15:02:11 info: User disconnected DeZ7_j6Ty_uSWumRAAAB beacuse of transport close -2026-01-09 15:02:11 info: Client connected: HBlxxB5j2TO-RKREAAAD -2026-01-09 15:03:31 info: Client connected: pt6SXqeMRZS0dOS3AAAB -2026-01-09 15:03:36 info: Client connected: cSivHQTzucGxy4TUAAAB -2026-01-09 15:03:55 info: Client connected: 4RnArSTHYRAuRJMwAAAB -2026-01-09 15:03:58 info: User disconnected 4RnArSTHYRAuRJMwAAAB beacuse of transport close -2026-01-09 15:03:58 info: Client connected: lfgS-_8VlFqlg-FMAAAD -2026-01-09 15:03:59 info: Create room started -2026-01-09 15:03:59 info: Creating worker started -2026-01-09 15:03:59 info: Creation of worker successfully executed -2026-01-09 15:03:59 info: Creation of worker started -2026-01-09 15:03:59 info: Creating worker started -2026-01-09 15:03:59 info: Creation of worker successfully executed -2026-01-09 15:03:59 info: Router created for room: 110a5fed-afb5-4b63-89b4-3e8889029d77 -2026-01-09 15:03:59 info: Creation of webRtc server started -2026-01-09 15:03:59 info: WebRTC Server created successfully -2026-01-09 15:03:59 info: Creation of room successfully executed -2026-01-09 15:03:59 info: Add broadcaster started -2026-01-09 15:03:59 info: Get room started -2026-01-09 15:03:59 info: Get room executed successfully -2026-01-09 15:03:59 info: Added broadcaster into memory room -2026-01-09 15:03:59 info: Get room started -2026-01-09 15:03:59 info: Get room executed successfully -2026-01-09 15:03:59 info: Broadcaster created successfully -2026-01-09 15:04:00 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 15:04:00 info: Get room started -2026-01-09 15:04:00 info: Get room executed successfully -2026-01-09 15:04:00 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 15:04:00 info: Create broadcaster lister started -2026-01-09 15:04:00 info: Get room started -2026-01-09 15:04:00 info: Get room executed successfully -2026-01-09 15:04:00 info: Creation of webRTC transport started -2026-01-09 15:04:00 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 15:04:00 info: Save broadcaster transport executed successfully -2026-01-09 15:04:28 info: Client connected: krW89PwbhxPVq0QsAAAB -2026-01-09 15:04:46 info: Client connected: EsueAGWBxby_sdu4AAAB -2026-01-09 15:04:56 info: Client connected: KY-lOPqFFcBXqi7uAAAB -2026-01-09 15:05:06 info: Client connected: Aod4ewIwU_brJIlqAAAB -2026-01-09 15:05:19 info: Client connected: jEtWWhjTcmRX6otLAAAB -2026-01-09 15:05:19 info: Create room started -2026-01-09 15:05:19 info: Creating worker started -2026-01-09 15:05:20 info: Creation of worker successfully executed -2026-01-09 15:05:20 info: Creation of worker started -2026-01-09 15:05:20 info: Creating worker started -2026-01-09 15:05:20 info: Creation of worker successfully executed -2026-01-09 15:05:20 info: Router created for room: ff237f4d-ecd7-4dd8-a032-062c7de91e84 -2026-01-09 15:05:20 info: Creation of webRtc server started -2026-01-09 15:05:20 info: WebRTC Server created successfully -2026-01-09 15:05:20 info: Creation of room successfully executed -2026-01-09 15:05:20 info: Add broadcaster started -2026-01-09 15:05:20 info: Get room started -2026-01-09 15:05:20 info: Get room executed successfully -2026-01-09 15:05:20 info: Added broadcaster into memory room -2026-01-09 15:05:20 info: Get room started -2026-01-09 15:05:20 info: Get room executed successfully -2026-01-09 15:05:20 info: Broadcaster created successfully -2026-01-09 15:05:20 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 15:05:20 info: Get room started -2026-01-09 15:05:20 info: Get room executed successfully -2026-01-09 15:05:20 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 15:05:20 info: Create broadcaster lister started -2026-01-09 15:05:20 info: Get room started -2026-01-09 15:05:20 info: Get room executed successfully -2026-01-09 15:05:20 info: Creation of webRTC transport started -2026-01-09 15:05:20 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 15:05:20 info: Save broadcaster transport executed successfully -2026-01-09 15:05:36 info: Client connected: hhImRDM7WVASnRLwAAAB -2026-01-09 15:05:37 info: User disconnected hhImRDM7WVASnRLwAAAB beacuse of transport close -2026-01-09 15:05:37 info: Client connected: fqPvtIT1dY3KByYLAAAD -2026-01-09 15:05:38 info: Create room started -2026-01-09 15:05:38 info: Creating worker started -2026-01-09 15:05:38 info: Creation of worker successfully executed -2026-01-09 15:05:38 info: Creation of worker started -2026-01-09 15:05:38 info: Creating worker started -2026-01-09 15:05:38 info: Creation of worker successfully executed -2026-01-09 15:05:38 info: Router created for room: dc688d55-dc18-439c-8bdd-352639ef34d3 -2026-01-09 15:05:38 info: Creation of webRtc server started -2026-01-09 15:05:38 info: WebRTC Server created successfully -2026-01-09 15:05:38 info: Creation of room successfully executed -2026-01-09 15:05:38 info: Add broadcaster started -2026-01-09 15:05:38 info: Get room started -2026-01-09 15:05:38 info: Get room executed successfully -2026-01-09 15:05:38 info: Added broadcaster into memory room -2026-01-09 15:05:38 info: Get room started -2026-01-09 15:05:38 info: Get room executed successfully -2026-01-09 15:05:38 info: Broadcaster created successfully -2026-01-09 15:05:38 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 15:05:38 info: Get room started -2026-01-09 15:05:38 info: Get room executed successfully -2026-01-09 15:05:38 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 15:05:38 info: Create broadcaster lister started -2026-01-09 15:05:38 info: Get room started -2026-01-09 15:05:38 info: Get room executed successfully -2026-01-09 15:05:38 info: Creation of webRTC transport started -2026-01-09 15:05:38 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 15:05:38 info: Save broadcaster transport executed successfully -2026-01-09 15:13:42 info: Client connected: LXneFXMEr4iAvGFKAAAB -2026-01-09 15:13:43 error: TypeError: logging_1.default.alert is not a function - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:17:14) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-09 15:14:04 info: Client connected: EySl_-UblosdtBLQAAAB -2026-01-09 15:14:12 info: Client connected: TLtFdNcVfYvVnFmkAAAB -2026-01-09 15:14:15 info: Create room listner started -2026-01-09 15:14:15 info: Create room started -2026-01-09 15:14:15 info: Creating worker started -2026-01-09 15:14:15 info: Creation of worker successfully executed -2026-01-09 15:14:15 info: Creation of worker started -2026-01-09 15:14:15 info: Creating worker started -2026-01-09 15:14:15 info: Creation of worker successfully executed -2026-01-09 15:14:15 info: Router created for room: 5e470597-6467-4394-b8b3-e870076be718 -2026-01-09 15:14:15 info: Creation of webRtc server started -2026-01-09 15:14:15 info: WebRTC Server created successfully -2026-01-09 15:14:15 info: Creation of room successfully executed -2026-01-09 15:14:15 info: Add broadcaster started -2026-01-09 15:14:15 info: Get room started -2026-01-09 15:14:15 info: Get room executed successfully -2026-01-09 15:14:15 info: Added broadcaster into memory room -2026-01-09 15:14:15 info: Get room started -2026-01-09 15:14:15 info: Get room executed successfully -2026-01-09 15:14:15 info: Broadcaster created successfully -2026-01-09 15:14:15 info: Create room listner exceuted successfully -2026-01-09 15:14:15 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 15:14:15 info: Get room started -2026-01-09 15:14:15 info: Get room executed successfully -2026-01-09 15:14:15 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 15:14:15 info: Create broadcaster lister started -2026-01-09 15:14:15 info: Get room started -2026-01-09 15:14:15 info: Get room executed successfully -2026-01-09 15:14:15 info: Creation of webRTC transport started -2026-01-09 15:14:15 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 15:14:15 info: Save broadcaster transport executed successfully -2026-01-09 15:34:46 info: Client connected: tqH2jwMrcTnC6lzWAAAB -2026-01-09 15:34:47 info: Create room listner started -2026-01-09 15:34:47 info: Create room started -2026-01-09 15:34:47 info: Creating worker started -2026-01-09 15:34:47 info: Creation of worker successfully executed -2026-01-09 15:34:47 info: Creation of router started -2026-01-09 15:34:47 info: Router created for room: 64eb27a8-9575-44c2-84b0-b2108984a7ff -2026-01-09 15:34:47 info: Creation of webRtc server started -2026-01-09 15:34:47 info: WebRTC Server created successfully -2026-01-09 15:34:47 info: Creation of room successfully executed -2026-01-09 15:34:47 info: Add broadcaster started -2026-01-09 15:34:47 info: Get room started -2026-01-09 15:34:47 info: Get room executed successfully -2026-01-09 15:34:47 info: Added broadcaster into memory room -2026-01-09 15:34:47 info: Get room started -2026-01-09 15:34:47 info: Get room executed successfully -2026-01-09 15:34:47 info: Broadcaster created successfully -2026-01-09 15:34:47 info: Create room listner exceuted successfully -2026-01-09 15:34:48 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 15:34:48 info: Get room started -2026-01-09 15:34:48 info: Get room executed successfully -2026-01-09 15:34:48 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 15:34:48 info: Create broadcaster lister started -2026-01-09 15:34:48 info: Get room started -2026-01-09 15:34:48 info: Get room executed successfully -2026-01-09 15:34:48 info: Creation of webRTC transport started -2026-01-09 15:34:48 info: WebRTC Transport created : 35da2f99-deb6-433a-8f25-b7786281cc73 -2026-01-09 15:34:48 info: Save broadcaster transport executed successfully -2026-01-09 15:34:48 info: Connect broadcaster transport lister started -2026-01-09 15:34:48 info: Get room started -2026-01-09 15:34:48 info: Get room executed successfully -2026-01-09 15:34:48 error: Error finding transport with 35da2f99-deb6-433a-8f25-b7786281cc73 -2026-01-09 15:34:48 info: Producer listener started -2026-01-09 15:34:48 info: Get room started -2026-01-09 15:34:48 info: Get room executed successfully -2026-01-09 15:34:48 info: Producer listener executed successfully: -2026-01-09 15:34:48 info: Producer listener started -2026-01-09 15:34:48 info: Get room started -2026-01-09 15:34:48 info: Get room executed successfully -2026-01-09 15:34:48 info: Producer listener executed successfully: -2026-01-09 15:35:05 info: Client connected: EMuCyCY2Mv8Lo1pLAAAB -2026-01-09 15:35:31 info: Client connected: yC046GH1q3_CXbqaAAAB -2026-01-09 15:35:32 info: Create room listner started -2026-01-09 15:35:32 info: Create room started -2026-01-09 15:35:32 info: Creating worker started -2026-01-09 15:35:32 info: Creation of worker successfully executed -2026-01-09 15:35:32 info: Creation of router started -2026-01-09 15:35:32 info: Router created for room: e876e207-5b81-43d2-a004-7f7156e3140a -2026-01-09 15:35:32 info: Creation of webRtc server started -2026-01-09 15:35:32 info: WebRTC Server created successfully -2026-01-09 15:35:32 info: Creation of room successfully executed -2026-01-09 15:35:32 info: Add broadcaster started -2026-01-09 15:35:32 info: Get room started -2026-01-09 15:35:32 info: Get room executed successfully -2026-01-09 15:35:32 info: Added broadcaster into memory room -2026-01-09 15:35:32 info: Get room started -2026-01-09 15:35:32 info: Get room executed successfully -2026-01-09 15:35:32 info: Broadcaster created successfully -2026-01-09 15:35:32 info: Create room listner exceuted successfully -2026-01-09 15:35:32 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 15:35:32 info: Get room started -2026-01-09 15:35:32 info: Get room executed successfully -2026-01-09 15:35:32 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 15:35:33 info: Create broadcaster lister started -2026-01-09 15:35:33 info: Get room started -2026-01-09 15:35:33 info: Get room executed successfully -2026-01-09 15:35:33 info: Creation of webRTC transport started -2026-01-09 15:35:33 info: WebRTC Transport created : ecfb9469-c1cd-492e-9110-40b4d19b8ea4 -2026-01-09 15:35:33 info: Save broadcaster transport executed successfully -2026-01-09 15:35:33 info: Connect broadcaster transport lister started -2026-01-09 15:35:33 info: Get room started -2026-01-09 15:35:33 info: Get room executed successfully -2026-01-09 15:35:33 error: Error finding transport with ecfb9469-c1cd-492e-9110-40b4d19b8ea4 -2026-01-09 15:35:33 info: Producer listener started -2026-01-09 15:35:33 info: Get room started -2026-01-09 15:35:33 info: Get room executed successfully -2026-01-09 15:35:33 info: Producer listener executed successfully: -2026-01-09 15:35:33 info: Producer listener started -2026-01-09 15:35:33 info: Get room started -2026-01-09 15:35:33 info: Get room executed successfully -2026-01-09 15:35:33 info: Producer listener executed successfully: -2026-01-09 15:38:05 info: Client connected: zQ2DzAp-ihW4psoYAAAB -2026-01-09 15:38:06 info: Create room listner started -2026-01-09 15:38:06 info: Create room started -2026-01-09 15:38:06 info: Creating worker started -2026-01-09 15:38:06 info: Creation of worker successfully executed -2026-01-09 15:38:06 info: Creation of router started -2026-01-09 15:38:06 info: Router created for room: a5e5af14-f53d-4027-bbde-d0ac1d64c0ee -2026-01-09 15:38:06 info: Creation of webRtc server started -2026-01-09 15:38:06 info: WebRTC Server created successfully -2026-01-09 15:38:06 info: Creation of room successfully executed -2026-01-09 15:38:06 info: Add broadcaster started -2026-01-09 15:38:06 info: Get room started -2026-01-09 15:38:06 info: Get room executed successfully -2026-01-09 15:38:06 info: Added broadcaster into memory room -2026-01-09 15:38:06 info: Get room started -2026-01-09 15:38:06 info: Get room executed successfully -2026-01-09 15:38:06 info: Broadcaster created successfully -2026-01-09 15:38:06 info: Create room listner exceuted successfully -2026-01-09 15:38:07 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 15:38:07 info: Get room started -2026-01-09 15:38:07 info: Get room executed successfully -2026-01-09 15:38:07 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 15:38:07 info: Create broadcaster lister started -2026-01-09 15:38:07 info: Get room started -2026-01-09 15:38:07 info: Get room executed successfully -2026-01-09 15:38:07 info: Creation of webRTC transport started -2026-01-09 15:38:07 info: WebRTC Transport created : ae9b2c46-a529-4e68-9d55-dcf3a4ec5696 -2026-01-09 15:38:07 info: Save broadcaster transport executed successfully -2026-01-09 15:38:07 info: Connect broadcaster transport lister started -2026-01-09 15:38:07 info: Get room started -2026-01-09 15:38:07 info: Get room executed successfully -2026-01-09 15:38:07 info: Connect broadcaster transport executed successfully -2026-01-09 15:38:07 info: Producer listener started -2026-01-09 15:38:07 info: Get room started -2026-01-09 15:38:07 info: Get room executed successfully -2026-01-09 15:38:07 info: Producer listener executed successfully: -2026-01-09 15:38:07 info: Producer listener started -2026-01-09 15:38:07 info: Get room started -2026-01-09 15:38:07 info: Get room executed successfully -2026-01-09 15:38:07 info: Producer listener executed successfully: -2026-01-09 15:38:17 info: Client connected: U6rp4uI62PGgf7LtAAAD -2026-01-09 15:38:22 info: Join as viewer listner started -2026-01-09 15:38:22 info: Join as viewer started -2026-01-09 15:38:22 info: Get room started -2026-01-09 15:38:22 info: Get room executed successfully -2026-01-09 15:38:23 info: Join as viewer completed successfully -2026-01-09 15:38:23 info: Get room started -2026-01-09 15:38:23 info: Get room executed successfully -2026-01-09 15:38:23 info: Join viewer listner successfully executed -2026-01-09 15:38:23 info: Create viewer transport listner started -2026-01-09 15:38:23 info: Get room started -2026-01-09 15:38:23 info: Get room executed successfully -2026-01-09 15:38:23 info: Create viewer transport started -2026-01-09 15:38:23 info: Get room started -2026-01-09 15:38:23 info: Get room executed successfully -2026-01-09 15:38:23 info: Creating worker started -2026-01-09 15:38:23 info: Creation of worker successfully executed -2026-01-09 15:38:23 info: Creation of webRtc server started -2026-01-09 15:38:23 info: WebRTC Server created successfully -2026-01-09 15:38:23 info: Creation of webRTC transport started -2026-01-09 15:38:23 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 15:38:23 info: Create viewer transport successfully executed -2026-01-09 15:38:23 info: Create viewer transport listner successfully executed -2026-01-09 15:38:45 info: User disconnected zQ2DzAp-ihW4psoYAAAB beacuse of transport close -2026-01-09 15:38:45 info: Client connected: Keu8MPRAiTWlNzorAAAF -2026-01-09 15:39:09 info: Client connected: JX87ocBJVvogMUdZAAAB -2026-01-09 15:39:11 info: Client connected: ZEzuZUiNm3YGYuamAAAD -2026-01-09 15:39:18 info: Client connected: h_350iunS2T3r3UaAAAB -2026-01-09 15:39:21 info: Client connected: QrE80Gsr4nMUigkLAAAD -2026-01-09 15:44:26 info: Client connected: fR0Rohdz70SziB03AAAC -2026-01-09 15:44:26 info: Client connected: ETPu-ZvSIhzjxaImAAAD -2026-01-09 15:44:40 info: Client connected: PY0kWjPZS0RwPHA5AAAC -2026-01-09 15:44:40 info: Client connected: 9YfRBvR4IgPU-YM2AAAD -2026-01-09 15:44:44 info: User disconnected 9YfRBvR4IgPU-YM2AAAD beacuse of transport close -2026-01-09 15:44:44 info: Client connected: ZXlzZC63Pwg58ELfAAAF -2026-01-09 15:44:45 info: User disconnected PY0kWjPZS0RwPHA5AAAC beacuse of transport close -2026-01-09 15:44:45 info: Client connected: qNbHSp9sLlGQSByeAAAH -2026-01-09 15:44:46 info: Create room listner started -2026-01-09 15:44:46 info: Create room started -2026-01-09 15:44:46 info: Creating worker started -2026-01-09 15:44:46 info: Creation of worker successfully executed -2026-01-09 15:44:46 info: Creation of router started -2026-01-09 15:44:46 info: Router created for room: 583b1ce0-8e4b-4a73-8ae3-cea7002d48da -2026-01-09 15:44:46 info: Creation of webRtc server started -2026-01-09 15:44:46 info: WebRTC Server created successfully -2026-01-09 15:44:46 info: Creation of room successfully executed -2026-01-09 15:44:46 info: Add broadcaster started -2026-01-09 15:44:46 info: Get room started -2026-01-09 15:44:46 info: Get room executed successfully -2026-01-09 15:44:46 info: Added broadcaster into memory room -2026-01-09 15:44:46 info: Get room started -2026-01-09 15:44:46 info: Get room executed successfully -2026-01-09 15:44:46 info: Broadcaster created successfully -2026-01-09 15:44:46 info: Create room listner exceuted successfully -2026-01-09 15:44:47 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 15:44:47 info: Get room started -2026-01-09 15:44:47 info: Get room executed successfully -2026-01-09 15:44:47 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 15:44:47 info: Create broadcaster lister started -2026-01-09 15:44:47 info: Get room started -2026-01-09 15:44:47 info: Get room executed successfully -2026-01-09 15:44:47 info: Creation of webRTC transport started -2026-01-09 15:44:47 info: WebRTC Transport created : 151c71cb-be6f-4042-ab24-6755316cd92c -2026-01-09 15:44:47 info: Save broadcaster transport executed successfully -2026-01-09 15:44:47 info: Connect broadcaster transport lister started -2026-01-09 15:44:47 info: Get room started -2026-01-09 15:44:47 info: Get room executed successfully -2026-01-09 15:44:47 info: Connect broadcaster transport executed successfully -2026-01-09 15:44:47 info: Producer listener started -2026-01-09 15:44:47 info: Get room started -2026-01-09 15:44:47 info: Get room executed successfully -2026-01-09 15:44:47 info: Producer listener executed successfully: -2026-01-09 15:44:47 info: Producer listener started -2026-01-09 15:44:47 info: Get room started -2026-01-09 15:44:47 info: Get room executed successfully -2026-01-09 15:44:47 info: Producer listener executed successfully: -2026-01-09 15:44:51 info: Join as viewer listner started -2026-01-09 15:44:51 info: Join as viewer started -2026-01-09 15:44:51 info: Get room started -2026-01-09 15:44:51 info: Get room executed successfully -2026-01-09 15:44:51 info: Join as viewer completed successfully -2026-01-09 15:44:51 info: Get room started -2026-01-09 15:44:51 info: Get room executed successfully -2026-01-09 15:44:51 info: Join viewer listner successfully executed -2026-01-09 15:44:51 info: Create viewer transport listner started -2026-01-09 15:44:51 info: Get room started -2026-01-09 15:44:51 info: Get room executed successfully -2026-01-09 15:44:51 info: Create viewer transport started -2026-01-09 15:44:51 info: Get room started -2026-01-09 15:44:51 info: Get room executed successfully -2026-01-09 15:44:51 info: Creation of webRtc server started -2026-01-09 15:44:51 info: WebRTC Server created successfully -2026-01-09 15:44:51 info: Creation of webRTC transport started -2026-01-09 15:44:51 info: WebRTC Transport created : cd52ea53-0a03-4ed5-b15e-cad800e11286 -2026-01-09 15:44:51 info: Create viewer transport successfully executed -2026-01-09 15:44:51 info: Create viewer transport listner successfully executed -2026-01-09 15:44:51 info: Consume lister started -2026-01-09 15:44:51 info: Consume media started -2026-01-09 15:44:51 info: Get room started -2026-01-09 15:44:51 info: Get room executed successfully -2026-01-09 15:44:51 info: Viewer media consume successfully executed -2026-01-09 15:44:51 info: Consume lister executed successfully -2026-01-09 15:45:50 info: Client connected: 8kB8RjijvJRHG0jUAAAB -2026-01-09 15:45:52 info: Create room listner started -2026-01-09 15:45:52 info: Create room started -2026-01-09 15:45:52 info: Creating worker started -2026-01-09 15:45:52 info: Creation of worker successfully executed -2026-01-09 15:45:52 info: Creation of router started -2026-01-09 15:45:52 info: Router created for room: 2f363841-85a3-4d93-8a47-53e04364864f -2026-01-09 15:45:52 info: Creation of webRtc server started -2026-01-09 15:45:52 info: WebRTC Server created successfully -2026-01-09 15:45:52 info: Creation of room successfully executed -2026-01-09 15:45:52 info: Add broadcaster started -2026-01-09 15:45:52 info: Get room started -2026-01-09 15:45:52 info: Get room executed successfully -2026-01-09 15:45:52 info: Added broadcaster into memory room -2026-01-09 15:45:52 info: Get room started -2026-01-09 15:45:52 info: Get room executed successfully -2026-01-09 15:45:52 info: Broadcaster created successfully -2026-01-09 15:45:52 info: Create room listner exceuted successfully -2026-01-09 15:45:52 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 15:45:52 info: Get room started -2026-01-09 15:45:52 info: Get room executed successfully -2026-01-09 15:45:52 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 15:45:53 info: Create broadcaster lister started -2026-01-09 15:45:53 info: Get room started -2026-01-09 15:45:53 info: Get room executed successfully -2026-01-09 15:45:53 info: Creation of webRTC transport started -2026-01-09 15:45:53 info: WebRTC Transport created : 7048f5de-75fb-4d77-925e-cfdbbd262de1 -2026-01-09 15:45:53 info: Save broadcaster transport executed successfully -2026-01-09 15:45:53 info: Connect broadcaster transport lister started -2026-01-09 15:45:53 info: Get room started -2026-01-09 15:45:53 info: Get room executed successfully -2026-01-09 15:45:53 info: Connect broadcaster transport executed successfully -2026-01-09 15:45:53 info: Producer listener started -2026-01-09 15:45:53 info: Get room started -2026-01-09 15:45:53 info: Get room executed successfully -2026-01-09 15:45:53 info: Producer listener executed successfully: -2026-01-09 15:45:53 info: Producer listener started -2026-01-09 15:45:53 info: Get room started -2026-01-09 15:45:53 info: Get room executed successfully -2026-01-09 15:45:53 info: Producer listener executed successfully: -2026-01-09 15:45:58 info: Client connected: WjPQ6GL2MieqsgtkAAAD -2026-01-09 15:45:58 info: User disconnected WjPQ6GL2MieqsgtkAAAD beacuse of transport close -2026-01-09 15:45:58 info: Client connected: ol-J7ogTS_ZcozbDAAAF -2026-01-09 15:45:59 info: Join as viewer listner started -2026-01-09 15:45:59 info: Join as viewer started -2026-01-09 15:45:59 info: Get room started -2026-01-09 15:45:59 info: Get room executed successfully -2026-01-09 15:45:59 info: Join as viewer completed successfully -2026-01-09 15:45:59 info: Get room started -2026-01-09 15:45:59 info: Get room executed successfully -2026-01-09 15:45:59 info: Join viewer listner successfully executed -2026-01-09 15:45:59 info: Create viewer transport listner started -2026-01-09 15:45:59 info: Get room started -2026-01-09 15:45:59 info: Get room executed successfully -2026-01-09 15:45:59 info: Create viewer transport started -2026-01-09 15:45:59 info: Get room started -2026-01-09 15:45:59 info: Get room executed successfully -2026-01-09 15:45:59 info: Creation of webRtc server started -2026-01-09 15:45:59 info: WebRTC Server created successfully -2026-01-09 15:45:59 info: Creation of webRTC transport started -2026-01-09 15:45:59 info: WebRTC Transport created : fb5fb06c-ac03-4946-9a95-786e2750545d -2026-01-09 15:45:59 info: Create viewer transport successfully executed -2026-01-09 15:45:59 info: Create viewer transport listner successfully executed -2026-01-09 15:45:59 info: Consume lister started -2026-01-09 15:45:59 info: Consume media started -2026-01-09 15:45:59 info: Get room started -2026-01-09 15:45:59 info: Get room executed successfully -2026-01-09 15:45:59 info: Viewer media consume successfully executed -2026-01-09 15:45:59 info: Consume lister executed successfully -2026-01-09 15:47:23 info: Client connected: eXd5TN5AjTIxObuKAAAB -2026-01-09 15:47:24 info: Client connected: vu9Hyp7nPtjnyMhqAAAD -2026-01-09 15:47:40 info: Client connected: prRwXW-cBU01dn-aAAAB -2026-01-09 15:47:41 info: Client connected: IEVG6KtTyORtLkeaAAAD -2026-01-09 15:47:43 info: Create room listner started -2026-01-09 15:47:43 info: Create room started -2026-01-09 15:47:43 info: Creating worker started -2026-01-09 15:47:43 info: Creation of worker successfully executed -2026-01-09 15:47:43 info: Creation of router started -2026-01-09 15:47:43 info: Router created for room: 49297e88-9aa5-4c77-9c6f-8b6bcd657fc3 -2026-01-09 15:47:43 info: Creation of webRtc server started -2026-01-09 15:47:43 info: WebRTC Server created successfully -2026-01-09 15:47:43 info: Creation of room successfully executed -2026-01-09 15:47:43 info: Add broadcaster started -2026-01-09 15:47:43 info: Get room started -2026-01-09 15:47:43 info: Get room executed successfully -2026-01-09 15:47:43 info: Added broadcaster into memory room -2026-01-09 15:47:43 info: Get room started -2026-01-09 15:47:43 info: Get room executed successfully -2026-01-09 15:47:43 info: Broadcaster created successfully -2026-01-09 15:47:43 info: Create room listner exceuted successfully -2026-01-09 15:47:44 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 15:47:44 info: Get room started -2026-01-09 15:47:44 info: Get room executed successfully -2026-01-09 15:47:44 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 15:47:44 info: Create broadcaster lister started -2026-01-09 15:47:44 info: Get room started -2026-01-09 15:47:44 info: Get room executed successfully -2026-01-09 15:47:44 info: Creation of webRTC transport started -2026-01-09 15:47:44 info: WebRTC Transport created : cd044c77-8e8e-4102-a719-6438d8fe6eda -2026-01-09 15:47:44 info: Save broadcaster transport executed successfully -2026-01-09 15:47:44 info: Connect broadcaster transport lister started -2026-01-09 15:47:44 info: Get room started -2026-01-09 15:47:44 info: Get room executed successfully -2026-01-09 15:47:44 info: Connect broadcaster transport executed successfully -2026-01-09 15:47:44 info: Producer listener started -2026-01-09 15:47:44 info: Get room started -2026-01-09 15:47:44 info: Get room executed successfully -2026-01-09 15:47:44 info: Producer listener executed successfully: -2026-01-09 15:47:44 info: Producer listener started -2026-01-09 15:47:44 info: Get room started -2026-01-09 15:47:44 info: Get room executed successfully -2026-01-09 15:47:44 info: Producer listener executed successfully: -2026-01-09 15:47:48 info: Join as viewer listner started -2026-01-09 15:47:48 info: Join as viewer started -2026-01-09 15:47:48 info: Get room started -2026-01-09 15:47:48 info: Get room executed successfully -2026-01-09 15:47:48 info: Join as viewer completed successfully -2026-01-09 15:47:48 info: Get room started -2026-01-09 15:47:48 info: Get room executed successfully -2026-01-09 15:47:48 info: Join viewer listner successfully executed -2026-01-09 15:47:48 info: Create viewer transport listner started -2026-01-09 15:47:48 info: Get room started -2026-01-09 15:47:48 info: Get room executed successfully -2026-01-09 15:47:48 info: Create viewer transport started -2026-01-09 15:47:48 info: Get room started -2026-01-09 15:47:48 info: Get room executed successfully -2026-01-09 15:47:48 info: Creation of webRtc server started -2026-01-09 15:47:48 info: WebRTC Server created successfully -2026-01-09 15:47:48 info: Creation of webRTC transport started -2026-01-09 15:47:48 info: WebRTC Transport created : ce75e1a0-7360-47dc-9c02-b96f66fe6518 -2026-01-09 15:47:48 info: Create viewer transport successfully executed -2026-01-09 15:47:48 info: Create viewer transport listner successfully executed -2026-01-09 15:47:48 info: Consume lister started -2026-01-09 15:47:48 info: Consume media started -2026-01-09 15:47:48 info: Get room started -2026-01-09 15:47:48 info: Get room executed successfully -2026-01-09 15:47:48 info: Viewer media consume successfully executed -2026-01-09 15:47:48 info: Consume lister executed successfully -2026-01-09 15:48:58 info: Client connected: Pm6BPtVQuJtWv5WBAAAB -2026-01-09 15:48:58 info: Client connected: R9Y8Z8sZey2Qom9JAAAD -2026-01-09 15:49:03 info: Client connected: -xReC1ltYsdhyvRYAAAB -2026-01-09 15:49:04 info: Client connected: k_Rx19Y50h49TQhvAAAD -2026-01-09 15:49:05 info: User disconnected -xReC1ltYsdhyvRYAAAB beacuse of transport close -2026-01-09 15:49:05 info: Client connected: R49iXpqCM1vjbJ5mAAAF -2026-01-09 15:49:05 info: User disconnected k_Rx19Y50h49TQhvAAAD beacuse of transport close -2026-01-09 15:49:05 info: Client connected: uTyP53rmsTJ5lEG9AAAH -2026-01-09 16:07:36 info: User disconnected uTyP53rmsTJ5lEG9AAAH beacuse of transport close -2026-01-09 16:07:36 info: User disconnected R49iXpqCM1vjbJ5mAAAF beacuse of transport close -2026-01-09 16:18:46 info: Client connected: -04DEKFO9HqemVJGAAAK -2026-01-09 16:18:46 info: Client connected: l24Gv0jMGH5QeZ0aAAAL -2026-01-09 16:19:31 info: Client connected: ddFLbGlZAiQrfyBZAAAC -2026-01-09 16:19:31 info: Client connected: GDRUOnNTZ_gcWuc4AAAD -2026-01-09 16:20:41 info: Client connected: sh5zu9hXPy0Vmm05AAAB -2026-01-09 16:20:50 info: Client connected: KOBBG_XLG5CzdPRhAAAB -2026-01-09 16:20:50 info: User disconnected KOBBG_XLG5CzdPRhAAAB beacuse of transport error -2026-01-09 16:20:50 info: Client connected: emQP7NC5CisqTPhRAAAD -2026-01-09 16:20:52 info: Client connected: tf44kpuwhgqfz77KAAAF -2026-01-09 16:20:53 info: Create room listner started -2026-01-09 16:20:53 info: Create room started -2026-01-09 16:20:53 info: Creating worker started -2026-01-09 16:20:53 info: Creation of worker successfully executed -2026-01-09 16:20:53 info: Creation of router started -2026-01-09 16:20:53 info: Router created for room: 5a2cce9a-9140-4d1d-b281-df1d73d6e6eb -2026-01-09 16:20:53 info: Creation of webRtc server started -2026-01-09 16:20:53 info: WebRTC Server created successfully -2026-01-09 16:20:53 info: Creation of room successfully executed -2026-01-09 16:20:53 info: Add broadcaster started -2026-01-09 16:20:53 info: Get room started -2026-01-09 16:20:53 info: Get room executed successfully -2026-01-09 16:20:53 info: Added broadcaster into memory room -2026-01-09 16:20:53 info: Get room started -2026-01-09 16:20:53 info: Get room executed successfully -2026-01-09 16:20:53 info: Broadcaster created successfully -2026-01-09 16:20:53 info: Create room listner exceuted successfully -2026-01-09 16:20:54 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 16:20:54 info: Get room started -2026-01-09 16:20:54 info: Get room executed successfully -2026-01-09 16:20:54 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 16:20:54 info: Create broadcaster lister started -2026-01-09 16:20:54 info: Get room started -2026-01-09 16:20:54 info: Get room executed successfully -2026-01-09 16:20:54 info: Creation of webRTC transport started -2026-01-09 16:20:54 info: WebRTC Transport created : 4addbf91-b115-4aa0-ba15-965558158df9 -2026-01-09 16:20:54 info: Save broadcaster transport executed successfully -2026-01-09 16:20:54 info: Connect broadcaster transport lister started -2026-01-09 16:20:54 info: Get room started -2026-01-09 16:20:54 info: Get room executed successfully -2026-01-09 16:20:54 info: Connect broadcaster transport executed successfully -2026-01-09 16:20:54 info: Producer listener started -2026-01-09 16:20:54 info: Get room started -2026-01-09 16:20:54 info: Get room executed successfully -2026-01-09 16:20:54 info: Producer listener executed successfully: -2026-01-09 16:20:54 info: Producer listener started -2026-01-09 16:20:54 info: Get room started -2026-01-09 16:20:54 info: Get room executed successfully -2026-01-09 16:20:54 info: Producer listener executed successfully: -2026-01-09 16:20:57 info: Join as viewer listner started -2026-01-09 16:20:57 info: Join as viewer started -2026-01-09 16:20:57 info: Get room started -2026-01-09 16:20:57 info: Get room executed successfully -2026-01-09 16:20:57 info: Join as viewer completed successfully -2026-01-09 16:20:57 info: Get room started -2026-01-09 16:20:57 info: Get room executed successfully -2026-01-09 16:20:57 info: Join viewer listner successfully executed -2026-01-09 16:20:57 info: Create viewer transport listner started -2026-01-09 16:20:57 info: Get room started -2026-01-09 16:20:57 info: Get room executed successfully -2026-01-09 16:20:57 info: Create viewer transport started -2026-01-09 16:20:57 info: Get room started -2026-01-09 16:20:57 info: Get room executed successfully -2026-01-09 16:20:57 info: Creation of webRtc server started -2026-01-09 16:20:57 info: WebRTC Server created successfully -2026-01-09 16:20:57 info: Creation of webRTC transport started -2026-01-09 16:20:57 info: WebRTC Transport created : 74c2865a-5f5c-4b25-87e7-b0dc04289e11 -2026-01-09 16:20:57 info: Create viewer transport successfully executed -2026-01-09 16:20:57 info: Create viewer transport listner successfully executed -2026-01-09 16:20:57 info: Consume lister started -2026-01-09 16:20:57 info: Consume media started -2026-01-09 16:20:57 info: Get room started -2026-01-09 16:20:57 info: Get room executed successfully -2026-01-09 16:20:57 info: Viewer media consume successfully executed -2026-01-09 16:20:57 info: Consume lister executed successfully -2026-01-09 16:21:52 info: Client connected: RU3wizuOqWV_TPu8AAAB -2026-01-09 16:21:56 info: Client connected: 9Xo0A4ey06D8eQN_AAAD -2026-01-09 16:21:57 info: Create room listner started -2026-01-09 16:21:57 info: Create room started -2026-01-09 16:21:57 info: Creating worker started -2026-01-09 16:21:57 info: Creation of worker successfully executed -2026-01-09 16:21:57 info: Creation of router started -2026-01-09 16:21:57 info: Router created for room: ec1b8fbb-7985-4ff2-aad8-bdd744ef81be -2026-01-09 16:21:57 info: Creation of webRtc server started -2026-01-09 16:21:57 info: WebRTC Server created successfully -2026-01-09 16:21:57 info: Creation of room successfully executed -2026-01-09 16:21:57 info: Add broadcaster started -2026-01-09 16:21:57 info: Get room started -2026-01-09 16:21:57 info: Get room executed successfully -2026-01-09 16:21:57 info: Added broadcaster into memory room -2026-01-09 16:21:57 info: Get room started -2026-01-09 16:21:57 info: Get room executed successfully -2026-01-09 16:21:57 info: Broadcaster created successfully -2026-01-09 16:21:57 info: Create room listner exceuted successfully -2026-01-09 16:21:58 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 16:21:58 info: Get room started -2026-01-09 16:21:58 info: Get room executed successfully -2026-01-09 16:21:58 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 16:21:58 info: Create broadcaster lister started -2026-01-09 16:21:58 info: Get room started -2026-01-09 16:21:58 info: Get room executed successfully -2026-01-09 16:21:58 info: Creation of webRTC transport started -2026-01-09 16:21:58 info: WebRTC Transport created : 5a03485a-689f-4471-a461-8785342f2a4e -2026-01-09 16:21:58 info: Save broadcaster transport executed successfully -2026-01-09 16:21:58 info: Connect broadcaster transport lister started -2026-01-09 16:21:58 info: Get room started -2026-01-09 16:21:58 info: Get room executed successfully -2026-01-09 16:21:58 info: Connect broadcaster transport executed successfully -2026-01-09 16:21:58 info: Producer listener started -2026-01-09 16:21:58 info: Get room started -2026-01-09 16:21:58 info: Get room executed successfully -2026-01-09 16:21:58 info: Producer listener executed successfully: -2026-01-09 16:21:58 info: Producer listener started -2026-01-09 16:21:58 info: Get room started -2026-01-09 16:21:58 info: Get room executed successfully -2026-01-09 16:21:58 info: Producer listener executed successfully: -2026-01-09 16:22:03 info: Join as viewer listner started -2026-01-09 16:22:03 info: Join as viewer started -2026-01-09 16:22:03 info: Get room started -2026-01-09 16:22:03 info: Get room executed successfully -2026-01-09 16:22:03 info: Join as viewer completed successfully -2026-01-09 16:22:03 info: Get room started -2026-01-09 16:22:03 info: Get room executed successfully -2026-01-09 16:22:03 info: Join viewer listner successfully executed -2026-01-09 16:22:03 info: Create viewer transport listner started -2026-01-09 16:22:03 info: Get room started -2026-01-09 16:22:03 info: Get room executed successfully -2026-01-09 16:22:03 info: Create viewer transport started -2026-01-09 16:22:03 info: Get room started -2026-01-09 16:22:03 info: Get room executed successfully -2026-01-09 16:22:03 info: Creation of webRtc server started -2026-01-09 16:22:03 info: WebRTC Server created successfully -2026-01-09 16:22:03 info: Creation of webRTC transport started -2026-01-09 16:22:03 info: WebRTC Transport created : 5aaefe23-c49e-4685-8151-fcb513a7a375 -2026-01-09 16:22:03 info: Create viewer transport successfully executed -2026-01-09 16:22:03 info: Create viewer transport listner successfully executed -2026-01-09 16:22:03 info: Consume lister started -2026-01-09 16:22:03 info: Consume media started -2026-01-09 16:22:03 info: Get room started -2026-01-09 16:22:03 info: Get room executed successfully -2026-01-09 16:22:03 info: Viewer media consume successfully executed -2026-01-09 16:22:03 info: Consume lister executed successfully -2026-01-09 16:22:45 info: Client connected: 9rVlJUNG-3N9RQObAAAB -2026-01-09 16:22:47 info: Client connected: DM2vfZvDJpQ4kYRdAAAD -2026-01-09 16:22:50 info: Create room listner started -2026-01-09 16:22:50 info: Create room started -2026-01-09 16:22:50 info: Creating worker started -2026-01-09 16:22:50 info: Creation of worker successfully executed -2026-01-09 16:22:50 info: Creation of router started -2026-01-09 16:22:50 info: Router created for room: 586ba929-a8cb-43a2-be2b-dd274a9891f6 -2026-01-09 16:22:50 info: Creation of webRtc server started -2026-01-09 16:22:50 info: WebRTC Server created successfully -2026-01-09 16:22:50 info: Creation of room successfully executed -2026-01-09 16:22:50 info: Add broadcaster started -2026-01-09 16:22:50 info: Get room started -2026-01-09 16:22:50 info: Get room executed successfully -2026-01-09 16:22:50 info: Added broadcaster into memory room -2026-01-09 16:22:50 info: Get room started -2026-01-09 16:22:50 info: Get room executed successfully -2026-01-09 16:22:50 info: Broadcaster created successfully -2026-01-09 16:22:50 info: Create room listner exceuted successfully -2026-01-09 16:22:50 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 16:22:50 info: Get room started -2026-01-09 16:22:50 info: Get room executed successfully -2026-01-09 16:22:50 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 16:22:50 info: Create broadcaster lister started -2026-01-09 16:22:50 info: Get room started -2026-01-09 16:22:50 info: Get room executed successfully -2026-01-09 16:22:50 info: Creation of webRTC transport started -2026-01-09 16:22:50 info: WebRTC Transport created : a2491fe1-fdb7-4465-80af-cc624c3a0c10 -2026-01-09 16:22:50 info: Save broadcaster transport executed successfully -2026-01-09 16:22:50 info: Connect broadcaster transport lister started -2026-01-09 16:22:50 info: Get room started -2026-01-09 16:22:50 info: Get room executed successfully -2026-01-09 16:22:50 info: Connect broadcaster transport executed successfully -2026-01-09 16:22:50 info: Producer listener started -2026-01-09 16:22:50 info: Get room started -2026-01-09 16:22:50 info: Get room executed successfully -2026-01-09 16:22:50 info: Producer listener executed successfully: -2026-01-09 16:22:50 info: Producer listener started -2026-01-09 16:22:50 info: Get room started -2026-01-09 16:22:50 info: Get room executed successfully -2026-01-09 16:22:50 info: Producer listener executed successfully: -2026-01-09 16:22:54 info: Join as viewer listner started -2026-01-09 16:22:54 info: Join as viewer started -2026-01-09 16:22:54 info: Get room started -2026-01-09 16:22:54 info: Get room executed successfully -2026-01-09 16:22:54 info: Join as viewer completed successfully -2026-01-09 16:22:54 info: Get room started -2026-01-09 16:22:54 info: Get room executed successfully -2026-01-09 16:22:54 info: Join viewer listner successfully executed -2026-01-09 16:22:54 info: Create viewer transport listner started -2026-01-09 16:22:54 info: Get room started -2026-01-09 16:22:54 info: Get room executed successfully -2026-01-09 16:22:54 info: Create viewer transport started -2026-01-09 16:22:54 info: Get room started -2026-01-09 16:22:54 info: Get room executed successfully -2026-01-09 16:22:54 info: Creation of webRtc server started -2026-01-09 16:22:54 info: WebRTC Server created successfully -2026-01-09 16:22:54 info: Creation of webRTC transport started -2026-01-09 16:22:54 info: WebRTC Transport created : 79155dd2-515f-4498-be4f-b7e35e027462 -2026-01-09 16:22:54 info: Create viewer transport successfully executed -2026-01-09 16:22:54 info: Create viewer transport listner successfully executed -2026-01-09 16:22:54 info: Consume lister started -2026-01-09 16:22:54 info: Consume media started -2026-01-09 16:22:54 info: Get room started -2026-01-09 16:22:54 info: Get room executed successfully -2026-01-09 16:22:54 info: Viewer media consume successfully executed -2026-01-09 16:22:54 info: Consume lister executed successfully -2026-01-09 16:23:14 info: Client connected: 8fNvtH5h67UGwjsxAAAB -2026-01-09 16:23:14 info: Client connected: YjcCSllz8Zl3BdpTAAAD -2026-01-09 16:23:26 info: Client connected: lyUTTM-c9OVLdbC7AAAB -2026-01-09 16:23:27 info: Client connected: 8xQ6iG0r-uB90WXKAAAD -2026-01-09 16:23:27 info: Client connected: uX4TyEhcHjmtZJP0AAAF -2026-01-09 16:23:27 info: User disconnected lyUTTM-c9OVLdbC7AAAB beacuse of transport close -2026-01-09 16:23:27 info: Client connected: Vr6w7LjxUe2b8CXPAAAH -2026-01-09 16:23:28 info: Create room listner started -2026-01-09 16:23:28 info: Create room started -2026-01-09 16:23:28 info: Creating worker started -2026-01-09 16:23:28 info: Creation of worker successfully executed -2026-01-09 16:23:28 info: Creation of router started -2026-01-09 16:23:28 info: Router created for room: 863a1e9e-cd29-4b88-afd3-365e9d1bdfc2 -2026-01-09 16:23:28 info: Creation of webRtc server started -2026-01-09 16:23:28 info: WebRTC Server created successfully -2026-01-09 16:23:28 info: Creation of room successfully executed -2026-01-09 16:23:28 info: Add broadcaster started -2026-01-09 16:23:28 info: Get room started -2026-01-09 16:23:28 info: Get room executed successfully -2026-01-09 16:23:28 info: Added broadcaster into memory room -2026-01-09 16:23:28 info: Get room started -2026-01-09 16:23:28 info: Get room executed successfully -2026-01-09 16:23:28 info: Broadcaster created successfully -2026-01-09 16:23:28 info: Create room listner exceuted successfully -2026-01-09 16:23:28 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 16:23:28 info: Get room started -2026-01-09 16:23:28 info: Get room executed successfully -2026-01-09 16:23:28 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 16:23:28 info: Create broadcaster lister started -2026-01-09 16:23:28 info: Get room started -2026-01-09 16:23:28 info: Get room executed successfully -2026-01-09 16:23:28 info: Creation of webRTC transport started -2026-01-09 16:23:28 info: WebRTC Transport created : 412715b1-dad2-42cf-8b2f-76c5c9d4e960 -2026-01-09 16:23:28 info: Save broadcaster transport executed successfully -2026-01-09 16:23:28 info: Connect broadcaster transport lister started -2026-01-09 16:23:28 info: Get room started -2026-01-09 16:23:28 info: Get room executed successfully -2026-01-09 16:23:28 info: Connect broadcaster transport executed successfully -2026-01-09 16:23:28 info: Producer listener started -2026-01-09 16:23:28 info: Get room started -2026-01-09 16:23:28 info: Get room executed successfully -2026-01-09 16:23:28 info: Producer listener executed successfully: -2026-01-09 16:23:28 info: Producer listener started -2026-01-09 16:23:28 info: Get room started -2026-01-09 16:23:28 info: Get room executed successfully -2026-01-09 16:23:28 info: Producer listener executed successfully: -2026-01-09 16:23:33 info: Join as viewer listner started -2026-01-09 16:23:33 info: Join as viewer started -2026-01-09 16:23:33 info: Get room started -2026-01-09 16:23:33 info: Get room executed successfully -2026-01-09 16:23:33 info: Join as viewer completed successfully -2026-01-09 16:23:33 info: Get room started -2026-01-09 16:23:33 info: Get room executed successfully -2026-01-09 16:23:33 info: Join viewer listner successfully executed -2026-01-09 16:23:33 info: Create viewer transport listner started -2026-01-09 16:23:33 info: Get room started -2026-01-09 16:23:33 info: Get room executed successfully -2026-01-09 16:23:33 info: Create viewer transport started -2026-01-09 16:23:33 info: Get room started -2026-01-09 16:23:33 info: Get room executed successfully -2026-01-09 16:23:33 info: Creation of webRtc server started -2026-01-09 16:23:33 info: WebRTC Server created successfully -2026-01-09 16:23:33 info: Creation of webRTC transport started -2026-01-09 16:23:33 info: WebRTC Transport created : 81966338-bf00-4e2b-9b26-b6446de6946d -2026-01-09 16:23:33 info: Create viewer transport successfully executed -2026-01-09 16:23:33 info: Create viewer transport listner successfully executed -2026-01-09 16:23:33 info: Consume lister started -2026-01-09 16:23:33 info: Consume media started -2026-01-09 16:23:33 info: Get room started -2026-01-09 16:23:33 info: Get room executed successfully -2026-01-09 16:23:33 info: Viewer media consume successfully executed -2026-01-09 16:23:33 info: Consume lister executed successfully -2026-01-09 16:23:49 info: Client connected: mNZw528YboI1v4SPAAAB -2026-01-09 16:23:49 info: Client connected: XyYZPaSNPMe45XwIAAAD -2026-01-09 16:24:03 info: Client connected: 78UcZkC4MyOEXc01AAAB -2026-01-09 16:24:07 info: Client connected: 08cxyn752O-e8P-LAAAD -2026-01-09 16:24:09 info: User disconnected 08cxyn752O-e8P-LAAAD beacuse of transport close -2026-01-09 16:24:09 info: Client connected: S-0HUR6cLqsyR7tyAAAF -2026-01-09 16:24:09 info: User disconnected 78UcZkC4MyOEXc01AAAB beacuse of transport close -2026-01-09 16:24:09 info: Client connected: ADvD954Rp6bWstDYAAAH -2026-01-09 16:24:10 info: Create room listner started -2026-01-09 16:24:10 info: Create room started -2026-01-09 16:24:10 info: Creating worker started -2026-01-09 16:24:10 info: Creation of worker successfully executed -2026-01-09 16:24:10 info: Creation of router started -2026-01-09 16:24:10 info: Router created for room: e845b97c-ef0f-4bef-97f7-2b2eb955cfd6 -2026-01-09 16:24:10 info: Creation of webRtc server started -2026-01-09 16:24:10 info: WebRTC Server created successfully -2026-01-09 16:24:10 info: Creation of room successfully executed -2026-01-09 16:24:10 info: Add broadcaster started -2026-01-09 16:24:10 info: Get room started -2026-01-09 16:24:10 info: Get room executed successfully -2026-01-09 16:24:10 info: Added broadcaster into memory room -2026-01-09 16:24:10 info: Get room started -2026-01-09 16:24:10 info: Get room executed successfully -2026-01-09 16:24:10 info: Broadcaster created successfully -2026-01-09 16:24:10 info: Create room listner exceuted successfully -2026-01-09 16:24:10 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 16:24:10 info: Get room started -2026-01-09 16:24:10 info: Get room executed successfully -2026-01-09 16:24:10 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 16:24:11 info: Create broadcaster lister started -2026-01-09 16:24:11 info: Get room started -2026-01-09 16:24:11 info: Get room executed successfully -2026-01-09 16:24:11 info: Creation of webRTC transport started -2026-01-09 16:24:11 info: WebRTC Transport created : 8ee5ca9b-eadc-477c-b54f-bb0d3172f746 -2026-01-09 16:24:11 info: Save broadcaster transport executed successfully -2026-01-09 16:24:11 info: Connect broadcaster transport lister started -2026-01-09 16:24:11 info: Get room started -2026-01-09 16:24:11 info: Get room executed successfully -2026-01-09 16:24:11 info: Connect broadcaster transport executed successfully -2026-01-09 16:24:11 info: Producer listener started -2026-01-09 16:24:11 info: Get room started -2026-01-09 16:24:11 info: Get room executed successfully -2026-01-09 16:24:11 info: Producer listener executed successfully: -2026-01-09 16:24:11 info: Producer listener started -2026-01-09 16:24:11 info: Get room started -2026-01-09 16:24:11 info: Get room executed successfully -2026-01-09 16:24:11 info: Producer listener executed successfully: -2026-01-09 16:24:13 info: Join as viewer listner started -2026-01-09 16:24:13 info: Join as viewer started -2026-01-09 16:24:13 info: Get room started -2026-01-09 16:24:13 info: Get room executed successfully -2026-01-09 16:24:13 info: Join as viewer completed successfully -2026-01-09 16:24:13 info: Get room started -2026-01-09 16:24:13 info: Get room executed successfully -2026-01-09 16:24:13 info: Join viewer listner successfully executed -2026-01-09 16:24:13 info: Create viewer transport listner started -2026-01-09 16:24:13 info: Get room started -2026-01-09 16:24:13 info: Get room executed successfully -2026-01-09 16:24:13 info: Create viewer transport started -2026-01-09 16:24:13 info: Get room started -2026-01-09 16:24:13 info: Get room executed successfully -2026-01-09 16:24:13 info: Creation of webRtc server started -2026-01-09 16:24:13 info: WebRTC Server created successfully -2026-01-09 16:24:13 info: Creation of webRTC transport started -2026-01-09 16:24:13 info: WebRTC Transport created : e23ac6ae-9a02-46ec-bef1-323b82dacb4a -2026-01-09 16:24:13 info: Create viewer transport successfully executed -2026-01-09 16:24:13 info: Create viewer transport listner successfully executed -2026-01-09 16:24:13 info: Consume lister started -2026-01-09 16:24:13 info: Consume media started -2026-01-09 16:24:13 info: Get room started -2026-01-09 16:24:13 info: Get room executed successfully -2026-01-09 16:24:13 info: Viewer media consume successfully executed -2026-01-09 16:24:13 info: Consume lister executed successfully -2026-01-09 16:24:55 info: User disconnected ADvD954Rp6bWstDYAAAH beacuse of transport close -2026-01-09 16:24:55 info: Client connected: CItxvFhX5AiK7IBVAAAJ -2026-01-09 16:24:56 info: User disconnected S-0HUR6cLqsyR7tyAAAF beacuse of transport close -2026-01-09 16:24:56 info: Client connected: rAhcwObjt1kK4FZBAAAL -2026-01-09 16:30:41 info: Client connected: 0AmpY87vCR7ZSjGYAAAB -2026-01-09 16:30:41 info: Client connected: jl0shjo41gEBxlASAAAD -2026-01-09 16:30:42 info: User disconnected jl0shjo41gEBxlASAAAD beacuse of transport close -2026-01-09 16:30:42 info: Client connected: 0czqzy5BzM-0_bYGAAAF -2026-01-09 16:30:44 info: Create room listner started -2026-01-09 16:30:44 info: Create room started -2026-01-09 16:30:44 info: Creating worker started -2026-01-09 16:30:44 info: Creation of worker successfully executed -2026-01-09 16:30:44 info: Creation of router started -2026-01-09 16:30:44 info: Router created for room: 513e4131-98fc-41e6-84f6-9b997e7e8216 -2026-01-09 16:30:44 info: Creation of webRtc server started -2026-01-09 16:30:44 info: WebRTC Server created successfully -2026-01-09 16:30:44 info: Creation of room successfully executed -2026-01-09 16:30:44 info: Add broadcaster started -2026-01-09 16:30:44 info: Get room started -2026-01-09 16:30:44 info: Get room executed successfully -2026-01-09 16:30:44 info: Added broadcaster into memory room -2026-01-09 16:30:44 info: Get room started -2026-01-09 16:30:44 info: Get room executed successfully -2026-01-09 16:30:44 info: Broadcaster created successfully -2026-01-09 16:30:44 info: Create room listner exceuted successfully -2026-01-09 16:30:44 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 16:30:44 info: Get room started -2026-01-09 16:30:44 info: Get room executed successfully -2026-01-09 16:30:44 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 16:30:44 info: Create broadcaster lister started -2026-01-09 16:30:44 info: Get room started -2026-01-09 16:30:44 info: Get room executed successfully -2026-01-09 16:30:44 info: Creation of webRTC transport started -2026-01-09 16:30:44 info: WebRTC Transport created : 53c4aa3c-43d0-4ab7-94dd-eeb5c06f0ea2 -2026-01-09 16:30:44 info: Save broadcaster transport executed successfully -2026-01-09 16:30:44 info: Connect broadcaster transport lister started -2026-01-09 16:30:44 info: Get room started -2026-01-09 16:30:44 info: Get room executed successfully -2026-01-09 16:30:44 info: Connect broadcaster transport executed successfully -2026-01-09 16:30:44 info: Producer listener started -2026-01-09 16:30:44 info: Get room started -2026-01-09 16:30:44 info: Get room executed successfully -2026-01-09 16:30:44 info: Producer listener executed successfully: -2026-01-09 16:30:44 info: Producer listener started -2026-01-09 16:30:44 info: Get room started -2026-01-09 16:30:44 info: Get room executed successfully -2026-01-09 16:30:44 info: Producer listener executed successfully: -2026-01-09 16:30:47 info: Join as viewer listner started -2026-01-09 16:30:47 info: Join as viewer started -2026-01-09 16:30:47 info: Get room started -2026-01-09 16:30:47 info: Get room executed successfully -2026-01-09 16:30:47 info: Join as viewer completed successfully -2026-01-09 16:30:47 info: Get room started -2026-01-09 16:30:47 info: Get room executed successfully -2026-01-09 16:30:47 info: Join viewer listner successfully executed -2026-01-09 16:30:47 info: Create viewer transport listner started -2026-01-09 16:30:47 info: Get room started -2026-01-09 16:30:47 info: Get room executed successfully -2026-01-09 16:30:47 info: Create viewer transport started -2026-01-09 16:30:47 info: Get room started -2026-01-09 16:30:47 info: Get room executed successfully -2026-01-09 16:30:47 info: Creation of webRtc server started -2026-01-09 16:30:47 info: WebRTC Server created successfully -2026-01-09 16:30:47 info: Creation of webRTC transport started -2026-01-09 16:30:47 info: WebRTC Transport created : d235e1a2-5617-42f5-afc9-c21124afd43f -2026-01-09 16:30:47 info: Create viewer transport successfully executed -2026-01-09 16:30:47 info: Create viewer transport listner successfully executed -2026-01-09 16:30:47 info: Consume lister started -2026-01-09 16:30:47 info: Consume media started -2026-01-09 16:30:47 info: Get room started -2026-01-09 16:30:47 info: Get room executed successfully -2026-01-09 16:30:47 info: Viewer media consume successfully executed -2026-01-09 16:30:47 info: Consume lister executed successfully -2026-01-09 16:31:38 info: User disconnected 0czqzy5BzM-0_bYGAAAF beacuse of transport close -2026-01-09 16:31:38 info: Client connected: DbU71DTRLoPGWRlcAAAH -2026-01-09 16:31:40 info: Join as viewer listner started -2026-01-09 16:31:40 info: Join as viewer started -2026-01-09 16:31:40 info: Get room started -2026-01-09 16:31:40 info: Get room executed successfully -2026-01-09 16:31:40 info: Join as viewer completed successfully -2026-01-09 16:31:40 info: Get room started -2026-01-09 16:31:40 info: Get room executed successfully -2026-01-09 16:31:40 info: Join viewer listner successfully executed -2026-01-09 16:31:40 info: Create viewer transport listner started -2026-01-09 16:31:40 info: Get room started -2026-01-09 16:31:40 info: Get room executed successfully -2026-01-09 16:31:40 info: Create viewer transport started -2026-01-09 16:31:40 info: Get room started -2026-01-09 16:31:40 info: Get room executed successfully -2026-01-09 16:31:40 info: Creation of webRtc server started -2026-01-09 16:31:40 info: WebRTC Server created successfully -2026-01-09 16:31:40 info: Creation of webRTC transport started -2026-01-09 16:31:40 info: WebRTC Transport created : 3b2034ed-70eb-4083-b7b0-58e79ab9fd5a -2026-01-09 16:31:40 info: Create viewer transport successfully executed -2026-01-09 16:31:40 info: Create viewer transport listner successfully executed -2026-01-09 16:31:40 info: Consume lister started -2026-01-09 16:31:40 info: Consume media started -2026-01-09 16:31:40 info: Get room started -2026-01-09 16:31:40 info: Get room executed successfully -2026-01-09 16:31:40 info: Viewer media consume successfully executed -2026-01-09 16:31:40 info: Consume lister executed successfully -2026-01-09 16:34:48 info: Client connected: o4zIyxqDqDKIXg7BAAAB -2026-01-09 16:34:48 info: Client connected: XMi_8a7KJVRvXLKEAAAD -2026-01-09 16:35:02 info: Client connected: rAoB_-vr3j5q45RiAAAB -2026-01-09 16:35:04 info: Client connected: o7gTGDd3f49iSJiFAAAD -2026-01-09 16:35:05 info: Create room listner started -2026-01-09 16:35:05 info: Create room started -2026-01-09 16:35:05 info: Creating worker started -2026-01-09 16:35:05 info: Creation of worker successfully executed -2026-01-09 16:35:05 info: Creation of router started -2026-01-09 16:35:05 info: Router created for room: 82c682d1-e44f-4216-bbcd-c65992b1ed69 -2026-01-09 16:35:05 info: Creation of webRtc server started -2026-01-09 16:35:05 info: WebRTC Server created successfully -2026-01-09 16:35:05 info: Creation of room successfully executed -2026-01-09 16:35:05 info: Add broadcaster started -2026-01-09 16:35:05 info: Get room started -2026-01-09 16:35:05 info: Get room executed successfully -2026-01-09 16:35:05 info: Added broadcaster into memory room -2026-01-09 16:35:05 info: Get room started -2026-01-09 16:35:05 info: Get room executed successfully -2026-01-09 16:35:05 info: Broadcaster created successfully -2026-01-09 16:35:05 info: Create room listner exceuted successfully -2026-01-09 16:35:06 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 16:35:06 info: Get room started -2026-01-09 16:35:06 info: Get room executed successfully -2026-01-09 16:35:06 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 16:35:06 info: Create broadcaster lister started -2026-01-09 16:35:06 info: Get room started -2026-01-09 16:35:06 info: Get room executed successfully -2026-01-09 16:35:06 info: Creation of webRTC transport started -2026-01-09 16:35:06 info: WebRTC Transport created : a6d75648-8047-4fc1-93f7-0250e8097519 -2026-01-09 16:35:06 info: Save broadcaster transport executed successfully -2026-01-09 16:35:06 info: Connect broadcaster transport lister started -2026-01-09 16:35:06 info: Get room started -2026-01-09 16:35:06 info: Get room executed successfully -2026-01-09 16:35:06 info: Connect broadcaster transport executed successfully -2026-01-09 16:35:06 info: Producer listener started -2026-01-09 16:35:06 info: Get room started -2026-01-09 16:35:06 info: Get room executed successfully -2026-01-09 16:35:06 info: Producer listener executed successfully: -2026-01-09 16:35:06 info: Producer listener started -2026-01-09 16:35:06 info: Get room started -2026-01-09 16:35:06 info: Get room executed successfully -2026-01-09 16:35:06 info: Producer listener executed successfully: -2026-01-09 16:35:11 info: Join as viewer listner started -2026-01-09 16:35:11 info: Join as viewer started -2026-01-09 16:35:11 info: Get room started -2026-01-09 16:35:11 info: Get room executed successfully -2026-01-09 16:35:11 info: Join as viewer completed successfully -2026-01-09 16:35:11 info: Get room started -2026-01-09 16:35:11 info: Get room executed successfully -2026-01-09 16:35:11 info: Join viewer listner successfully executed -2026-01-09 16:35:11 info: Create viewer transport listner started -2026-01-09 16:35:11 info: Get room started -2026-01-09 16:35:11 info: Get room executed successfully -2026-01-09 16:35:11 info: Create viewer transport started -2026-01-09 16:35:11 info: Get room started -2026-01-09 16:35:11 info: Get room executed successfully -2026-01-09 16:35:11 info: Creation of webRtc server started -2026-01-09 16:35:11 info: WebRTC Server created successfully -2026-01-09 16:35:11 info: Creation of webRTC transport started -2026-01-09 16:35:11 info: WebRTC Transport created : 50f90454-9ab5-41fd-b5ef-16f3ca43d6a0 -2026-01-09 16:35:11 info: Create viewer transport successfully executed -2026-01-09 16:35:11 info: Create viewer transport listner successfully executed -2026-01-09 16:35:11 info: Consume lister started -2026-01-09 16:35:11 info: Consume media started -2026-01-09 16:35:11 info: Get room started -2026-01-09 16:35:11 info: Get room executed successfully -2026-01-09 16:35:11 info: Viewer media consume successfully executed -2026-01-09 16:35:11 info: Consume lister executed successfully -2026-01-09 16:35:48 info: Client connected: Xcvb3jNyHjE1wmiCAAAB -2026-01-09 16:35:49 info: User disconnected Xcvb3jNyHjE1wmiCAAAB beacuse of transport close -2026-01-09 16:35:49 info: Client connected: z5yzLg7RYMGsO_FtAAAD -2026-01-09 16:35:50 info: Client connected: qZQzbzN9BKRxoyivAAAF -2026-01-09 16:35:50 info: Create room listner started -2026-01-09 16:35:50 info: Create room started -2026-01-09 16:35:50 info: Creating worker started -2026-01-09 16:35:50 info: Creation of worker successfully executed -2026-01-09 16:35:50 info: Creation of router started -2026-01-09 16:35:50 info: Router created for room: dc8fe8c7-e925-4167-a681-e55d28195830 -2026-01-09 16:35:50 info: Creation of webRtc server started -2026-01-09 16:35:50 info: WebRTC Server created successfully -2026-01-09 16:35:50 info: Creation of room successfully executed -2026-01-09 16:35:50 info: Add broadcaster started -2026-01-09 16:35:50 info: Get room started -2026-01-09 16:35:50 info: Get room executed successfully -2026-01-09 16:35:50 info: Added broadcaster into memory room -2026-01-09 16:35:50 info: Get room started -2026-01-09 16:35:50 info: Get room executed successfully -2026-01-09 16:35:50 info: Broadcaster created successfully -2026-01-09 16:35:50 info: Create room listner exceuted successfully -2026-01-09 16:35:51 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 16:35:51 info: Get room started -2026-01-09 16:35:51 info: Get room executed successfully -2026-01-09 16:35:51 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 16:35:51 info: Create broadcaster lister started -2026-01-09 16:35:51 info: Get room started -2026-01-09 16:35:51 info: Get room executed successfully -2026-01-09 16:35:51 info: Creation of webRTC transport started -2026-01-09 16:35:51 info: WebRTC Transport created : 4086aaa3-2e4c-454d-a3f2-0f42fc92747b -2026-01-09 16:35:51 info: Save broadcaster transport executed successfully -2026-01-09 16:35:51 info: Connect broadcaster transport lister started -2026-01-09 16:35:51 info: Get room started -2026-01-09 16:35:51 info: Get room executed successfully -2026-01-09 16:35:51 info: Connect broadcaster transport executed successfully -2026-01-09 16:35:51 info: Producer listener started -2026-01-09 16:35:51 info: Get room started -2026-01-09 16:35:51 info: Get room executed successfully -2026-01-09 16:35:51 info: Producer listener executed successfully: -2026-01-09 16:35:51 info: Producer listener started -2026-01-09 16:35:51 info: Get room started -2026-01-09 16:35:51 info: Get room executed successfully -2026-01-09 16:35:51 info: Producer listener executed successfully: -2026-01-09 16:35:54 info: Join as viewer listner started -2026-01-09 16:35:54 info: Join as viewer started -2026-01-09 16:35:54 info: Get room started -2026-01-09 16:35:54 info: Get room executed successfully -2026-01-09 16:35:54 info: Join as viewer completed successfully -2026-01-09 16:35:54 info: Get room started -2026-01-09 16:35:54 info: Get room executed successfully -2026-01-09 16:35:54 info: Join viewer listner successfully executed -2026-01-09 16:35:54 info: Create viewer transport listner started -2026-01-09 16:35:54 info: Get room started -2026-01-09 16:35:54 info: Get room executed successfully -2026-01-09 16:35:54 info: Create viewer transport started -2026-01-09 16:35:54 info: Get room started -2026-01-09 16:35:54 info: Get room executed successfully -2026-01-09 16:35:54 info: Creation of webRtc server started -2026-01-09 16:35:54 info: WebRTC Server created successfully -2026-01-09 16:35:54 info: Creation of webRTC transport started -2026-01-09 16:35:54 info: WebRTC Transport created : 43ebc801-18b0-4c8d-941f-510a05fff1b3 -2026-01-09 16:35:54 info: Create viewer transport successfully executed -2026-01-09 16:35:54 info: Create viewer transport listner successfully executed -2026-01-09 16:35:54 info: Consume lister started -2026-01-09 16:35:54 info: Consume media started -2026-01-09 16:35:54 info: Get room started -2026-01-09 16:35:54 info: Get room executed successfully -2026-01-09 16:35:54 info: Viewer media consume successfully executed -2026-01-09 16:35:54 info: Consume lister executed successfully -2026-01-09 16:36:33 info: Client connected: BZBT9wQcBy55lDLnAAAB -2026-01-09 16:36:33 info: Client connected: X7wiP-Reh9Nf86qrAAAD -2026-01-09 16:36:43 info: Client connected: XB0I0pdwVzIPstgsAAAB -2026-01-09 16:36:44 info: Client connected: mZeM0FlzQdwDjqPzAAAD -2026-01-09 16:36:49 info: Client connected: QYewRVjEqmMo7lwTAAAB -2026-01-09 16:36:51 info: Client connected: l-nkaFBEko82cBMRAAAD -2026-01-09 16:36:55 info: Client connected: pf-2GSaaFT5GSiYqAAAB -2026-01-09 16:36:55 info: Client connected: itv1V-BUGQdCy52sAAAD -2026-01-09 16:37:06 info: Client connected: JbxT2GPLHQSEymYwAAAB -2026-01-09 16:37:06 info: Client connected: G-Tigt9RrfgsK5psAAAD -2026-01-09 16:37:06 info: User disconnected G-Tigt9RrfgsK5psAAAD beacuse of transport close -2026-01-09 16:37:06 info: Client connected: MQ7duOnV_2h-8ppVAAAF -2026-01-09 16:37:08 info: Create room listner started -2026-01-09 16:37:08 info: Create room started -2026-01-09 16:37:08 info: Creating worker started -2026-01-09 16:37:08 info: Creation of worker successfully executed -2026-01-09 16:37:08 info: Creation of router started -2026-01-09 16:37:08 info: Router created for room: a2a2b78c-5173-45aa-b66e-6f9c995c9183 -2026-01-09 16:37:08 info: Creation of webRtc server started -2026-01-09 16:37:08 info: WebRTC Server created successfully -2026-01-09 16:37:08 info: Creation of room successfully executed -2026-01-09 16:37:08 info: Add broadcaster started -2026-01-09 16:37:08 info: Get room started -2026-01-09 16:37:08 info: Get room executed successfully -2026-01-09 16:37:08 info: Added broadcaster into memory room -2026-01-09 16:37:08 info: Get room started -2026-01-09 16:37:08 info: Get room executed successfully -2026-01-09 16:37:08 info: Broadcaster created successfully -2026-01-09 16:37:08 info: Create room listner exceuted successfully -2026-01-09 16:37:08 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 16:37:08 info: Get room started -2026-01-09 16:37:08 info: Get room executed successfully -2026-01-09 16:37:08 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 16:37:08 info: Create broadcaster lister started -2026-01-09 16:37:08 info: Get room started -2026-01-09 16:37:08 info: Get room executed successfully -2026-01-09 16:37:08 info: Creation of webRTC transport started -2026-01-09 16:37:08 info: WebRTC Transport created : c7beefdc-2d1a-4d0a-b5c2-9d64804faf3b -2026-01-09 16:37:08 info: Save broadcaster transport executed successfully -2026-01-09 16:37:08 info: Connect broadcaster transport lister started -2026-01-09 16:37:08 info: Get room started -2026-01-09 16:37:08 info: Get room executed successfully -2026-01-09 16:37:08 info: Connect broadcaster transport executed successfully -2026-01-09 16:37:08 info: Producer listener started -2026-01-09 16:37:08 info: Get room started -2026-01-09 16:37:08 info: Get room executed successfully -2026-01-09 16:37:08 info: Producer listener executed successfully: -2026-01-09 16:37:08 info: Producer listener started -2026-01-09 16:37:08 info: Get room started -2026-01-09 16:37:08 info: Get room executed successfully -2026-01-09 16:37:08 info: Producer listener executed successfully: -2026-01-09 16:37:11 info: Join as viewer listner started -2026-01-09 16:37:11 info: Join as viewer started -2026-01-09 16:37:11 info: Get room started -2026-01-09 16:37:11 info: Get room executed successfully -2026-01-09 16:37:11 info: Join as viewer completed successfully -2026-01-09 16:37:11 info: Get room started -2026-01-09 16:37:11 info: Get room executed successfully -2026-01-09 16:37:11 info: Join viewer listner successfully executed -2026-01-09 16:37:11 info: Create viewer transport listner started -2026-01-09 16:37:11 info: Get room started -2026-01-09 16:37:11 info: Get room executed successfully -2026-01-09 16:37:11 info: Create viewer transport started -2026-01-09 16:37:11 info: Get room started -2026-01-09 16:37:11 info: Get room executed successfully -2026-01-09 16:37:11 info: Creation of webRtc server started -2026-01-09 16:37:11 info: WebRTC Server created successfully -2026-01-09 16:37:11 info: Creation of webRTC transport started -2026-01-09 16:37:11 info: WebRTC Transport created : 1c6e87e1-00fe-4c0b-b007-5a12b53f63c7 -2026-01-09 16:37:11 info: Create viewer transport successfully executed -2026-01-09 16:37:11 info: Create viewer transport listner successfully executed -2026-01-09 16:37:11 info: Consume lister started -2026-01-09 16:37:11 info: Consume media started -2026-01-09 16:37:11 info: Get room started -2026-01-09 16:37:11 info: Get room executed successfully -2026-01-09 16:37:11 info: Viewer media consume successfully executed -2026-01-09 16:37:11 info: Consume lister executed successfully -2026-01-09 16:38:17 info: User disconnected JbxT2GPLHQSEymYwAAAB beacuse of transport close -2026-01-09 16:38:18 info: User disconnected MQ7duOnV_2h-8ppVAAAF beacuse of transport close -2026-01-09 16:42:19 info: Client connected: 6fD9227Dnoqv7LNfAAAB -2026-01-09 16:42:23 info: Client connected: Zn--iPVgmU8PlyTHAAAD -2026-01-09 16:42:25 info: Create room listner started -2026-01-09 16:42:25 info: Create room started -2026-01-09 16:42:25 info: Creating worker started -2026-01-09 16:42:25 info: Creation of worker successfully executed -2026-01-09 16:42:25 info: Creation of router started -2026-01-09 16:42:25 info: Router created for room: b8e68a99-1ec8-4db4-bf7d-0a7688b1c8c8 -2026-01-09 16:42:25 info: Creation of webRtc server started -2026-01-09 16:42:25 info: WebRTC Server created successfully -2026-01-09 16:42:25 info: Creation of room successfully executed -2026-01-09 16:42:25 info: Add broadcaster started -2026-01-09 16:42:25 info: Get room started -2026-01-09 16:42:25 info: Get room executed successfully -2026-01-09 16:42:25 info: Added broadcaster into memory room -2026-01-09 16:42:25 info: Get room started -2026-01-09 16:42:25 info: Get room executed successfully -2026-01-09 16:42:25 info: Broadcaster created successfully -2026-01-09 16:42:25 info: Create room listner exceuted successfully -2026-01-09 16:42:26 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 16:42:26 info: Get room started -2026-01-09 16:42:26 info: Get room executed successfully -2026-01-09 16:42:26 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 16:42:26 info: Create broadcaster lister started -2026-01-09 16:42:26 info: Get room started -2026-01-09 16:42:26 info: Get room executed successfully -2026-01-09 16:42:26 info: Creation of webRTC transport started -2026-01-09 16:42:26 info: WebRTC Transport created : 7aad099e-099a-4298-9342-ee950f23ce54 -2026-01-09 16:42:26 info: Save broadcaster transport executed successfully -2026-01-09 16:42:26 info: Connect broadcaster transport lister started -2026-01-09 16:42:26 info: Get room started -2026-01-09 16:42:26 info: Get room executed successfully -2026-01-09 16:42:26 info: Connect broadcaster transport executed successfully -2026-01-09 16:42:26 info: Producer listener started -2026-01-09 16:42:26 info: Get room started -2026-01-09 16:42:26 info: Get room executed successfully -2026-01-09 16:42:26 info: Producer listener executed successfully: -2026-01-09 16:42:26 info: Producer listener started -2026-01-09 16:42:26 info: Get room started -2026-01-09 16:42:26 info: Get room executed successfully -2026-01-09 16:42:26 info: Producer listener executed successfully: -2026-01-09 16:42:32 info: Join as viewer listner started -2026-01-09 16:42:32 info: Join as viewer started -2026-01-09 16:42:32 info: Get room started -2026-01-09 16:42:32 info: Get room executed successfully -2026-01-09 16:42:32 info: Join as viewer completed successfully -2026-01-09 16:42:32 info: Get room started -2026-01-09 16:42:32 info: Get room executed successfully -2026-01-09 16:42:32 info: Join viewer listner successfully executed -2026-01-09 16:42:32 info: Create viewer transport listner started -2026-01-09 16:42:32 info: Get room started -2026-01-09 16:42:32 info: Get room executed successfully -2026-01-09 16:42:32 info: Create viewer transport started -2026-01-09 16:42:32 info: Get room started -2026-01-09 16:42:32 info: Get room executed successfully -2026-01-09 16:42:32 info: Creation of webRTC transport started -2026-01-09 16:42:32 info: WebRTC Transport created : e1a6f735-8d84-4330-85b9-6590f09bd0cb -2026-01-09 16:42:32 info: Create viewer transport successfully executed -2026-01-09 16:42:32 info: Create viewer transport listner successfully executed -2026-01-09 16:42:32 info: Consume lister started -2026-01-09 16:42:32 info: Consume media started -2026-01-09 16:42:32 info: Get room started -2026-01-09 16:42:32 info: Get room executed successfully -2026-01-09 16:42:32 info: Viewer media consume successfully executed -2026-01-09 16:42:32 info: Consume lister executed successfully -2026-01-09 16:44:33 info: Client connected: xCs3gO_usSTCX9DBAAAB -2026-01-09 16:44:34 info: Client connected: QaPW4yFZSXsGp_XEAAAD -2026-01-09 16:44:35 info: Create room listner started -2026-01-09 16:44:35 info: Create room started -2026-01-09 16:44:35 info: Creating worker started -2026-01-09 16:44:35 info: Creation of worker successfully executed -2026-01-09 16:44:35 info: Creation of router started -2026-01-09 16:44:35 info: Router created for room: d3203f88-2d38-434e-9209-b5a9442279d0 -2026-01-09 16:44:35 info: Creation of webRtc server started -2026-01-09 16:44:35 info: WebRTC Server created successfully -2026-01-09 16:44:35 info: Creation of room successfully executed -2026-01-09 16:44:35 info: Add broadcaster started -2026-01-09 16:44:35 info: Get room started -2026-01-09 16:44:35 info: Get room executed successfully -2026-01-09 16:44:35 info: Added broadcaster into memory room -2026-01-09 16:44:35 info: Get room started -2026-01-09 16:44:35 info: Get room executed successfully -2026-01-09 16:44:35 info: Broadcaster created successfully -2026-01-09 16:44:35 info: Create room listner exceuted successfully -2026-01-09 16:44:35 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 16:44:35 info: Get room started -2026-01-09 16:44:35 info: Get room executed successfully -2026-01-09 16:44:35 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 16:44:35 info: Create broadcaster lister started -2026-01-09 16:44:35 info: Get room started -2026-01-09 16:44:35 info: Get room executed successfully -2026-01-09 16:44:35 info: Creation of webRTC transport started -2026-01-09 16:44:35 info: WebRTC Transport created : aac749d1-8e19-47a9-b0c1-e9f16dd4e47a -2026-01-09 16:44:35 info: Save broadcaster transport executed successfully -2026-01-09 16:44:35 info: Connect broadcaster transport lister started -2026-01-09 16:44:35 info: Get room started -2026-01-09 16:44:35 info: Get room executed successfully -2026-01-09 16:44:35 info: Connect broadcaster transport executed successfully -2026-01-09 16:44:35 info: Producer listener started -2026-01-09 16:44:35 info: Get room started -2026-01-09 16:44:35 info: Get room executed successfully -2026-01-09 16:44:35 info: Producer listener executed successfully: -2026-01-09 16:44:35 info: Producer listener started -2026-01-09 16:44:35 info: Get room started -2026-01-09 16:44:35 info: Get room executed successfully -2026-01-09 16:44:35 info: Producer listener executed successfully: -2026-01-09 16:44:40 info: Join as viewer listner started -2026-01-09 16:44:40 info: Join as viewer started -2026-01-09 16:44:40 info: Get room started -2026-01-09 16:44:40 info: Get room executed successfully -2026-01-09 16:44:40 info: Join as viewer completed successfully -2026-01-09 16:44:40 info: Get room started -2026-01-09 16:44:40 info: Get room executed successfully -2026-01-09 16:44:40 info: Join viewer listner successfully executed -2026-01-09 16:44:40 info: Create viewer transport listner started -2026-01-09 16:44:40 info: Get room started -2026-01-09 16:44:40 info: Get room executed successfully -2026-01-09 16:44:40 info: Create viewer transport started -2026-01-09 16:44:40 info: Get room started -2026-01-09 16:44:40 info: Get room executed successfully -2026-01-09 16:44:40 info: Creation of webRTC transport started -2026-01-09 16:44:40 info: WebRTC Transport created : 5151bad6-b942-43db-a9af-6202b3820d96 -2026-01-09 16:44:40 info: Create viewer transport successfully executed -2026-01-09 16:44:40 info: Create viewer transport listner successfully executed -2026-01-09 16:44:40 info: Consume lister started -2026-01-09 16:44:40 info: Consume media started -2026-01-09 16:44:40 info: Get room started -2026-01-09 16:44:40 info: Get room executed successfully -2026-01-09 16:44:40 info: Viewer media consume successfully executed -2026-01-09 16:44:40 info: Consume lister executed successfully -2026-01-09 16:45:33 info: User disconnected QaPW4yFZSXsGp_XEAAAD beacuse of transport close -2026-01-09 16:45:34 info: User disconnected xCs3gO_usSTCX9DBAAAB beacuse of transport close -2026-01-09 16:48:31 info: Client connected: wUoLU7kjMUNAfA1zAAAB -2026-01-09 16:48:32 info: Client connected: 7bHkdUylB7V1zOMaAAAD -2026-01-09 16:48:33 info: Create room listner started -2026-01-09 16:48:33 info: Create room started -2026-01-09 16:48:33 info: Creating worker started -2026-01-09 16:48:33 info: Creation of worker successfully executed -2026-01-09 16:48:33 info: Creation of router started -2026-01-09 16:48:33 info: Router created for room: 3f894bcf-656f-426a-a1a3-f8cdadff719c -2026-01-09 16:48:33 info: Creation of webRtc server started -2026-01-09 16:48:33 info: WebRTC Server created successfully -2026-01-09 16:48:33 info: Creation of room successfully executed -2026-01-09 16:48:33 info: Add broadcaster started -2026-01-09 16:48:33 info: Get room started -2026-01-09 16:48:33 info: Get room executed successfully -2026-01-09 16:48:33 info: Added broadcaster into memory room -2026-01-09 16:48:33 info: Get room started -2026-01-09 16:48:33 info: Get room executed successfully -2026-01-09 16:48:33 info: Broadcaster created successfully -2026-01-09 16:48:33 info: Create room listner exceuted successfully -2026-01-09 16:48:34 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 16:48:34 info: Get room started -2026-01-09 16:48:34 info: Get room executed successfully -2026-01-09 16:48:34 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 16:48:34 info: Create broadcaster lister started -2026-01-09 16:48:34 info: Get room started -2026-01-09 16:48:34 info: Get room executed successfully -2026-01-09 16:48:34 info: Creation of webRTC transport started -2026-01-09 16:48:34 info: WebRTC Transport created : 891a474b-58e5-406d-9f1e-da91b6a49e2a -2026-01-09 16:48:34 info: Save broadcaster transport executed successfully -2026-01-09 16:48:34 info: Connect broadcaster transport lister started -2026-01-09 16:48:34 info: Get room started -2026-01-09 16:48:34 info: Get room executed successfully -2026-01-09 16:48:34 info: Connect broadcaster transport executed successfully -2026-01-09 16:48:34 info: Producer listener started -2026-01-09 16:48:34 info: Get room started -2026-01-09 16:48:34 info: Get room executed successfully -2026-01-09 16:48:34 info: Producer listener executed successfully: -2026-01-09 16:48:34 info: Producer listener started -2026-01-09 16:48:34 info: Get room started -2026-01-09 16:48:34 info: Get room executed successfully -2026-01-09 16:48:34 info: Producer listener executed successfully: -2026-01-09 16:48:47 info: Join as viewer listner started -2026-01-09 16:48:47 info: Join as viewer started -2026-01-09 16:48:47 info: Get room started -2026-01-09 16:48:47 info: Get room executed successfully -2026-01-09 16:48:47 info: Join as viewer completed successfully -2026-01-09 16:48:47 info: Get room started -2026-01-09 16:48:47 info: Get room executed successfully -2026-01-09 16:48:47 info: Join viewer listner successfully executed -2026-01-09 16:48:47 info: Create viewer transport listner started -2026-01-09 16:48:47 info: Get room started -2026-01-09 16:48:47 info: Get room executed successfully -2026-01-09 16:48:47 info: Create viewer transport started -2026-01-09 16:48:47 info: Get room started -2026-01-09 16:48:47 info: Get room executed successfully -2026-01-09 16:48:47 info: Creation of webRTC transport started -2026-01-09 16:48:47 info: WebRTC Transport created : b3573e75-7b7f-4664-8cf4-c128095de3ba -2026-01-09 16:48:47 info: Create viewer transport successfully executed -2026-01-09 16:48:47 info: Create viewer transport listner successfully executed -2026-01-09 16:48:47 info: Consume lister started -2026-01-09 16:48:47 info: Consume media started -2026-01-09 16:48:47 info: Get room started -2026-01-09 16:48:47 info: Get room executed successfully -2026-01-09 16:48:47 info: Get room started -2026-01-09 16:48:47 info: Get room executed successfully -2026-01-09 16:48:47 error: TypeError: caps is not an object - at Object.validateRtpCapabilities (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/ortc.js:34:15) - at WebRtcTransportImpl.consume (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Transport.js:337:14) - at consume (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/viewer.handler.ts:169:43) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:117:38) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-09 16:48:47 info: Consume lister executed successfully -2026-01-09 16:49:43 info: Client connected: aOnRFJSfNDCsm3J4AAAB -2026-01-09 16:49:45 info: Client connected: b0jcqCIKurwbycN0AAAD -2026-01-09 16:50:48 info: Client connected: Ht71d-feUwsCdUq_AAAB -2026-01-09 16:50:48 info: Client connected: QzOPbo6ksuvl0hxaAAAD -2026-01-09 16:50:51 info: Create room listner started -2026-01-09 16:50:51 info: Create room started -2026-01-09 16:50:51 info: Creating worker started -2026-01-09 16:50:51 info: Creation of worker successfully executed -2026-01-09 16:50:51 info: Creation of router started -2026-01-09 16:50:51 info: Router created for room: 1188febc-8054-4991-9d33-8446848efb96 -2026-01-09 16:50:51 info: Creation of webRtc server started -2026-01-09 16:50:51 info: WebRTC Server created successfully -2026-01-09 16:50:51 info: Creation of room successfully executed -2026-01-09 16:50:51 info: Add broadcaster started -2026-01-09 16:50:51 info: Get room started -2026-01-09 16:50:51 info: Get room executed successfully -2026-01-09 16:50:51 info: Added broadcaster into memory room -2026-01-09 16:50:51 info: Get room started -2026-01-09 16:50:51 info: Get room executed successfully -2026-01-09 16:50:51 info: Broadcaster created successfully -2026-01-09 16:50:51 info: Create room listner exceuted successfully -2026-01-09 16:50:51 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 16:50:51 info: Get room started -2026-01-09 16:50:51 info: Get room executed successfully -2026-01-09 16:50:51 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 16:50:51 info: Create broadcaster lister started -2026-01-09 16:50:51 info: Get room started -2026-01-09 16:50:51 info: Get room executed successfully -2026-01-09 16:50:51 info: Creation of webRTC transport started -2026-01-09 16:50:51 info: WebRTC Transport created : 1790cb1d-bf17-4f51-a5cc-8cbce228d283 -2026-01-09 16:50:51 info: Save broadcaster transport executed successfully -2026-01-09 16:50:51 info: Connect broadcaster transport lister started -2026-01-09 16:50:51 info: Get room started -2026-01-09 16:50:51 info: Get room executed successfully -2026-01-09 16:50:51 info: Connect broadcaster transport executed successfully -2026-01-09 16:50:51 info: Producer listener started -2026-01-09 16:50:51 info: Get room started -2026-01-09 16:50:51 info: Get room executed successfully -2026-01-09 16:50:52 info: Producer listener executed successfully: -2026-01-09 16:50:52 info: Producer listener started -2026-01-09 16:50:52 info: Get room started -2026-01-09 16:50:52 info: Get room executed successfully -2026-01-09 16:50:52 info: Producer listener executed successfully: -2026-01-09 16:50:55 info: Join as viewer listner started -2026-01-09 16:50:55 info: Join as viewer started -2026-01-09 16:50:55 info: Get room started -2026-01-09 16:50:55 info: Get room executed successfully -2026-01-09 16:50:55 info: Join as viewer completed successfully -2026-01-09 16:50:55 info: Get room started -2026-01-09 16:50:55 info: Get room executed successfully -2026-01-09 16:50:55 info: Join viewer listner successfully executed -2026-01-09 16:50:55 info: Create viewer transport listner started -2026-01-09 16:50:55 info: Get room started -2026-01-09 16:50:55 info: Get room executed successfully -2026-01-09 16:50:55 info: Create viewer transport started -2026-01-09 16:50:55 info: Get room started -2026-01-09 16:50:55 info: Get room executed successfully -2026-01-09 16:50:55 info: Creation of webRTC transport started -2026-01-09 16:50:55 info: WebRTC Transport created : fdc55687-2865-4d5b-9061-8228422f9a40 -2026-01-09 16:50:55 info: Create viewer transport successfully executed -2026-01-09 16:50:55 info: Create viewer transport listner successfully executed -2026-01-09 16:50:55 info: Consume lister started -2026-01-09 16:50:55 info: Consume media started -2026-01-09 16:50:55 info: Get room started -2026-01-09 16:50:55 info: Get room executed successfully -2026-01-09 16:50:55 info: Get room started -2026-01-09 16:50:55 info: Get room executed successfully -2026-01-09 16:50:55 info: Get room started -2026-01-09 16:50:55 info: Get room executed successfully -2026-01-09 16:50:55 info: Viewer media consume successfully executed -2026-01-09 16:50:55 info: Consume lister executed successfully -2026-01-09 16:50:55 info: Connect consumer listner started -2026-01-09 16:50:55 info: Connect consumer started -2026-01-09 16:50:55 info: Get room started -2026-01-09 16:50:55 info: Get room executed successfully -2026-01-09 16:50:55 info: Connect consumer executed successfully -2026-01-09 16:50:55 info: Connect consumer listner executed successfully -2026-01-09 16:50:55 info: Resume consumer started -2026-01-09 16:50:55 error: TypeError: Cannot read properties of undefined (reading 'resume') - at resumeConsumer (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/consumer/consumer.handler.ts:69:20) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:139:19) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-09 16:51:05 info: Resume consumer started -2026-01-09 16:51:05 error: TypeError: Cannot read properties of undefined (reading 'resume') - at resumeConsumer (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/consumer/consumer.handler.ts:69:20) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:139:19) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-09 16:56:07 info: Client connected: Cy-41oOfWXNOxQZjAAAB -2026-01-09 16:56:07 info: Client connected: G09daDeLCk-iBM1uAAAD -2026-01-09 16:56:08 info: Create room listner started -2026-01-09 16:56:08 info: Create room started -2026-01-09 16:56:08 info: Creating worker started -2026-01-09 16:56:08 info: Creation of worker successfully executed -2026-01-09 16:56:08 info: Creation of router started -2026-01-09 16:56:08 info: Router created for room: 09c23276-70c3-452a-8233-aff2b6cd6cc5 -2026-01-09 16:56:08 info: Creation of webRtc server started -2026-01-09 16:56:08 info: WebRTC Server created successfully -2026-01-09 16:56:08 info: Creation of room successfully executed -2026-01-09 16:56:08 info: Add broadcaster started -2026-01-09 16:56:08 info: Get room started -2026-01-09 16:56:08 info: Get room executed successfully -2026-01-09 16:56:08 info: Added broadcaster into memory room -2026-01-09 16:56:08 info: Get room started -2026-01-09 16:56:08 info: Get room executed successfully -2026-01-09 16:56:08 info: Broadcaster created successfully -2026-01-09 16:56:08 info: Create room listner exceuted successfully -2026-01-09 16:56:09 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 16:56:09 info: Get room started -2026-01-09 16:56:09 info: Get room executed successfully -2026-01-09 16:56:09 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 16:56:09 info: Create broadcaster lister started -2026-01-09 16:56:09 info: Get room started -2026-01-09 16:56:09 info: Get room executed successfully -2026-01-09 16:56:09 info: Creation of webRTC transport started -2026-01-09 16:56:09 info: WebRTC Transport created : 97bedbb9-bf6e-4600-a3cf-1b360c867bac -2026-01-09 16:56:09 info: Save broadcaster transport executed successfully -2026-01-09 16:56:09 info: Connect broadcaster transport lister started -2026-01-09 16:56:09 info: Get room started -2026-01-09 16:56:09 info: Get room executed successfully -2026-01-09 16:56:09 info: Connect broadcaster transport executed successfully -2026-01-09 16:56:09 info: Producer listener started -2026-01-09 16:56:09 info: Get room started -2026-01-09 16:56:09 info: Get room executed successfully -2026-01-09 16:56:09 info: Producer listener executed successfully: -2026-01-09 16:56:09 info: Producer listener started -2026-01-09 16:56:09 info: Get room started -2026-01-09 16:56:09 info: Get room executed successfully -2026-01-09 16:56:09 info: Producer listener executed successfully: -2026-01-09 16:56:12 info: Join as viewer listner started -2026-01-09 16:56:12 info: Join as viewer started -2026-01-09 16:56:12 info: Get room started -2026-01-09 16:56:12 info: Get room executed successfully -2026-01-09 16:56:12 info: Join as viewer completed successfully -2026-01-09 16:56:12 info: Get room started -2026-01-09 16:56:12 info: Get room executed successfully -2026-01-09 16:56:12 info: Join viewer listner successfully executed -2026-01-09 16:56:12 info: Create viewer transport listner started -2026-01-09 16:56:12 info: Get room started -2026-01-09 16:56:12 info: Get room executed successfully -2026-01-09 16:56:12 info: Create viewer transport started -2026-01-09 16:56:12 info: Get room started -2026-01-09 16:56:12 info: Get room executed successfully -2026-01-09 16:56:12 info: Creation of webRTC transport started -2026-01-09 16:56:12 info: WebRTC Transport created : 70b2eb49-0c6a-4c76-a956-508b2e487d08 -2026-01-09 16:56:12 info: Create viewer transport successfully executed -2026-01-09 16:56:12 info: Create viewer transport listner successfully executed -2026-01-09 16:56:12 info: Consume lister started -2026-01-09 16:56:12 info: Consume media started -2026-01-09 16:56:12 info: Get room started -2026-01-09 16:56:12 info: Get room executed successfully -2026-01-09 16:56:12 info: Get room started -2026-01-09 16:56:12 info: Get room executed successfully -2026-01-09 16:56:12 info: Get room started -2026-01-09 16:56:12 info: Get room executed successfully -2026-01-09 16:56:12 info: Viewer media consume successfully executed -2026-01-09 16:56:12 info: Consume lister executed successfully -2026-01-09 16:56:12 info: Connect consumer listner started -2026-01-09 16:56:12 info: Connect consumer started -2026-01-09 16:56:12 info: Get room started -2026-01-09 16:56:12 info: Get room executed successfully -2026-01-09 16:56:12 info: Connect consumer executed successfully -2026-01-09 16:56:12 info: Connect consumer listner executed successfully -2026-01-09 16:56:12 info: Resume consumer listner started -2026-01-09 16:56:12 info: Resume consumer started -2026-01-09 16:56:12 info: Resume consumer successfully executed -2026-01-09 16:56:12 info: Resume consumer listner executed successfully -2026-01-09 16:56:22 info: Resume consumer listner started -2026-01-09 16:56:22 info: Resume consumer started -2026-01-09 16:56:22 info: Resume consumer successfully executed -2026-01-09 16:56:22 info: Resume consumer listner executed successfully -2026-01-09 17:01:07 info: User disconnected G09daDeLCk-iBM1uAAAD beacuse of transport close -2026-01-09 17:01:07 info: Client connected: 3MUKGaGMypZ3GmZKAAAF -2026-01-09 17:01:12 info: Join as viewer listner started -2026-01-09 17:01:12 info: Join as viewer started -2026-01-09 17:01:12 info: Get room started -2026-01-09 17:01:12 info: Get room executed successfully -2026-01-09 17:01:12 info: Join as viewer completed successfully -2026-01-09 17:01:12 info: Get room started -2026-01-09 17:01:12 info: Get room executed successfully -2026-01-09 17:01:12 info: Join viewer listner successfully executed -2026-01-09 17:01:12 info: Create viewer transport listner started -2026-01-09 17:01:12 info: Get room started -2026-01-09 17:01:12 info: Get room executed successfully -2026-01-09 17:01:12 info: Create viewer transport started -2026-01-09 17:01:12 info: Get room started -2026-01-09 17:01:12 info: Get room executed successfully -2026-01-09 17:01:12 info: Creation of webRTC transport started -2026-01-09 17:01:12 info: WebRTC Transport created : 061c0c55-fa52-44d8-84e1-14305aad7c8e -2026-01-09 17:01:12 info: Create viewer transport successfully executed -2026-01-09 17:01:12 info: Create viewer transport listner successfully executed -2026-01-09 17:01:12 info: Consume lister started -2026-01-09 17:01:12 info: Consume media started -2026-01-09 17:01:12 info: Get room started -2026-01-09 17:01:12 info: Get room executed successfully -2026-01-09 17:01:12 info: Get room started -2026-01-09 17:01:12 info: Get room executed successfully -2026-01-09 17:01:12 info: Get room started -2026-01-09 17:01:12 info: Get room executed successfully -2026-01-09 17:01:12 info: Viewer media consume successfully executed -2026-01-09 17:01:12 info: Consume lister executed successfully -2026-01-09 17:01:12 info: Connect consumer listner started -2026-01-09 17:01:12 info: Connect consumer started -2026-01-09 17:01:12 info: Get room started -2026-01-09 17:01:12 info: Get room executed successfully -2026-01-09 17:01:12 info: Connect consumer executed successfully -2026-01-09 17:01:12 info: Connect consumer listner executed successfully -2026-01-09 17:01:12 info: Resume consumer listner started -2026-01-09 17:01:12 info: Resume consumer started -2026-01-09 17:01:12 info: Resume consumer successfully executed -2026-01-09 17:01:12 info: Resume consumer listner executed successfully -2026-01-09 17:03:12 info: User disconnected 3MUKGaGMypZ3GmZKAAAF beacuse of transport close -2026-01-09 17:03:12 info: Client connected: 08f6fuW5LtK_7iV0AAAH -2026-01-09 17:03:17 info: Join as viewer listner started -2026-01-09 17:03:17 info: Join as viewer started -2026-01-09 17:03:17 info: Get room started -2026-01-09 17:03:17 info: Get room executed successfully -2026-01-09 17:03:17 info: Join as viewer completed successfully -2026-01-09 17:03:17 info: Get room started -2026-01-09 17:03:17 info: Get room executed successfully -2026-01-09 17:03:17 info: Join viewer listner successfully executed -2026-01-09 17:03:17 info: Create viewer transport listner started -2026-01-09 17:03:17 info: Get room started -2026-01-09 17:03:17 info: Get room executed successfully -2026-01-09 17:03:17 info: Create viewer transport started -2026-01-09 17:03:17 info: Get room started -2026-01-09 17:03:17 info: Get room executed successfully -2026-01-09 17:03:17 info: Creation of webRTC transport started -2026-01-09 17:03:17 info: WebRTC Transport created : aaceae14-cf37-4e34-8d2b-75d269116cc5 -2026-01-09 17:03:17 info: Create viewer transport successfully executed -2026-01-09 17:03:17 info: Create viewer transport listner successfully executed -2026-01-09 17:03:17 info: Consume lister started -2026-01-09 17:03:17 info: Consume media started -2026-01-09 17:03:17 info: Get room started -2026-01-09 17:03:17 info: Get room executed successfully -2026-01-09 17:03:17 info: Get room started -2026-01-09 17:03:17 info: Get room executed successfully -2026-01-09 17:03:17 info: Get room started -2026-01-09 17:03:17 info: Get room executed successfully -2026-01-09 17:03:17 info: Viewer media consume successfully executed -2026-01-09 17:03:17 info: Consume lister executed successfully -2026-01-09 17:03:17 info: Connect consumer listner started -2026-01-09 17:03:17 info: Connect consumer started -2026-01-09 17:03:17 info: Get room started -2026-01-09 17:03:17 info: Get room executed successfully -2026-01-09 17:03:17 info: Connect consumer executed successfully -2026-01-09 17:03:17 info: Connect consumer listner executed successfully -2026-01-09 17:03:17 info: Resume consumer listner started -2026-01-09 17:03:17 info: Resume consumer started -2026-01-09 17:03:17 info: Resume consumer successfully executed -2026-01-09 17:03:17 info: Resume consumer listner executed successfully -2026-01-09 17:03:23 info: User disconnected Cy-41oOfWXNOxQZjAAAB beacuse of transport close -2026-01-09 17:03:23 info: Client connected: EylCg4ctMsvFuadIAAAJ -2026-01-09 17:03:23 info: User disconnected 08f6fuW5LtK_7iV0AAAH beacuse of transport close -2026-01-09 17:03:23 info: Client connected: Ak1eao57BcWK88CjAAAL -2026-01-09 17:03:32 info: Client connected: wqtMYmdnAMdnvN19AAAB -2026-01-09 17:03:33 info: Client connected: GuZPLvbIMqvsRZoIAAAD -2026-01-09 17:03:35 info: Create room listner started -2026-01-09 17:03:35 info: Create room started -2026-01-09 17:03:35 info: Creating worker started -2026-01-09 17:03:35 info: Creation of worker successfully executed -2026-01-09 17:03:35 info: Creation of router started -2026-01-09 17:03:35 info: Router created for room: 6b73b4d9-8d28-4c58-927d-d77a8492935c -2026-01-09 17:03:35 info: Creation of webRtc server started -2026-01-09 17:03:35 info: WebRTC Server created successfully -2026-01-09 17:03:35 info: Creation of room successfully executed -2026-01-09 17:03:35 info: Add broadcaster started -2026-01-09 17:03:35 info: Get room started -2026-01-09 17:03:35 info: Get room executed successfully -2026-01-09 17:03:35 info: Added broadcaster into memory room -2026-01-09 17:03:35 info: Get room started -2026-01-09 17:03:35 info: Get room executed successfully -2026-01-09 17:03:35 info: Broadcaster created successfully -2026-01-09 17:03:35 info: Create room listner exceuted successfully -2026-01-09 17:03:36 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 17:03:36 info: Get room started -2026-01-09 17:03:36 info: Get room executed successfully -2026-01-09 17:03:36 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 17:03:36 info: Create broadcaster lister started -2026-01-09 17:03:36 info: Get room started -2026-01-09 17:03:36 info: Get room executed successfully -2026-01-09 17:03:36 info: Creation of webRTC transport started -2026-01-09 17:03:36 info: WebRTC Transport created : d1224bda-188d-403f-8423-6a6281043056 -2026-01-09 17:03:36 info: Save broadcaster transport executed successfully -2026-01-09 17:03:36 info: Connect broadcaster transport lister started -2026-01-09 17:03:36 info: Get room started -2026-01-09 17:03:36 info: Get room executed successfully -2026-01-09 17:03:36 info: Connect broadcaster transport executed successfully -2026-01-09 17:03:36 info: Producer listener started -2026-01-09 17:03:36 info: Get room started -2026-01-09 17:03:36 info: Get room executed successfully -2026-01-09 17:03:36 info: Producer listener executed successfully: -2026-01-09 17:03:36 info: Producer listener started -2026-01-09 17:03:36 info: Get room started -2026-01-09 17:03:36 info: Get room executed successfully -2026-01-09 17:03:36 info: Producer listener executed successfully: -2026-01-09 17:03:39 info: Join as viewer listner started -2026-01-09 17:03:39 info: Join as viewer started -2026-01-09 17:03:39 info: Get room started -2026-01-09 17:03:39 info: Get room executed successfully -2026-01-09 17:03:39 info: Join as viewer completed successfully -2026-01-09 17:03:39 info: Get room started -2026-01-09 17:03:39 info: Get room executed successfully -2026-01-09 17:03:39 info: Join viewer listner successfully executed -2026-01-09 17:03:39 info: Create viewer transport listner started -2026-01-09 17:03:39 info: Get room started -2026-01-09 17:03:39 info: Get room executed successfully -2026-01-09 17:03:39 info: Create viewer transport started -2026-01-09 17:03:39 info: Get room started -2026-01-09 17:03:39 info: Get room executed successfully -2026-01-09 17:03:39 info: Creation of webRTC transport started -2026-01-09 17:03:39 info: WebRTC Transport created : a1fcbf25-50e3-4a75-8af1-801e2c058851 -2026-01-09 17:03:39 info: Create viewer transport successfully executed -2026-01-09 17:03:39 info: Create viewer transport listner successfully executed -2026-01-09 17:03:39 info: Consume lister started -2026-01-09 17:03:39 info: Consume media started -2026-01-09 17:03:39 info: Get room started -2026-01-09 17:03:39 info: Get room executed successfully -2026-01-09 17:03:39 info: Get room started -2026-01-09 17:03:39 info: Get room executed successfully -2026-01-09 17:03:39 info: Get room started -2026-01-09 17:03:39 info: Get room executed successfully -2026-01-09 17:03:39 info: Viewer media consume successfully executed -2026-01-09 17:03:39 info: Consume lister executed successfully -2026-01-09 17:03:39 info: Connect consumer listner started -2026-01-09 17:03:39 info: Connect consumer started -2026-01-09 17:03:39 info: Get room started -2026-01-09 17:03:39 info: Get room executed successfully -2026-01-09 17:03:39 info: Connect consumer executed successfully -2026-01-09 17:03:39 info: Connect consumer listner executed successfully -2026-01-09 17:03:39 info: Resume consumer listner started -2026-01-09 17:03:39 info: Resume consumer started -2026-01-09 17:03:39 info: Resume consumer successfully executed -2026-01-09 17:03:39 info: Resume consumer listner executed successfully -2026-01-09 17:04:57 info: User disconnected wqtMYmdnAMdnvN19AAAB beacuse of transport close -2026-01-09 17:04:57 info: Client connected: UkvibmbDsu0jjsi5AAAF -2026-01-09 17:05:00 info: Join as viewer listner started -2026-01-09 17:05:00 info: Join as viewer started -2026-01-09 17:05:00 info: Get room started -2026-01-09 17:05:00 info: Get room executed successfully -2026-01-09 17:05:00 info: Join as viewer completed successfully -2026-01-09 17:05:00 info: Get room started -2026-01-09 17:05:00 info: Get room executed successfully -2026-01-09 17:05:00 info: Join viewer listner successfully executed -2026-01-09 17:05:00 info: Create viewer transport listner started -2026-01-09 17:05:00 info: Get room started -2026-01-09 17:05:00 info: Get room executed successfully -2026-01-09 17:05:00 info: Create viewer transport started -2026-01-09 17:05:00 info: Get room started -2026-01-09 17:05:00 info: Get room executed successfully -2026-01-09 17:05:00 info: Creation of webRTC transport started -2026-01-09 17:05:00 info: WebRTC Transport created : d2343cf5-d91d-4fe5-bcf3-10f316a151d4 -2026-01-09 17:05:00 info: Create viewer transport successfully executed -2026-01-09 17:05:01 info: Create viewer transport listner successfully executed -2026-01-09 17:05:01 info: Consume lister started -2026-01-09 17:05:01 info: Consume media started -2026-01-09 17:05:01 info: Get room started -2026-01-09 17:05:01 info: Get room executed successfully -2026-01-09 17:05:01 info: Get room started -2026-01-09 17:05:01 info: Get room executed successfully -2026-01-09 17:05:01 info: Get room started -2026-01-09 17:05:01 info: Get room executed successfully -2026-01-09 17:05:01 info: Viewer media consume successfully executed -2026-01-09 17:05:01 info: Consume lister executed successfully -2026-01-09 17:05:01 info: Connect consumer listner started -2026-01-09 17:05:01 info: Connect consumer started -2026-01-09 17:05:01 info: Get room started -2026-01-09 17:05:01 info: Get room executed successfully -2026-01-09 17:05:01 info: Connect consumer executed successfully -2026-01-09 17:05:01 info: Connect consumer listner executed successfully -2026-01-09 17:05:01 info: Resume consumer listner started -2026-01-09 17:05:01 info: Resume consumer started -2026-01-09 17:05:01 info: Resume consumer successfully executed -2026-01-09 17:05:01 info: Resume consumer listner executed successfully -2026-01-09 17:05:01 info: Resume consumer listner started -2026-01-09 17:05:01 info: Resume consumer started -2026-01-09 17:05:01 info: Resume consumer successfully executed -2026-01-09 17:05:01 info: Resume consumer listner executed successfully -2026-01-09 17:05:57 info: User disconnected UkvibmbDsu0jjsi5AAAF beacuse of transport close -2026-01-09 17:05:57 info: Client connected: iCGj1EowOKDdto35AAAH -2026-01-09 17:05:57 info: User disconnected iCGj1EowOKDdto35AAAH beacuse of transport close -2026-01-09 17:05:57 info: Client connected: aHjGx51YCbfB5xLuAAAJ -2026-01-09 17:05:57 info: User disconnected aHjGx51YCbfB5xLuAAAJ beacuse of transport close -2026-01-09 17:05:57 info: Client connected: ogPVQBM0ZbhREffvAAAL -2026-01-09 17:05:57 info: User disconnected ogPVQBM0ZbhREffvAAAL beacuse of transport close -2026-01-09 17:05:57 info: Client connected: Bqtk4Nvq76rSKU6IAAAN -2026-01-09 17:06:02 info: Join as viewer listner started -2026-01-09 17:06:02 info: Join as viewer started -2026-01-09 17:06:02 info: Get room started -2026-01-09 17:06:02 info: Get room executed successfully -2026-01-09 17:06:02 info: Join as viewer completed successfully -2026-01-09 17:06:02 info: Get room started -2026-01-09 17:06:02 info: Get room executed successfully -2026-01-09 17:06:02 info: Join viewer listner successfully executed -2026-01-09 17:06:02 info: Create viewer transport listner started -2026-01-09 17:06:02 info: Get room started -2026-01-09 17:06:02 info: Get room executed successfully -2026-01-09 17:06:02 info: Create viewer transport started -2026-01-09 17:06:02 info: Get room started -2026-01-09 17:06:02 info: Get room executed successfully -2026-01-09 17:06:02 info: Creation of webRTC transport started -2026-01-09 17:06:02 info: WebRTC Transport created : 51d0f4f4-5c7b-434a-bc83-fafed4ec51d8 -2026-01-09 17:06:02 info: Create viewer transport successfully executed -2026-01-09 17:06:02 info: Create viewer transport listner successfully executed -2026-01-09 17:06:02 info: Consume lister started -2026-01-09 17:06:02 info: Consume media started -2026-01-09 17:06:02 info: Get room started -2026-01-09 17:06:02 info: Get room executed successfully -2026-01-09 17:06:02 info: Get room started -2026-01-09 17:06:02 info: Get room executed successfully -2026-01-09 17:06:02 info: Get room started -2026-01-09 17:06:02 info: Get room executed successfully -2026-01-09 17:06:02 info: Viewer media consume successfully executed -2026-01-09 17:06:02 info: Consume lister executed successfully -2026-01-09 17:06:02 info: Connect consumer listner started -2026-01-09 17:06:02 info: Connect consumer started -2026-01-09 17:06:02 info: Get room started -2026-01-09 17:06:02 info: Get room executed successfully -2026-01-09 17:06:02 info: Connect consumer executed successfully -2026-01-09 17:06:02 info: Connect consumer listner executed successfully -2026-01-09 17:06:02 info: Resume consumer listner started -2026-01-09 17:06:02 info: Resume consumer started -2026-01-09 17:06:02 info: Resume consumer successfully executed -2026-01-09 17:06:02 info: Resume consumer listner executed successfully -2026-01-09 17:06:02 info: Resume consumer listner started -2026-01-09 17:06:02 info: Resume consumer started -2026-01-09 17:06:02 info: Resume consumer successfully executed -2026-01-09 17:06:02 info: Resume consumer listner executed successfully -2026-01-09 17:06:49 info: User disconnected Bqtk4Nvq76rSKU6IAAAN beacuse of transport close -2026-01-09 17:06:49 info: Client connected: RRzD-ZsffN6HP2vpAAAP -2026-01-09 17:06:50 info: Join as viewer listner started -2026-01-09 17:06:50 info: Join as viewer started -2026-01-09 17:06:50 info: Get room started -2026-01-09 17:06:50 error: Room not found -2026-01-09 17:06:50 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at joinAsViewer (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/viewer.handler.ts:18:25) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:20:25) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-09 17:06:50 error: Room does not exist with let remoteVideoEl; let remoteAudioEl; socket.on("consumerCreated", async (consumers) => { if (!consumerTransport) return; if (!Array.isArray(consumers)) return; for (const params of consumers) { const consumer = await consumerTransport.consume({ id: params.id, producerId: params.producerId, kind: params.kind, rtpParameters: params.rtpParameters, paused: true }); await consumer.resume(); socket.emit("resumeConsumer", { consumerId: consumer.id }); if (consumer.kind === "video") { if (!remoteVideoEl) { remoteVideoEl = document.createElement("video"); remoteVideoEl.autoplay = true; remoteVideoEl.muted = true; remoteVideoEl.playsInline = true; remoteVideoEl.style.width = "100%"; remoteVideoEl.style.height = "100%"; document .getElementById("remoteVideoContainer") .appendChild(remoteVideoEl); } const stream = new MediaStream(); stream.addTrack(consumer.track); remoteVideoEl.srcObject = stream; consumer.track.onunmute = async () => { try { await remoteVideoEl.play(); } catch {} }; } if (consumer.kind === "audio") { if (!remoteAudioEl) { remoteAudioEl = document.createElement("audio"); remoteAudioEl.autoplay = true; remoteAudioEl.controls = true; document.body.appendChild(remoteAudioEl); } const stream = new MediaStream(); stream.addTrack(consumer.track); remoteAudioEl.srcObject = stream; } } }); -2026-01-09 17:06:50 info: Get room started -2026-01-09 17:06:50 error: Room not found -2026-01-09 17:06:50 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:23:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 17:06:50 error: Room router not found -2026-01-09 17:06:56 info: Join as viewer listner started -2026-01-09 17:06:56 info: Join as viewer started -2026-01-09 17:06:56 info: Get room started -2026-01-09 17:06:56 info: Get room executed successfully -2026-01-09 17:06:56 info: Join as viewer completed successfully -2026-01-09 17:06:56 info: Get room started -2026-01-09 17:06:56 info: Get room executed successfully -2026-01-09 17:06:56 info: Join viewer listner successfully executed -2026-01-09 17:06:56 info: Create viewer transport listner started -2026-01-09 17:06:56 info: Get room started -2026-01-09 17:06:56 info: Get room executed successfully -2026-01-09 17:06:56 info: Create viewer transport started -2026-01-09 17:06:56 info: Get room started -2026-01-09 17:06:56 info: Get room executed successfully -2026-01-09 17:06:56 info: Creation of webRTC transport started -2026-01-09 17:06:56 info: WebRTC Transport created : f25562db-1990-417d-94bc-08c7399fb237 -2026-01-09 17:06:56 info: Create viewer transport successfully executed -2026-01-09 17:06:56 info: Create viewer transport listner successfully executed -2026-01-09 17:06:56 info: Create viewer transport listner started -2026-01-09 17:06:56 info: Get room started -2026-01-09 17:06:56 info: Get room executed successfully -2026-01-09 17:06:56 info: Create viewer transport started -2026-01-09 17:06:56 info: Get room started -2026-01-09 17:06:56 info: Get room executed successfully -2026-01-09 17:06:56 info: Creation of webRTC transport started -2026-01-09 17:06:56 info: WebRTC Transport created : b551e5bb-2be4-44f6-b4af-78d3e6304ec3 -2026-01-09 17:06:56 info: Create viewer transport successfully executed -2026-01-09 17:06:56 info: Create viewer transport listner successfully executed -2026-01-09 17:06:56 info: Consume lister started -2026-01-09 17:06:56 info: Consume media started -2026-01-09 17:06:56 info: Get room started -2026-01-09 17:06:56 info: Get room executed successfully -2026-01-09 17:06:56 info: Get room started -2026-01-09 17:06:56 info: Get room executed successfully -2026-01-09 17:06:56 info: Get room started -2026-01-09 17:06:56 info: Get room executed successfully -2026-01-09 17:06:56 info: Viewer media consume successfully executed -2026-01-09 17:06:56 info: Consume lister executed successfully -2026-01-09 17:06:56 info: Consume lister started -2026-01-09 17:06:56 info: Consume media started -2026-01-09 17:06:56 info: Get room started -2026-01-09 17:06:56 info: Get room executed successfully -2026-01-09 17:06:56 info: Get room started -2026-01-09 17:06:56 info: Get room executed successfully -2026-01-09 17:06:56 info: Get room started -2026-01-09 17:06:56 info: Get room executed successfully -2026-01-09 17:06:56 info: Viewer media consume successfully executed -2026-01-09 17:06:56 info: Consume lister executed successfully -2026-01-09 17:06:56 info: Connect consumer listner started -2026-01-09 17:06:56 info: Connect consumer started -2026-01-09 17:06:56 info: Get room started -2026-01-09 17:06:56 info: Get room executed successfully -2026-01-09 17:06:56 info: Connect consumer executed successfully -2026-01-09 17:06:56 info: Connect consumer listner executed successfully -2026-01-09 17:06:56 info: Resume consumer listner started -2026-01-09 17:06:56 info: Resume consumer started -2026-01-09 17:06:56 info: Resume consumer successfully executed -2026-01-09 17:06:56 info: Resume consumer listner executed successfully -2026-01-09 17:06:56 info: Resume consumer listner started -2026-01-09 17:06:56 info: Resume consumer started -2026-01-09 17:06:56 info: Resume consumer successfully executed -2026-01-09 17:06:56 info: Resume consumer listner executed successfully -2026-01-09 17:06:56 info: Resume consumer listner started -2026-01-09 17:06:56 info: Resume consumer started -2026-01-09 17:06:56 info: Resume consumer successfully executed -2026-01-09 17:06:56 info: Resume consumer listner executed successfully -2026-01-09 17:06:56 info: Resume consumer listner started -2026-01-09 17:06:56 info: Resume consumer started -2026-01-09 17:06:56 info: Resume consumer successfully executed -2026-01-09 17:06:56 info: Resume consumer listner executed successfully -2026-01-09 17:07:00 info: User disconnected RRzD-ZsffN6HP2vpAAAP beacuse of transport close -2026-01-09 17:07:00 info: Client connected: Z_135bF7RMsn6uGqAAAR -2026-01-09 17:07:01 info: User disconnected Z_135bF7RMsn6uGqAAAR beacuse of transport close -2026-01-09 17:07:01 info: Client connected: PsA3elVbzl1f73HjAAAT -2026-01-09 17:07:05 info: Join as viewer listner started -2026-01-09 17:07:05 info: Join as viewer started -2026-01-09 17:07:05 info: Get room started -2026-01-09 17:07:05 info: Get room executed successfully -2026-01-09 17:07:05 info: Join as viewer completed successfully -2026-01-09 17:07:05 info: Get room started -2026-01-09 17:07:05 info: Get room executed successfully -2026-01-09 17:07:05 info: Join viewer listner successfully executed -2026-01-09 17:07:05 info: Create viewer transport listner started -2026-01-09 17:07:05 info: Get room started -2026-01-09 17:07:05 info: Get room executed successfully -2026-01-09 17:07:05 info: Create viewer transport started -2026-01-09 17:07:05 info: Get room started -2026-01-09 17:07:05 info: Get room executed successfully -2026-01-09 17:07:05 info: Creation of webRTC transport started -2026-01-09 17:07:05 info: WebRTC Transport created : e1f80b33-6c04-499c-a532-ba4a5fe221bf -2026-01-09 17:07:05 info: Create viewer transport successfully executed -2026-01-09 17:07:05 info: Create viewer transport listner successfully executed -2026-01-09 17:07:05 info: Consume lister started -2026-01-09 17:07:05 info: Consume media started -2026-01-09 17:07:05 info: Get room started -2026-01-09 17:07:05 info: Get room executed successfully -2026-01-09 17:07:05 info: Get room started -2026-01-09 17:07:05 info: Get room executed successfully -2026-01-09 17:07:05 info: Get room started -2026-01-09 17:07:05 info: Get room executed successfully -2026-01-09 17:07:05 info: Viewer media consume successfully executed -2026-01-09 17:07:05 info: Consume lister executed successfully -2026-01-09 17:07:05 info: Connect consumer listner started -2026-01-09 17:07:05 info: Connect consumer started -2026-01-09 17:07:05 info: Get room started -2026-01-09 17:07:05 info: Get room executed successfully -2026-01-09 17:07:05 info: Connect consumer executed successfully -2026-01-09 17:07:05 info: Connect consumer listner executed successfully -2026-01-09 17:07:05 info: Resume consumer listner started -2026-01-09 17:07:05 info: Resume consumer started -2026-01-09 17:07:05 info: Resume consumer successfully executed -2026-01-09 17:07:05 info: Resume consumer listner executed successfully -2026-01-09 17:07:05 info: Resume consumer listner started -2026-01-09 17:07:05 info: Resume consumer started -2026-01-09 17:07:05 info: Resume consumer successfully executed -2026-01-09 17:07:05 info: Resume consumer listner executed successfully -2026-01-09 17:09:12 info: Client connected: BRk6ivejAC_329vfAAAB -2026-01-09 17:09:13 info: Client connected: mjJcMUW414go29cyAAAD -2026-01-09 17:09:20 info: Create room listner started -2026-01-09 17:09:20 info: Create room started -2026-01-09 17:09:20 info: Creating worker started -2026-01-09 17:09:20 info: Creation of worker successfully executed -2026-01-09 17:09:20 info: Creation of router started -2026-01-09 17:09:20 info: Router created for room: 213f9f09-fe45-49a2-ac5b-1cfdbdf86811 -2026-01-09 17:09:20 info: Creation of webRtc server started -2026-01-09 17:09:20 info: WebRTC Server created successfully -2026-01-09 17:09:20 info: Creation of room successfully executed -2026-01-09 17:09:20 info: Add broadcaster started -2026-01-09 17:09:20 info: Get room started -2026-01-09 17:09:20 info: Get room executed successfully -2026-01-09 17:09:20 info: Added broadcaster into memory room -2026-01-09 17:09:20 info: Get room started -2026-01-09 17:09:20 info: Get room executed successfully -2026-01-09 17:09:20 info: Broadcaster created successfully -2026-01-09 17:09:20 info: Create room listner exceuted successfully -2026-01-09 17:09:21 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 17:09:21 info: Get room started -2026-01-09 17:09:21 info: Get room executed successfully -2026-01-09 17:09:21 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 17:09:21 info: Create broadcaster lister started -2026-01-09 17:09:21 info: Get room started -2026-01-09 17:09:21 info: Get room executed successfully -2026-01-09 17:09:21 info: Creation of webRTC transport started -2026-01-09 17:09:21 info: WebRTC Transport created : 5b9fddb2-9613-46ef-9e1d-f5c8b2115df6 -2026-01-09 17:09:21 info: Save broadcaster transport executed successfully -2026-01-09 17:09:21 info: Connect broadcaster transport lister started -2026-01-09 17:09:21 info: Get room started -2026-01-09 17:09:21 info: Get room executed successfully -2026-01-09 17:09:21 info: Connect broadcaster transport executed successfully -2026-01-09 17:09:21 info: Producer listener started -2026-01-09 17:09:21 info: Get room started -2026-01-09 17:09:21 info: Get room executed successfully -2026-01-09 17:09:21 info: Producer listener executed successfully: -2026-01-09 17:09:21 info: Producer listener started -2026-01-09 17:09:21 info: Get room started -2026-01-09 17:09:21 info: Get room executed successfully -2026-01-09 17:09:21 info: Producer listener executed successfully: -2026-01-09 17:09:25 info: Join as viewer listner started -2026-01-09 17:09:25 info: Join as viewer started -2026-01-09 17:09:25 info: Get room started -2026-01-09 17:09:25 info: Get room executed successfully -2026-01-09 17:09:25 info: Join as viewer completed successfully -2026-01-09 17:09:25 info: Get room started -2026-01-09 17:09:25 info: Get room executed successfully -2026-01-09 17:09:25 info: Join viewer listner successfully executed -2026-01-09 17:09:25 info: Create viewer transport listner started -2026-01-09 17:09:25 info: Get room started -2026-01-09 17:09:25 info: Get room executed successfully -2026-01-09 17:09:25 info: Create viewer transport started -2026-01-09 17:09:25 info: Get room started -2026-01-09 17:09:25 info: Get room executed successfully -2026-01-09 17:09:25 info: Creation of webRTC transport started -2026-01-09 17:09:25 info: WebRTC Transport created : 611a6448-1211-42f1-9220-d91deeaf2050 -2026-01-09 17:09:25 info: Create viewer transport successfully executed -2026-01-09 17:09:25 info: Create viewer transport listner successfully executed -2026-01-09 17:09:25 info: Consume lister started -2026-01-09 17:09:25 info: Consume media started -2026-01-09 17:09:25 info: Get room started -2026-01-09 17:09:25 info: Get room executed successfully -2026-01-09 17:09:25 info: Get room started -2026-01-09 17:09:25 info: Get room executed successfully -2026-01-09 17:09:25 info: Get room started -2026-01-09 17:09:25 info: Get room executed successfully -2026-01-09 17:09:25 info: Viewer media consume successfully executed -2026-01-09 17:09:26 info: Consume lister executed successfully -2026-01-09 17:09:26 info: Connect consumer listner started -2026-01-09 17:09:26 info: Connect consumer started -2026-01-09 17:09:26 info: Get room started -2026-01-09 17:09:26 info: Get room executed successfully -2026-01-09 17:09:26 info: Connect consumer executed successfully -2026-01-09 17:09:26 info: Connect consumer listner executed successfully -2026-01-09 17:09:26 info: Resume consumer listner started -2026-01-09 17:09:26 info: Resume consumer started -2026-01-09 17:09:26 info: Resume consumer successfully executed -2026-01-09 17:09:26 info: Resume consumer listner executed successfully -2026-01-09 17:09:26 info: Resume consumer listner started -2026-01-09 17:09:26 info: Resume consumer started -2026-01-09 17:09:26 info: Resume consumer successfully executed -2026-01-09 17:09:26 info: Resume consumer listner executed successfully -2026-01-09 17:10:09 info: User disconnected BRk6ivejAC_329vfAAAB beacuse of transport close -2026-01-09 17:10:09 info: Client connected: mwPELKFdnsSsJZBVAAAF -2026-01-09 17:10:10 info: User disconnected mjJcMUW414go29cyAAAD beacuse of transport close -2026-01-09 17:10:10 info: Client connected: qBh7YqCqchr6TU-NAAAH -2026-01-09 17:12:50 info: Client connected: -nl-qHRQjf3WX01EAAAB -2026-01-09 17:12:52 info: Client connected: 5ALzs9MPtaf5HSNoAAAD -2026-01-09 17:12:52 info: User disconnected 5ALzs9MPtaf5HSNoAAAD beacuse of transport close -2026-01-09 17:12:53 info: Client connected: 73Pk8vqvCa907477AAAF -2026-01-09 17:12:53 info: User disconnected -nl-qHRQjf3WX01EAAAB beacuse of transport close -2026-01-09 17:12:53 info: Client connected: HqapgZyXetAZ0BJpAAAH -2026-01-09 17:12:54 info: Create room listner started -2026-01-09 17:12:54 info: Create room started -2026-01-09 17:12:54 info: Creating worker started -2026-01-09 17:12:54 info: Creation of worker successfully executed -2026-01-09 17:12:54 info: Creation of router started -2026-01-09 17:12:54 info: Router created for room: 3c3b3aa6-5ae3-47df-ba2f-d285081ad692 -2026-01-09 17:12:54 info: Creation of webRtc server started -2026-01-09 17:12:54 info: WebRTC Server created successfully -2026-01-09 17:12:54 info: Creation of room successfully executed -2026-01-09 17:12:54 info: Add broadcaster started -2026-01-09 17:12:54 info: Get room started -2026-01-09 17:12:54 info: Get room executed successfully -2026-01-09 17:12:54 info: Added broadcaster into memory room -2026-01-09 17:12:54 info: Get room started -2026-01-09 17:12:54 info: Get room executed successfully -2026-01-09 17:12:54 info: Broadcaster created successfully -2026-01-09 17:12:54 info: Create room listner exceuted successfully -2026-01-09 17:12:55 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 17:12:55 info: Get room started -2026-01-09 17:12:55 info: Get room executed successfully -2026-01-09 17:12:55 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 17:12:55 info: Create broadcaster lister started -2026-01-09 17:12:55 info: Get room started -2026-01-09 17:12:55 info: Get room executed successfully -2026-01-09 17:12:55 info: Creation of webRTC transport started -2026-01-09 17:12:55 info: WebRTC Transport created : 5a291e57-c941-43ec-966f-5c55fa9b9faa -2026-01-09 17:12:55 info: Save broadcaster transport executed successfully -2026-01-09 17:12:55 info: Connect broadcaster transport lister started -2026-01-09 17:12:55 info: Get room started -2026-01-09 17:12:55 info: Get room executed successfully -2026-01-09 17:12:55 info: Connect broadcaster transport executed successfully -2026-01-09 17:12:55 info: Producer listener started -2026-01-09 17:12:55 info: Get room started -2026-01-09 17:12:55 info: Get room executed successfully -2026-01-09 17:12:55 info: Producer listener executed successfully: -2026-01-09 17:12:55 info: Producer listener started -2026-01-09 17:12:55 info: Get room started -2026-01-09 17:12:55 info: Get room executed successfully -2026-01-09 17:12:55 info: Producer listener executed successfully: -2026-01-09 17:12:58 info: Join as viewer listner started -2026-01-09 17:12:58 info: Join as viewer started -2026-01-09 17:12:58 info: Get room started -2026-01-09 17:12:58 info: Get room executed successfully -2026-01-09 17:12:58 info: Join as viewer completed successfully -2026-01-09 17:12:58 info: Get room started -2026-01-09 17:12:58 info: Get room executed successfully -2026-01-09 17:12:58 info: Join viewer listner successfully executed -2026-01-09 17:12:58 info: Create viewer transport listner started -2026-01-09 17:12:58 info: Get room started -2026-01-09 17:12:58 info: Get room executed successfully -2026-01-09 17:12:58 info: Create viewer transport started -2026-01-09 17:12:58 info: Get room started -2026-01-09 17:12:58 info: Get room executed successfully -2026-01-09 17:12:58 info: Creation of webRTC transport started -2026-01-09 17:12:58 info: WebRTC Transport created : 7c643b9b-e955-4467-a012-8c608e449951 -2026-01-09 17:12:58 info: Create viewer transport successfully executed -2026-01-09 17:12:58 info: Create viewer transport listner successfully executed -2026-01-09 17:12:58 info: Consume lister started -2026-01-09 17:12:58 info: Consume media started -2026-01-09 17:12:58 info: Get room started -2026-01-09 17:12:58 info: Get room executed successfully -2026-01-09 17:12:58 info: Get room started -2026-01-09 17:12:58 info: Get room executed successfully -2026-01-09 17:12:58 info: Get room started -2026-01-09 17:12:58 info: Get room executed successfully -2026-01-09 17:12:58 info: Viewer media consume successfully executed -2026-01-09 17:12:58 info: Consume lister executed successfully -2026-01-09 17:12:58 info: Connect consumer listner started -2026-01-09 17:12:58 info: Connect consumer started -2026-01-09 17:12:58 info: Get room started -2026-01-09 17:12:58 info: Get room executed successfully -2026-01-09 17:12:58 info: Connect consumer executed successfully -2026-01-09 17:12:58 info: Connect consumer listner executed successfully -2026-01-09 17:12:58 info: Resume consumer listner started -2026-01-09 17:12:58 info: Resume consumer started -2026-01-09 17:12:58 info: Resume consumer successfully executed -2026-01-09 17:12:58 info: Resume consumer listner executed successfully -2026-01-09 17:12:58 info: Resume consumer listner started -2026-01-09 17:12:58 info: Resume consumer started -2026-01-09 17:12:58 info: Resume consumer successfully executed -2026-01-09 17:12:58 info: Resume consumer listner executed successfully -2026-01-09 17:14:11 info: User disconnected 73Pk8vqvCa907477AAAF beacuse of transport close -2026-01-09 17:14:11 info: Client connected: hGfcDm5EZpX8ICENAAAJ -2026-01-09 17:14:12 info: Join as viewer listner started -2026-01-09 17:14:12 info: Join as viewer started -2026-01-09 17:14:12 info: Get room started -2026-01-09 17:14:12 info: Get room executed successfully -2026-01-09 17:14:12 info: Join as viewer completed successfully -2026-01-09 17:14:12 info: Get room started -2026-01-09 17:14:12 info: Get room executed successfully -2026-01-09 17:14:12 info: Join viewer listner successfully executed -2026-01-09 17:14:12 info: Create viewer transport listner started -2026-01-09 17:14:12 info: Get room started -2026-01-09 17:14:12 info: Get room executed successfully -2026-01-09 17:14:12 info: Create viewer transport started -2026-01-09 17:14:12 info: Get room started -2026-01-09 17:14:12 info: Get room executed successfully -2026-01-09 17:14:12 info: Creation of webRTC transport started -2026-01-09 17:14:12 info: WebRTC Transport created : 3c3d5439-02a9-4818-8cdb-208a50c16737 -2026-01-09 17:14:12 info: Create viewer transport successfully executed -2026-01-09 17:14:12 info: Create viewer transport listner successfully executed -2026-01-09 17:14:12 info: Consume lister started -2026-01-09 17:14:12 info: Consume media started -2026-01-09 17:14:12 info: Get room started -2026-01-09 17:14:12 info: Get room executed successfully -2026-01-09 17:14:12 info: Get room started -2026-01-09 17:14:12 info: Get room executed successfully -2026-01-09 17:14:12 info: Get room started -2026-01-09 17:14:12 info: Get room executed successfully -2026-01-09 17:14:12 info: Viewer media consume successfully executed -2026-01-09 17:14:12 info: Consume lister executed successfully -2026-01-09 17:14:12 info: Connect consumer listner started -2026-01-09 17:14:12 info: Connect consumer started -2026-01-09 17:14:12 info: Get room started -2026-01-09 17:14:12 info: Get room executed successfully -2026-01-09 17:14:12 info: Connect consumer executed successfully -2026-01-09 17:14:12 info: Connect consumer listner executed successfully -2026-01-09 17:14:12 info: Resume consumer listner started -2026-01-09 17:14:12 info: Resume consumer started -2026-01-09 17:14:12 info: Resume consumer successfully executed -2026-01-09 17:14:12 info: Resume consumer listner executed successfully -2026-01-09 17:14:12 info: Resume consumer listner started -2026-01-09 17:14:12 info: Resume consumer started -2026-01-09 17:14:12 info: Resume consumer successfully executed -2026-01-09 17:14:12 info: Resume consumer listner executed successfully -2026-01-09 17:15:55 info: User disconnected HqapgZyXetAZ0BJpAAAH beacuse of transport close -2026-01-09 17:15:55 info: Client connected: yYsl-owRRhMuJpSJAAAL -2026-01-09 17:15:56 info: User disconnected hGfcDm5EZpX8ICENAAAJ beacuse of transport close -2026-01-09 17:15:56 info: Client connected: jcJV78JdcIoOan8UAAAN -2026-01-09 17:18:48 info: Client connected: WHv0_05O7765YbrSAAAB -2026-01-09 17:18:49 info: Client connected: d_reINTzIE_CelS7AAAD -2026-01-09 17:18:51 info: Create room listner started -2026-01-09 17:18:51 info: Create room started -2026-01-09 17:18:51 info: Creating worker started -2026-01-09 17:18:51 info: Creation of worker successfully executed -2026-01-09 17:18:51 info: Creation of router started -2026-01-09 17:18:51 info: Router created for room: 59dfa514-7c5c-4cf5-8642-16997b800d0d -2026-01-09 17:18:51 info: Creation of webRtc server started -2026-01-09 17:18:51 info: WebRTC Server created successfully -2026-01-09 17:18:51 info: Creation of room successfully executed -2026-01-09 17:18:51 info: Add broadcaster started -2026-01-09 17:18:51 info: Get room started -2026-01-09 17:18:51 info: Get room executed successfully -2026-01-09 17:18:51 info: Added broadcaster into memory room -2026-01-09 17:18:51 info: Get room started -2026-01-09 17:18:51 info: Get room executed successfully -2026-01-09 17:18:51 info: Broadcaster created successfully -2026-01-09 17:18:51 info: Create room listner exceuted successfully -2026-01-09 17:18:52 info: Get getRouterRtpCapabilities socket lister started -2026-01-09 17:18:52 info: Get room started -2026-01-09 17:18:52 info: Get room executed successfully -2026-01-09 17:18:52 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-09 17:18:52 info: Create broadcaster lister started -2026-01-09 17:18:52 info: Get room started -2026-01-09 17:18:52 info: Get room executed successfully -2026-01-09 17:18:52 info: Creation of webRTC transport started -2026-01-09 17:18:52 info: WebRTC Transport created : 324b4d11-d946-405c-93a5-443d33dda15d -2026-01-09 17:18:52 info: Save broadcaster transport executed successfully -2026-01-09 17:18:52 info: Connect broadcaster transport lister started -2026-01-09 17:18:52 info: Get room started -2026-01-09 17:18:52 info: Get room executed successfully -2026-01-09 17:18:52 info: Connect broadcaster transport executed successfully -2026-01-09 17:18:52 info: Producer listener started -2026-01-09 17:18:52 info: Get room started -2026-01-09 17:18:52 info: Get room executed successfully -2026-01-09 17:18:52 info: Producer listener executed successfully: -2026-01-09 17:18:52 info: Producer listener started -2026-01-09 17:18:52 info: Get room started -2026-01-09 17:18:52 info: Get room executed successfully -2026-01-09 17:18:52 info: Producer listener executed successfully: -2026-01-09 17:18:55 info: Join as viewer listner started -2026-01-09 17:18:55 info: Join as viewer started -2026-01-09 17:18:55 info: Get room started -2026-01-09 17:18:55 info: Get room executed successfully -2026-01-09 17:18:55 info: Join as viewer completed successfully -2026-01-09 17:18:55 info: Get room started -2026-01-09 17:18:55 info: Get room executed successfully -2026-01-09 17:18:55 info: Join viewer listner successfully executed -2026-01-09 17:18:55 info: Create viewer transport listner started -2026-01-09 17:18:55 info: Get room started -2026-01-09 17:18:55 info: Get room executed successfully -2026-01-09 17:18:55 info: Create viewer transport started -2026-01-09 17:18:55 info: Get room started -2026-01-09 17:18:55 info: Get room executed successfully -2026-01-09 17:18:55 info: Creation of webRTC transport started -2026-01-09 17:18:55 info: WebRTC Transport created : 2f2eb9d5-8759-40c6-ae46-a44658efaa44 -2026-01-09 17:18:55 info: Create viewer transport successfully executed -2026-01-09 17:18:55 info: Create viewer transport listner successfully executed -2026-01-09 17:18:55 info: Consume lister started -2026-01-09 17:18:55 info: Consume media started -2026-01-09 17:18:55 info: Get room started -2026-01-09 17:18:55 info: Get room executed successfully -2026-01-09 17:18:55 info: Get room started -2026-01-09 17:18:55 info: Get room executed successfully -2026-01-09 17:18:55 info: Get room started -2026-01-09 17:18:55 info: Get room executed successfully -2026-01-09 17:18:55 info: Viewer media consume successfully executed -2026-01-09 17:18:55 info: Consume lister executed successfully -2026-01-09 17:18:55 info: Connect consumer listner started -2026-01-09 17:18:55 info: Connect consumer started -2026-01-09 17:18:55 info: Get room started -2026-01-09 17:18:55 info: Get room executed successfully -2026-01-09 17:18:55 info: Connect consumer executed successfully -2026-01-09 17:18:55 info: Connect consumer listner executed successfully -2026-01-09 17:18:55 info: Resume consumer listner started -2026-01-09 17:18:55 info: Resume consumer started -2026-01-09 17:18:55 info: Resume consumer successfully executed -2026-01-09 17:18:55 info: Resume consumer listner executed successfully -2026-01-09 17:18:55 info: Resume consumer listner started -2026-01-09 17:18:55 info: Resume consumer started -2026-01-09 17:18:55 info: Resume consumer successfully executed -2026-01-09 17:18:55 info: Resume consumer listner executed successfully -2026-01-09 17:19:48 info: User disconnected WHv0_05O7765YbrSAAAB beacuse of transport close -2026-01-09 17:19:48 info: User disconnected d_reINTzIE_CelS7AAAD beacuse of transport close -2026-01-11 11:57:16 info: Client connected: vJ6zJhXMBHnsni_hAAAB -2026-01-11 11:57:17 info: Create room listner started -2026-01-11 11:57:17 info: Create room started -2026-01-11 11:57:17 info: Creating worker started -2026-01-11 11:57:17 info: Creation of worker successfully executed -2026-01-11 11:57:17 info: Creation of router started -2026-01-11 11:57:17 info: Router created for room: 5ec62457-ba6b-4478-9b22-e9a0d327851b -2026-01-11 11:57:17 info: Creation of webRtc server started -2026-01-11 11:57:17 info: WebRTC Server created successfully -2026-01-11 11:57:17 info: Creation of room successfully executed -2026-01-11 11:57:17 info: Add broadcaster started -2026-01-11 11:57:17 info: Get room started -2026-01-11 11:57:17 info: Get room executed successfully -2026-01-11 11:57:17 info: Added broadcaster into memory room -2026-01-11 11:57:17 info: Get room started -2026-01-11 11:57:17 info: Get room executed successfully -2026-01-11 11:57:17 info: Broadcaster created successfully -2026-01-11 11:57:17 info: Create room listner exceuted successfully -2026-01-11 11:57:18 info: Get getRouterRtpCapabilities socket lister started -2026-01-11 11:57:18 info: Get room started -2026-01-11 11:57:18 info: Get room executed successfully -2026-01-11 11:57:18 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-11 11:57:18 info: Create broadcaster lister started -2026-01-11 11:57:18 info: Get room started -2026-01-11 11:57:18 info: Get room executed successfully -2026-01-11 11:57:18 info: Creation of webRTC transport started -2026-01-11 11:57:18 info: WebRTC Transport created : c4b4a24c-660b-44e8-b037-0292d0987231 -2026-01-11 11:57:18 info: Save broadcaster transport executed successfully -2026-01-11 11:57:18 info: Connect broadcaster transport lister started -2026-01-11 11:57:18 info: Get room started -2026-01-11 11:57:18 info: Get room executed successfully -2026-01-11 11:57:18 info: Connect broadcaster transport executed successfully -2026-01-11 11:57:18 info: Producer listener started -2026-01-11 11:57:18 info: Get room started -2026-01-11 11:57:18 info: Get room executed successfully -2026-01-11 11:57:18 info: Producer listener executed successfully: -2026-01-11 11:57:18 info: Producer listener started -2026-01-11 11:57:18 info: Get room started -2026-01-11 11:57:18 info: Get room executed successfully -2026-01-11 11:57:18 info: Producer listener executed successfully: -2026-01-11 11:57:25 info: Client connected: quHe-DoJZ5fQJbUuAAAD -2026-01-11 11:57:28 info: Join as viewer listner started -2026-01-11 11:57:28 info: Join as viewer started -2026-01-11 11:57:28 info: Get room started -2026-01-11 11:57:28 info: Get room executed successfully -2026-01-11 11:57:28 info: Join as viewer completed successfully -2026-01-11 11:57:28 info: Get room started -2026-01-11 11:57:28 info: Get room executed successfully -2026-01-11 11:57:28 info: Join viewer listner successfully executed -2026-01-11 11:58:14 info: User disconnected quHe-DoJZ5fQJbUuAAAD beacuse of transport close -2026-01-11 11:58:14 info: Client connected: pRLZNIOKoyZkY58OAAAF -2026-01-11 11:58:17 info: Join as viewer listner started -2026-01-11 11:58:17 info: Join as viewer started -2026-01-11 11:58:17 info: Get room started -2026-01-11 11:58:17 info: Get room executed successfully -2026-01-11 11:58:17 info: Join as viewer completed successfully -2026-01-11 11:58:17 info: Get room started -2026-01-11 11:58:17 info: Get room executed successfully -2026-01-11 11:58:17 info: Join viewer listner successfully executed -2026-01-11 11:59:31 info: User disconnected vJ6zJhXMBHnsni_hAAAB beacuse of transport close -2026-01-11 11:59:31 info: Client connected: 3wKDbTczOEJZ6CqBAAAH -2026-01-11 11:59:32 info: Create room listner started -2026-01-11 11:59:32 info: Create room started -2026-01-11 11:59:32 info: Creating worker started -2026-01-11 11:59:32 info: Creation of worker successfully executed -2026-01-11 11:59:32 info: Creation of router started -2026-01-11 11:59:32 info: Router created for room: 99dce8f9-366c-45f5-ad52-1c295f8e743d -2026-01-11 11:59:32 info: Creation of webRtc server started -2026-01-11 11:59:32 info: WebRTC Server created successfully -2026-01-11 11:59:32 info: Creation of room successfully executed -2026-01-11 11:59:32 info: Add broadcaster started -2026-01-11 11:59:32 info: Get room started -2026-01-11 11:59:32 info: Get room executed successfully -2026-01-11 11:59:32 info: Added broadcaster into memory room -2026-01-11 11:59:32 info: Get room started -2026-01-11 11:59:32 info: Get room executed successfully -2026-01-11 11:59:32 info: Broadcaster created successfully -2026-01-11 11:59:32 info: Create room listner exceuted successfully -2026-01-11 11:59:33 info: Get getRouterRtpCapabilities socket lister started -2026-01-11 11:59:33 info: Get room started -2026-01-11 11:59:33 info: Get room executed successfully -2026-01-11 11:59:33 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-11 11:59:33 info: Create broadcaster lister started -2026-01-11 11:59:33 info: Get room started -2026-01-11 11:59:33 info: Get room executed successfully -2026-01-11 11:59:33 info: Creation of webRTC transport started -2026-01-11 11:59:33 info: WebRTC Transport created : 30a06400-1a32-4c8e-b888-2ea8ba2ae116 -2026-01-11 11:59:33 info: Save broadcaster transport executed successfully -2026-01-11 11:59:33 info: Connect broadcaster transport lister started -2026-01-11 11:59:33 info: Get room started -2026-01-11 11:59:33 info: Get room executed successfully -2026-01-11 11:59:33 info: Connect broadcaster transport executed successfully -2026-01-11 11:59:33 info: Producer listener started -2026-01-11 11:59:33 info: Get room started -2026-01-11 11:59:33 info: Get room executed successfully -2026-01-11 11:59:33 info: Producer listener executed successfully: -2026-01-11 11:59:33 info: Producer listener started -2026-01-11 11:59:33 info: Get room started -2026-01-11 11:59:33 info: Get room executed successfully -2026-01-11 11:59:33 info: Producer listener executed successfully: -2026-01-11 11:59:41 info: Join as viewer listner started -2026-01-11 11:59:41 info: Join as viewer started -2026-01-11 11:59:41 info: Get room started -2026-01-11 11:59:41 info: Get room executed successfully -2026-01-11 11:59:41 info: Join as viewer completed successfully -2026-01-11 11:59:41 info: Get room started -2026-01-11 11:59:41 info: Get room executed successfully -2026-01-11 11:59:41 info: Join viewer listner successfully executed -2026-01-11 11:59:48 info: User disconnected pRLZNIOKoyZkY58OAAAF beacuse of transport close -2026-01-11 11:59:49 info: User disconnected 3wKDbTczOEJZ6CqBAAAH beacuse of transport close -2026-01-11 14:38:29 info: Client connected: _yOgUw3-8bgccnFfAAAB -2026-01-11 14:38:31 info: User disconnected _yOgUw3-8bgccnFfAAAB beacuse of transport close -2026-01-11 14:38:36 info: Client connected: ep5YUthN9rx-BL3SAAAD -2026-01-11 14:38:38 info: Create room listner started -2026-01-11 14:38:38 info: Create room started -2026-01-11 14:38:38 info: Creating worker started -2026-01-11 14:38:38 info: Creation of worker successfully executed -2026-01-11 14:38:38 info: Creation of router started -2026-01-11 14:38:38 info: Router created for room: 3ca943bf-25aa-41aa-a08d-9d5038d19284 -2026-01-11 14:38:38 info: Creation of webRtc server started -2026-01-11 14:38:38 info: WebRTC Server created successfully -2026-01-11 14:38:38 info: Creation of room successfully executed -2026-01-11 14:38:38 info: Add broadcaster started -2026-01-11 14:38:38 info: Get room started -2026-01-11 14:38:38 info: Get room executed successfully -2026-01-11 14:38:38 info: Added broadcaster into memory room -2026-01-11 14:38:38 info: Broadcaster created successfully -2026-01-11 14:38:38 info: Create room listner exceuted successfully -2026-01-11 23:04:22 info: Client connected: 7zDS_70RQUivzEkqAAAB -2026-01-11 23:04:22 info: Client connected: x1iKIj0Trq7iDWL_AAAD -2026-01-11 23:04:26 info: Create room listner started -2026-01-11 23:04:26 info: Create room started -2026-01-11 23:04:26 info: Creating worker started -2026-01-11 23:04:26 info: Creation of worker successfully executed -2026-01-11 23:04:26 info: Creation of router started -2026-01-11 23:04:26 info: Router created for room: 31281c12-af6b-416a-9cd0-c32e355ad6fb -2026-01-11 23:04:26 info: Creation of webRtc server started -2026-01-11 23:04:26 info: WebRTC Server created successfully -2026-01-11 23:04:26 info: Creation of room successfully executed -2026-01-11 23:04:26 info: Add broadcaster started -2026-01-11 23:04:26 info: Get room started -2026-01-11 23:04:26 info: Get room executed successfully -2026-01-11 23:04:26 info: Added broadcaster into memory room -2026-01-11 23:04:26 info: Broadcaster created successfully -2026-01-11 23:04:26 info: Create room listner exceuted successfully -2026-01-11 23:04:27 info: Get getRouterRtpCapabilities socket lister started -2026-01-11 23:04:27 info: Get room started -2026-01-11 23:04:27 info: Get room executed successfully -2026-01-11 23:04:27 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-11 23:04:33 info: Get getRouterRtpCapabilities socket lister started -2026-01-11 23:04:33 info: Get room started -2026-01-11 23:04:33 info: Get room executed successfully -2026-01-11 23:04:33 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-11 23:04:59 info: Get getRouterRtpCapabilities socket lister started -2026-01-11 23:04:59 info: Get room started -2026-01-11 23:04:59 info: Get room executed successfully -2026-01-11 23:04:59 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-11 23:05:01 info: Get getRouterRtpCapabilities socket lister started -2026-01-11 23:05:01 info: Get room started -2026-01-11 23:05:01 info: Get room executed successfully -2026-01-11 23:05:01 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-11 23:05:02 info: Get getRouterRtpCapabilities socket lister started -2026-01-11 23:05:02 info: Get room started -2026-01-11 23:05:02 info: Get room executed successfully -2026-01-11 23:05:02 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-11 23:05:02 info: Get getRouterRtpCapabilities socket lister started -2026-01-11 23:05:02 info: Get room started -2026-01-11 23:05:02 info: Get room executed successfully -2026-01-11 23:05:02 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-11 23:05:03 info: Get getRouterRtpCapabilities socket lister started -2026-01-11 23:05:03 info: Get room started -2026-01-11 23:05:03 info: Get room executed successfully -2026-01-11 23:05:03 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-11 23:05:03 info: Get getRouterRtpCapabilities socket lister started -2026-01-11 23:05:03 info: Get room started -2026-01-11 23:05:03 info: Get room executed successfully -2026-01-11 23:05:03 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-11 23:05:03 info: Get getRouterRtpCapabilities socket lister started -2026-01-11 23:05:03 info: Get room started -2026-01-11 23:05:03 info: Get room executed successfully -2026-01-11 23:05:03 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-11 23:05:03 info: Get getRouterRtpCapabilities socket lister started -2026-01-11 23:05:03 info: Get room started -2026-01-11 23:05:03 info: Get room executed successfully -2026-01-11 23:05:03 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-11 23:05:03 info: Get getRouterRtpCapabilities socket lister started -2026-01-11 23:05:03 info: Get room started -2026-01-11 23:05:03 info: Get room executed successfully -2026-01-11 23:05:03 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-11 23:05:03 info: Get getRouterRtpCapabilities socket lister started -2026-01-11 23:05:03 info: Get room started -2026-01-11 23:05:03 info: Get room executed successfully -2026-01-11 23:05:03 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-11 23:05:04 info: Get getRouterRtpCapabilities socket lister started -2026-01-11 23:05:04 info: Get room started -2026-01-11 23:05:04 info: Get room executed successfully -2026-01-11 23:05:04 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-11 23:05:04 info: Get getRouterRtpCapabilities socket lister started -2026-01-11 23:05:04 info: Get room started -2026-01-11 23:05:04 info: Get room executed successfully -2026-01-11 23:05:04 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-11 23:05:04 info: Get getRouterRtpCapabilities socket lister started -2026-01-11 23:05:04 info: Get room started -2026-01-11 23:05:04 info: Get room executed successfully -2026-01-11 23:05:04 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-11 23:05:04 info: Get getRouterRtpCapabilities socket lister started -2026-01-11 23:05:04 info: Get room started -2026-01-11 23:05:04 info: Get room executed successfully -2026-01-11 23:05:04 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-11 23:05:07 info: User disconnected 7zDS_70RQUivzEkqAAAB beacuse of ping timeout -2026-01-11 23:06:56 info: Client connected: FUzbPIg-4886o2C6AAAB -2026-01-11 23:07:27 info: Client connected: njWnKcvkcEZV31bjAAAB -2026-01-11 23:07:32 info: Create room listner started -2026-01-11 23:07:32 info: Create room started -2026-01-11 23:07:32 info: Creating worker started -2026-01-11 23:07:32 info: Creation of worker successfully executed -2026-01-11 23:07:32 info: Creation of router started -2026-01-11 23:07:32 info: Router created for room: 643a67b2-68b3-480d-85f5-1bd1b5b1cd16 -2026-01-11 23:07:32 info: Creation of webRtc server started -2026-01-11 23:07:32 info: WebRTC Server created successfully -2026-01-11 23:07:32 info: Creation of room successfully executed -2026-01-11 23:07:32 info: Add broadcaster started -2026-01-11 23:07:32 info: Get room started -2026-01-11 23:07:32 info: Get room executed successfully -2026-01-11 23:07:32 info: Added broadcaster into memory room -2026-01-11 23:07:32 info: Broadcaster created successfully -2026-01-11 23:07:32 info: Create room listner exceuted successfully -2026-01-11 23:07:35 info: Get getRouterRtpCapabilities socket lister started -2026-01-11 23:07:35 info: Get room started -2026-01-11 23:07:35 info: Get room executed successfully -2026-01-11 23:07:35 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-11 23:11:24 info: User disconnected njWnKcvkcEZV31bjAAAB beacuse of transport close -2026-01-11 23:11:24 info: Client connected: Axpq45zIWKPEkmwmAAAD -2026-01-11 23:11:25 info: Create room listner started -2026-01-11 23:11:25 info: Create room started -2026-01-11 23:11:25 info: Creating worker started -2026-01-11 23:11:25 info: Creation of worker successfully executed -2026-01-11 23:11:25 info: Creation of router started -2026-01-11 23:11:25 info: Router created for room: b23ba01a-ee76-42bb-ac54-5c40ec9072e9 -2026-01-11 23:11:25 info: Creation of webRtc server started -2026-01-11 23:11:25 info: WebRTC Server created successfully -2026-01-11 23:11:25 info: Creation of room successfully executed -2026-01-11 23:11:25 info: Add broadcaster started -2026-01-11 23:11:25 info: Get room started -2026-01-11 23:11:25 info: Get room executed successfully -2026-01-11 23:11:25 info: Added broadcaster into memory room -2026-01-11 23:11:25 info: Broadcaster created successfully -2026-01-11 23:11:25 info: Create room listner exceuted successfully -2026-01-11 23:11:26 info: Get getRouterRtpCapabilities socket lister started -2026-01-11 23:11:26 info: Get room started -2026-01-11 23:11:26 info: Get room executed successfully -2026-01-11 23:11:26 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-12 20:23:35 info: Client connected: gchr3RVSm1qfzJa4AAAB -2026-01-12 20:23:37 info: Create room listner started -2026-01-12 20:23:37 info: Create room started -2026-01-12 20:23:37 info: Creating worker started -2026-01-12 20:23:37 info: Creation of worker successfully executed -2026-01-12 20:23:37 info: Creation of router started -2026-01-12 20:23:37 info: Router created for room: 9890b89f-bcba-45b0-b621-ddd8ee1dae0c -2026-01-12 20:23:37 info: Creation of webRtc server started -2026-01-12 20:23:37 info: WebRTC Server created successfully -2026-01-12 20:23:37 info: Creation of room successfully executed -2026-01-12 20:23:37 info: Add broadcaster started -2026-01-12 20:23:37 info: Get room started -2026-01-12 20:23:37 info: Get room executed successfully -2026-01-12 20:23:37 info: Added broadcaster into memory room -2026-01-12 20:23:37 info: Broadcaster created successfully -2026-01-12 20:23:37 info: Create room listner exceuted successfully -2026-01-12 20:23:38 info: Get getRouterRtpCapabilities socket lister started -2026-01-12 20:23:38 info: Get room started -2026-01-12 20:23:38 info: Get room executed successfully -2026-01-12 20:23:38 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-12 20:23:39 info: Create broadcaster lister started -2026-01-12 20:23:39 info: Get room started -2026-01-12 20:23:39 info: Get room executed successfully -2026-01-12 20:23:39 info: Creation of webRTC transport started -2026-01-12 20:23:39 info: WebRTC Transport created : 0ddd8172-0026-4ade-b759-0d4b1ecc691d -2026-01-12 20:23:39 info: Save broadcaster transport executed successfully -2026-01-12 20:39:37 info: Client connected: dJbYu60lZuFydQlKAAAB -2026-01-12 20:39:41 info: Create room listner started -2026-01-12 20:39:41 info: Create room started -2026-01-12 20:39:41 info: Creating worker started -2026-01-12 20:39:41 info: Creation of worker successfully executed -2026-01-12 20:39:41 info: Creation of router started -2026-01-12 20:39:41 info: Router created for room: 085c272f-83dd-49e7-93ce-6c4a68d6e637 -2026-01-12 20:39:41 info: Creation of webRtc server started -2026-01-12 20:39:41 info: WebRTC Server created successfully -2026-01-12 20:39:41 info: Creation of room successfully executed -2026-01-12 20:39:41 info: Add broadcaster started -2026-01-12 20:39:41 info: Get room started -2026-01-12 20:39:41 info: Get room executed successfully -2026-01-12 20:39:41 info: Added broadcaster into memory room -2026-01-12 20:39:41 info: Broadcaster created successfully -2026-01-12 20:39:41 info: Create room listner exceuted successfully -2026-01-12 20:39:42 info: Get getRouterRtpCapabilities socket lister started -2026-01-12 20:39:42 info: Get room started -2026-01-12 20:39:42 info: Get room executed successfully -2026-01-12 20:39:42 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-12 20:39:45 info: Create broadcaster lister started -2026-01-12 20:39:45 info: Get room started -2026-01-12 20:39:45 info: Get room executed successfully -2026-01-12 20:39:45 info: Creation of webRTC transport started -2026-01-12 20:39:45 info: WebRTC Transport created : a51a2daa-5e03-4bad-b5eb-15451c8ab43e -2026-01-12 20:39:45 info: Save broadcaster transport executed successfully -2026-01-12 20:39:48 info: Connect broadcaster transport lister started -2026-01-12 20:39:48 info: Get room started -2026-01-12 20:39:48 info: Get room executed successfully -2026-01-12 20:39:48 info: Connect broadcaster transport executed successfully -2026-01-12 20:40:03 info: User disconnected dJbYu60lZuFydQlKAAAB beacuse of transport close -2026-01-12 20:40:03 info: Client connected: BHQ8wkTkW3gYMpGpAAAE -2026-01-12 20:40:04 info: Create room listner started -2026-01-12 20:40:04 info: Create room started -2026-01-12 20:40:04 info: Creating worker started -2026-01-12 20:40:04 info: Creation of worker successfully executed -2026-01-12 20:40:04 info: Creation of router started -2026-01-12 20:40:04 info: Router created for room: 2b85e63c-d2a0-4d6b-91ea-c0892f03ac4d -2026-01-12 20:40:04 info: Creation of webRtc server started -2026-01-12 20:40:04 info: WebRTC Server created successfully -2026-01-12 20:40:04 info: Creation of room successfully executed -2026-01-12 20:40:04 info: Add broadcaster started -2026-01-12 20:40:04 info: Get room started -2026-01-12 20:40:04 info: Get room executed successfully -2026-01-12 20:40:04 info: Added broadcaster into memory room -2026-01-12 20:40:04 info: Broadcaster created successfully -2026-01-12 20:40:04 info: Create room listner exceuted successfully -2026-01-12 20:40:11 info: Get getRouterRtpCapabilities socket lister started -2026-01-12 20:40:11 info: Get room started -2026-01-12 20:40:11 info: Get room executed successfully -2026-01-12 20:40:11 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-12 20:40:16 info: Create broadcaster lister started -2026-01-12 20:40:16 info: Get room started -2026-01-12 20:40:16 info: Get room executed successfully -2026-01-12 20:40:16 info: Creation of webRTC transport started -2026-01-12 20:40:16 info: WebRTC Transport created : b77412bf-ae42-451d-bae4-4d4236064bb5 -2026-01-12 20:40:16 info: Save broadcaster transport executed successfully -2026-01-12 20:40:21 info: Connect broadcaster transport lister started -2026-01-12 20:40:21 info: Get room started -2026-01-12 20:40:21 info: Get room executed successfully -2026-01-12 20:40:21 info: Connect broadcaster transport executed successfully -2026-01-12 20:48:24 info: Client connected: kRRZxYh-drEQzCAtAAAB -2026-01-12 20:48:25 info: Create room listner started -2026-01-12 20:48:25 info: Create room started -2026-01-12 20:48:25 info: Creating worker started -2026-01-12 20:48:25 info: Creation of worker successfully executed -2026-01-12 20:48:25 info: Creation of router started -2026-01-12 20:48:25 info: Router created for room: 80facf2c-d762-418e-85ec-0dc00ee4b66a -2026-01-12 20:48:25 info: Creation of webRtc server started -2026-01-12 20:48:25 info: WebRTC Server created successfully -2026-01-12 20:48:25 info: Creation of room successfully executed -2026-01-12 20:48:25 info: Add broadcaster started -2026-01-12 20:48:25 info: Get room started -2026-01-12 20:48:25 info: Get room executed successfully -2026-01-12 20:48:25 info: Added broadcaster into memory room -2026-01-12 20:48:25 info: Broadcaster created successfully -2026-01-12 20:48:25 info: Create room listner exceuted successfully -2026-01-12 20:48:30 info: Get getRouterRtpCapabilities socket lister started -2026-01-12 20:48:30 info: Get room started -2026-01-12 20:48:30 info: Get room executed successfully -2026-01-12 20:48:30 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-12 20:48:36 info: Create broadcaster lister started -2026-01-12 20:48:36 info: Get room started -2026-01-12 20:48:36 info: Get room executed successfully -2026-01-12 20:48:36 info: Creation of webRTC transport started -2026-01-12 20:48:36 info: WebRTC Transport created : 66f761e4-695e-418e-a2dd-7cf051e472f0 -2026-01-12 20:48:36 info: Save broadcaster transport executed successfully -2026-01-12 20:48:50 info: Connect broadcaster transport lister started -2026-01-12 20:48:50 info: Get room started -2026-01-12 20:48:50 info: Get room executed successfully -2026-01-12 20:48:50 info: Connect broadcaster transport executed successfully -2026-01-12 20:48:58 info: User disconnected kRRZxYh-drEQzCAtAAAB beacuse of transport close -2026-01-12 20:48:59 info: Client connected: mNQdPqLTBuyNPLI7AAAD -2026-01-12 23:39:23 info: Client connected: PrUVmziI4ZxOdT_fAAAB -2026-01-12 23:39:24 info: Create room listner started -2026-01-12 23:39:24 info: Create room started -2026-01-12 23:39:24 info: Creating worker started -2026-01-12 23:39:24 info: Creation of worker successfully executed -2026-01-12 23:39:24 info: Creation of router started -2026-01-12 23:39:24 info: Router created for room: d112afc1-2d1b-4f18-b3f5-c79f8fe36d70 -2026-01-12 23:39:24 info: Creation of webRtc server started -2026-01-12 23:39:24 info: WebRTC Server created successfully -2026-01-12 23:39:24 info: Creation of room successfully executed -2026-01-12 23:39:24 info: Add broadcaster started -2026-01-12 23:39:24 info: Get room started -2026-01-12 23:39:24 info: Get room executed successfully -2026-01-12 23:39:24 info: Added broadcaster into memory room -2026-01-12 23:39:24 info: Broadcaster created successfully -2026-01-12 23:39:24 info: Create room listner exceuted successfully -2026-01-12 23:39:24 info: Get getRouterRtpCapabilities socket lister started -2026-01-12 23:39:24 info: Get room started -2026-01-12 23:39:24 info: Get room executed successfully -2026-01-12 23:39:24 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-12 23:39:25 info: Create broadcaster lister started -2026-01-12 23:39:25 info: Get room started -2026-01-12 23:39:25 info: Get room executed successfully -2026-01-12 23:39:25 info: Creation of webRTC transport started -2026-01-12 23:39:25 info: WebRTC Transport created : 99ab3b9a-553c-4b67-ad1d-ccc6bad96cd7 -2026-01-12 23:39:25 info: Save broadcaster transport executed successfully -2026-01-12 23:39:27 info: Connect broadcaster transport lister started -2026-01-12 23:39:27 info: Get room started -2026-01-12 23:39:27 info: Get room executed successfully -2026-01-12 23:39:27 info: Connect broadcaster transport executed successfully -2026-01-12 23:39:27 info: Producer listener started -2026-01-12 23:39:27 info: Get room started -2026-01-12 23:39:27 info: Get room executed successfully -2026-01-12 23:39:27 info: Producer listener executed successfully: -2026-01-12 23:39:27 info: Producer listener started -2026-01-12 23:39:27 info: Get room started -2026-01-12 23:39:27 info: Get room executed successfully -2026-01-12 23:39:27 info: Producer listener executed successfully: -2026-01-12 23:39:57 info: User disconnected PrUVmziI4ZxOdT_fAAAB beacuse of transport close -2026-01-12 23:39:57 info: Client connected: 2MZB-Yuv3K2uk20MAAAD -2026-01-12 23:41:18 info: Client connected: Z8X8NjsMp_Xv4fkHAAAB -2026-01-12 23:41:21 info: User disconnected Z8X8NjsMp_Xv4fkHAAAB beacuse of transport close -2026-01-12 23:41:22 info: Client connected: XvizbfgKpzNxLM_qAAAD -2026-01-12 23:41:55 info: User disconnected XvizbfgKpzNxLM_qAAAD beacuse of transport close -2026-01-12 23:41:55 info: Client connected: 2k6NX9d1_wgbka68AAAF -2026-01-12 23:41:57 info: Create room listner started -2026-01-12 23:41:57 info: Create room started -2026-01-12 23:41:57 info: Creating worker started -2026-01-12 23:41:57 info: Creation of worker successfully executed -2026-01-12 23:41:57 info: Creation of router started -2026-01-12 23:41:57 info: Router created for room: 915020c1-f782-465d-bd7f-87152b83d1f8 -2026-01-12 23:41:57 info: Creation of webRtc server started -2026-01-12 23:41:57 info: WebRTC Server created successfully -2026-01-12 23:41:57 info: Creation of room successfully executed -2026-01-12 23:41:57 info: Add broadcaster started -2026-01-12 23:41:57 info: Get room started -2026-01-12 23:41:57 info: Get room executed successfully -2026-01-12 23:41:57 info: Added broadcaster into memory room -2026-01-12 23:41:57 info: Broadcaster created successfully -2026-01-12 23:41:57 info: Create room listner exceuted successfully -2026-01-12 23:41:57 info: Get getRouterRtpCapabilities socket lister started -2026-01-12 23:41:57 info: Get room started -2026-01-12 23:41:57 info: Get room executed successfully -2026-01-12 23:41:57 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-12 23:41:57 info: Create broadcaster lister started -2026-01-12 23:41:57 info: Get room started -2026-01-12 23:41:57 info: Get room executed successfully -2026-01-12 23:41:57 info: Creation of webRTC transport started -2026-01-12 23:41:57 info: WebRTC Transport created : 98f895d3-2e62-4593-81a3-c467d38c1858 -2026-01-12 23:41:57 info: Save broadcaster transport executed successfully -2026-01-12 23:41:58 info: Connect broadcaster transport lister started -2026-01-12 23:41:58 info: Get room started -2026-01-12 23:41:58 info: Get room executed successfully -2026-01-12 23:41:58 info: Connect broadcaster transport executed successfully -2026-01-12 23:41:58 info: Producer listener started -2026-01-12 23:41:58 info: Get room started -2026-01-12 23:41:58 info: Get room executed successfully -2026-01-12 23:41:58 info: Producer listener executed successfully: -2026-01-12 23:41:58 info: Producer listener started -2026-01-12 23:41:58 info: Get room started -2026-01-12 23:41:58 info: Get room executed successfully -2026-01-12 23:41:58 info: Producer listener executed successfully: -2026-01-12 23:42:12 info: User disconnected 2k6NX9d1_wgbka68AAAF beacuse of transport close -2026-01-12 23:42:12 info: Client connected: lbAdc6LTt50ep73NAAAH -2026-01-12 23:42:13 info: Create room listner started -2026-01-12 23:42:13 info: Create room started -2026-01-12 23:42:13 info: Creating worker started -2026-01-12 23:42:13 info: Creation of worker successfully executed -2026-01-12 23:42:13 info: Creation of router started -2026-01-12 23:42:13 info: Router created for room: 15f419a9-8497-4888-9f3d-5d3072c8cdfe -2026-01-12 23:42:13 info: Creation of webRtc server started -2026-01-12 23:42:13 info: WebRTC Server created successfully -2026-01-12 23:42:13 info: Creation of room successfully executed -2026-01-12 23:42:13 info: Add broadcaster started -2026-01-12 23:42:13 info: Get room started -2026-01-12 23:42:13 info: Get room executed successfully -2026-01-12 23:42:13 info: Added broadcaster into memory room -2026-01-12 23:42:13 info: Broadcaster created successfully -2026-01-12 23:42:13 info: Create room listner exceuted successfully -2026-01-12 23:42:13 info: Get getRouterRtpCapabilities socket lister started -2026-01-12 23:42:13 info: Get room started -2026-01-12 23:42:13 info: Get room executed successfully -2026-01-12 23:42:13 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-12 23:42:13 info: Create broadcaster lister started -2026-01-12 23:42:13 info: Get room started -2026-01-12 23:42:13 info: Get room executed successfully -2026-01-12 23:42:13 info: Creation of webRTC transport started -2026-01-12 23:42:13 info: WebRTC Transport created : e57e48eb-bf06-4160-843c-75e0f76ba001 -2026-01-12 23:42:13 info: Save broadcaster transport executed successfully -2026-01-12 23:42:14 info: Connect broadcaster transport lister started -2026-01-12 23:42:14 info: Get room started -2026-01-12 23:42:14 info: Get room executed successfully -2026-01-12 23:42:14 info: Connect broadcaster transport executed successfully -2026-01-12 23:42:14 info: Producer listener started -2026-01-12 23:42:14 info: Get room started -2026-01-12 23:42:14 info: Get room executed successfully -2026-01-12 23:42:14 info: Producer listener executed successfully: -2026-01-12 23:42:14 info: Producer listener started -2026-01-12 23:42:14 info: Get room started -2026-01-12 23:42:14 info: Get room executed successfully -2026-01-12 23:42:14 info: Producer listener executed successfully: -2026-01-12 23:42:32 info: User disconnected lbAdc6LTt50ep73NAAAH beacuse of transport close -2026-01-12 23:42:32 info: Client connected: cnitQU_c4jfFlnvuAAAJ -2026-01-12 23:42:33 info: Create room listner started -2026-01-12 23:42:33 info: Create room started -2026-01-12 23:42:33 info: Creating worker started -2026-01-12 23:42:33 info: Creation of worker successfully executed -2026-01-12 23:42:33 info: Creation of router started -2026-01-12 23:42:33 info: Router created for room: fb0d9f5b-aaf8-47dd-95f2-7453d7537335 -2026-01-12 23:42:33 info: Creation of webRtc server started -2026-01-12 23:42:33 info: WebRTC Server created successfully -2026-01-12 23:42:33 info: Creation of room successfully executed -2026-01-12 23:42:33 info: Add broadcaster started -2026-01-12 23:42:33 info: Get room started -2026-01-12 23:42:33 info: Get room executed successfully -2026-01-12 23:42:33 info: Added broadcaster into memory room -2026-01-12 23:42:33 info: Broadcaster created successfully -2026-01-12 23:42:33 info: Create room listner exceuted successfully -2026-01-12 23:42:33 info: Get getRouterRtpCapabilities socket lister started -2026-01-12 23:42:33 info: Get room started -2026-01-12 23:42:34 info: Get room executed successfully -2026-01-12 23:42:34 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-12 23:42:34 info: Create broadcaster lister started -2026-01-12 23:42:34 info: Get room started -2026-01-12 23:42:34 info: Get room executed successfully -2026-01-12 23:42:34 info: Creation of webRTC transport started -2026-01-12 23:42:34 info: WebRTC Transport created : 5fdd478b-5ec3-4566-b491-8209e791f0d6 -2026-01-12 23:42:34 info: Save broadcaster transport executed successfully -2026-01-12 23:42:34 info: Connect broadcaster transport lister started -2026-01-12 23:42:34 info: Get room started -2026-01-12 23:42:34 info: Get room executed successfully -2026-01-12 23:42:34 info: Connect broadcaster transport executed successfully -2026-01-12 23:42:34 info: Producer listener started -2026-01-12 23:42:34 info: Get room started -2026-01-12 23:42:34 info: Get room executed successfully -2026-01-12 23:42:34 info: Producer listener executed successfully: -2026-01-12 23:42:34 info: Producer listener started -2026-01-12 23:42:34 info: Get room started -2026-01-12 23:42:34 info: Get room executed successfully -2026-01-12 23:42:34 info: Producer listener executed successfully: -2026-01-12 23:42:41 info: User disconnected cnitQU_c4jfFlnvuAAAJ beacuse of transport close -2026-01-12 23:42:41 info: Client connected: i3vCOsKezUAwxdJmAAAL -2026-01-12 23:42:44 info: Create room listner started -2026-01-12 23:42:44 info: Create room started -2026-01-12 23:42:44 info: Creating worker started -2026-01-12 23:42:44 info: Creation of worker successfully executed -2026-01-12 23:42:44 info: Creation of router started -2026-01-12 23:42:44 info: Router created for room: b596c167-df75-47d3-adff-dc30e67b1ae1 -2026-01-12 23:42:44 info: Creation of webRtc server started -2026-01-12 23:42:44 info: WebRTC Server created successfully -2026-01-12 23:42:44 info: Creation of room successfully executed -2026-01-12 23:42:44 info: Add broadcaster started -2026-01-12 23:42:44 info: Get room started -2026-01-12 23:42:44 info: Get room executed successfully -2026-01-12 23:42:44 info: Added broadcaster into memory room -2026-01-12 23:42:44 info: Broadcaster created successfully -2026-01-12 23:42:44 info: Create room listner exceuted successfully -2026-01-12 23:42:44 info: Get getRouterRtpCapabilities socket lister started -2026-01-12 23:42:44 info: Get room started -2026-01-12 23:42:44 info: Get room executed successfully -2026-01-12 23:42:44 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-12 23:42:44 info: Create broadcaster lister started -2026-01-12 23:42:44 info: Get room started -2026-01-12 23:42:44 info: Get room executed successfully -2026-01-12 23:42:44 info: Creation of webRTC transport started -2026-01-12 23:42:44 info: WebRTC Transport created : fb78d104-185e-4802-a901-c3505f993d51 -2026-01-12 23:42:44 info: Save broadcaster transport executed successfully -2026-01-12 23:42:44 info: Connect broadcaster transport lister started -2026-01-12 23:42:44 info: Get room started -2026-01-12 23:42:44 info: Get room executed successfully -2026-01-12 23:42:44 info: Connect broadcaster transport executed successfully -2026-01-12 23:42:44 info: Producer listener started -2026-01-12 23:42:44 info: Get room started -2026-01-12 23:42:44 info: Get room executed successfully -2026-01-12 23:42:44 info: Producer listener executed successfully: -2026-01-12 23:42:44 info: Producer listener started -2026-01-12 23:42:44 info: Get room started -2026-01-12 23:42:44 info: Get room executed successfully -2026-01-12 23:42:44 info: Producer listener executed successfully: -2026-01-12 23:43:37 info: User disconnected i3vCOsKezUAwxdJmAAAL beacuse of transport close -2026-01-12 23:43:37 info: Client connected: PQwtGMAca-DXr8KDAAAN -2026-01-12 23:43:38 info: Create room listner started -2026-01-12 23:43:38 info: Create room started -2026-01-12 23:43:38 info: Creating worker started -2026-01-12 23:43:38 info: Creation of worker successfully executed -2026-01-12 23:43:38 info: Creation of router started -2026-01-12 23:43:38 info: Router created for room: b4095012-fe6e-4f83-ae2a-741be47f15d1 -2026-01-12 23:43:38 info: Creation of webRtc server started -2026-01-12 23:43:38 info: WebRTC Server created successfully -2026-01-12 23:43:38 info: Creation of room successfully executed -2026-01-12 23:43:38 info: Add broadcaster started -2026-01-12 23:43:38 info: Get room started -2026-01-12 23:43:38 info: Get room executed successfully -2026-01-12 23:43:38 info: Added broadcaster into memory room -2026-01-12 23:43:38 info: Broadcaster created successfully -2026-01-12 23:43:38 info: Create room listner exceuted successfully -2026-01-12 23:43:38 info: Get getRouterRtpCapabilities socket lister started -2026-01-12 23:43:38 info: Get room started -2026-01-12 23:43:38 info: Get room executed successfully -2026-01-12 23:43:38 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-12 23:43:38 info: Create broadcaster lister started -2026-01-12 23:43:38 info: Get room started -2026-01-12 23:43:38 info: Get room executed successfully -2026-01-12 23:43:38 info: Creation of webRTC transport started -2026-01-12 23:43:38 info: WebRTC Transport created : 0511f629-0e09-4403-97d9-abf6c626c0d7 -2026-01-12 23:43:38 info: Save broadcaster transport executed successfully -2026-01-12 23:43:39 info: Connect broadcaster transport lister started -2026-01-12 23:43:39 info: Get room started -2026-01-12 23:43:39 info: Get room executed successfully -2026-01-12 23:43:39 info: Connect broadcaster transport executed successfully -2026-01-12 23:43:39 info: Producer listener started -2026-01-12 23:43:39 info: Get room started -2026-01-12 23:43:39 info: Get room executed successfully -2026-01-12 23:43:39 info: Producer listener executed successfully: -2026-01-12 23:43:39 info: Producer listener started -2026-01-12 23:43:39 info: Get room started -2026-01-12 23:43:39 info: Get room executed successfully -2026-01-12 23:43:39 info: Producer listener executed successfully: -2026-01-12 23:44:07 info: User disconnected PQwtGMAca-DXr8KDAAAN beacuse of transport close -2026-01-13 12:17:49 info: Client connected: d5xkmNuknKHjQJ6dAAAB -2026-01-13 12:17:55 info: Create room listner started -2026-01-13 12:17:55 info: Create room started -2026-01-13 12:17:55 info: Creating worker started -2026-01-13 12:17:55 info: Creation of worker successfully executed -2026-01-13 12:17:55 info: Creation of router started -2026-01-13 12:17:55 info: Router created for room: 775b05ba-8f57-42e2-91fd-b939c7306eee -2026-01-13 12:17:55 info: Creation of webRtc server started -2026-01-13 12:17:55 info: WebRTC Server created successfully -2026-01-13 12:17:55 info: Creation of room successfully executed -2026-01-13 12:17:55 info: Add broadcaster started -2026-01-13 12:17:55 info: Get room started -2026-01-13 12:17:55 info: Get room executed successfully -2026-01-13 12:17:55 info: Added broadcaster into memory room -2026-01-13 12:17:55 info: Broadcaster created successfully -2026-01-13 12:17:55 info: Create room listner exceuted successfully -2026-01-13 12:17:55 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 12:17:55 info: Get room started -2026-01-13 12:17:55 info: Get room executed successfully -2026-01-13 12:17:55 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 12:17:55 info: Create broadcaster lister started -2026-01-13 12:17:55 info: Get room started -2026-01-13 12:17:55 info: Get room executed successfully -2026-01-13 12:17:55 info: Creation of webRTC transport started -2026-01-13 12:17:55 info: WebRTC Transport created : 23303930-07b1-4919-800c-358f58a7f368 -2026-01-13 12:17:55 info: Save broadcaster transport executed successfully -2026-01-13 12:17:59 info: Connect broadcaster transport lister started -2026-01-13 12:17:59 info: Get room started -2026-01-13 12:17:59 info: Get room executed successfully -2026-01-13 12:17:59 info: Connect broadcaster transport executed successfully -2026-01-13 12:17:59 info: Producer listener started -2026-01-13 12:17:59 info: Get room started -2026-01-13 12:17:59 info: Get room executed successfully -2026-01-13 12:17:59 info: Producer listener executed successfully: -2026-01-13 12:17:59 info: Producer listener started -2026-01-13 12:17:59 info: Get room started -2026-01-13 12:17:59 info: Get room executed successfully -2026-01-13 12:17:59 info: Producer listener executed successfully: -2026-01-13 12:18:16 info: User disconnected d5xkmNuknKHjQJ6dAAAB beacuse of transport close -2026-01-13 16:04:46 info: Client connected: XR-Tv_FQzeWllggFAAAB -2026-01-13 16:04:53 info: Create room listner started -2026-01-13 16:04:53 info: Create room started -2026-01-13 16:04:53 info: Creating worker started -2026-01-13 16:04:53 info: Creation of worker successfully executed -2026-01-13 16:04:53 info: Creation of router started -2026-01-13 16:04:53 info: Router created for room: 0986812f-cabf-471e-83e7-56568f2f5bc0 -2026-01-13 16:04:53 info: Creation of webRtc server started -2026-01-13 16:04:53 info: WebRTC Server created successfully -2026-01-13 16:04:53 info: Creation of room successfully executed -2026-01-13 16:04:53 info: Add broadcaster started -2026-01-13 16:04:53 info: Get room started -2026-01-13 16:04:53 info: Get room executed successfully -2026-01-13 16:04:53 info: Added broadcaster into memory room -2026-01-13 16:04:53 info: Broadcaster created successfully -2026-01-13 16:04:53 info: Create room listner exceuted successfully -2026-01-13 16:04:53 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 16:04:53 info: Get room started -2026-01-13 16:04:53 info: Get room executed successfully -2026-01-13 16:04:53 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 16:04:53 info: Create broadcaster lister started -2026-01-13 16:04:53 info: Get room started -2026-01-13 16:04:53 info: Get room executed successfully -2026-01-13 16:04:53 info: Creation of webRTC transport started -2026-01-13 16:04:53 info: WebRTC Transport created : 7bb67042-b535-4e37-b2af-654b103f12e6 -2026-01-13 16:04:53 info: Save broadcaster transport executed successfully -2026-01-13 16:06:35 info: Client connected: jtHOmvqN8XOsdjqgAAAB -2026-01-13 16:06:37 info: Create room listner started -2026-01-13 16:06:37 info: Create room started -2026-01-13 16:06:37 info: Creating worker started -2026-01-13 16:06:37 info: Creation of worker successfully executed -2026-01-13 16:06:37 info: Creation of router started -2026-01-13 16:06:37 info: Router created for room: b406135c-765e-40d1-9f9e-49410da070ac -2026-01-13 16:06:37 info: Creation of webRtc server started -2026-01-13 16:06:37 info: WebRTC Server created successfully -2026-01-13 16:06:37 info: Creation of room successfully executed -2026-01-13 16:06:37 info: Add broadcaster started -2026-01-13 16:06:37 info: Get room started -2026-01-13 16:06:37 info: Get room executed successfully -2026-01-13 16:06:37 info: Added broadcaster into memory room -2026-01-13 16:06:37 info: Broadcaster created successfully -2026-01-13 16:06:37 info: Create room listner exceuted successfully -2026-01-13 16:06:37 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 16:06:37 info: Get room started -2026-01-13 16:06:37 info: Get room executed successfully -2026-01-13 16:06:37 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 16:06:37 info: Create broadcaster lister started -2026-01-13 16:06:37 info: Get room started -2026-01-13 16:06:37 info: Get room executed successfully -2026-01-13 16:06:37 info: Creation of webRTC transport started -2026-01-13 16:06:37 info: WebRTC Transport created : aeb9de18-3f73-44dc-a4c4-caf1819ca127 -2026-01-13 16:06:37 info: Save broadcaster transport executed successfully -2026-01-13 16:06:46 info: Connect broadcaster transport lister started -2026-01-13 16:06:46 info: Get room started -2026-01-13 16:06:46 info: Get room executed successfully -2026-01-13 16:06:46 info: Connect broadcaster transport executed successfully -2026-01-13 16:06:46 info: Producer listener started -2026-01-13 16:06:46 info: Get room started -2026-01-13 16:06:46 info: Get room executed successfully -2026-01-13 16:06:46 info: Producer listener executed successfully: -2026-01-13 16:06:46 info: Producer listener started -2026-01-13 16:06:46 info: Get room started -2026-01-13 16:06:46 info: Get room executed successfully -2026-01-13 16:06:46 info: Producer listener executed successfully: -2026-01-13 16:06:48 info: Join as viewer listner started -2026-01-13 16:06:48 info: Join as viewer started -2026-01-13 16:06:48 info: Get room started -2026-01-13 16:06:48 info: Get room executed successfully -2026-01-13 16:06:48 info: Join as viewer completed successfully -2026-01-13 16:06:48 info: Get room started -2026-01-13 16:06:48 info: Get room executed successfully -2026-01-13 16:06:48 info: Join viewer listner successfully executed -2026-01-13 16:07:48 info: User disconnected jtHOmvqN8XOsdjqgAAAB beacuse of transport close -2026-01-13 16:07:49 info: Client connected: -FL5vpZBwv7EcNR7AAAD -2026-01-13 16:07:51 info: Create room listner started -2026-01-13 16:07:51 info: Create room started -2026-01-13 16:07:51 info: Creating worker started -2026-01-13 16:07:51 info: Creation of worker successfully executed -2026-01-13 16:07:51 info: Creation of router started -2026-01-13 16:07:51 info: Router created for room: 38dfe8ab-9e29-40a0-abd1-e143ba7aff41 -2026-01-13 16:07:51 info: Creation of webRtc server started -2026-01-13 16:07:51 info: WebRTC Server created successfully -2026-01-13 16:07:51 info: Creation of room successfully executed -2026-01-13 16:07:51 info: Add broadcaster started -2026-01-13 16:07:51 info: Get room started -2026-01-13 16:07:51 info: Get room executed successfully -2026-01-13 16:07:51 info: Added broadcaster into memory room -2026-01-13 16:07:51 info: Broadcaster created successfully -2026-01-13 16:07:51 info: Create room listner exceuted successfully -2026-01-13 16:07:51 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 16:07:51 info: Get room started -2026-01-13 16:07:51 info: Get room executed successfully -2026-01-13 16:07:51 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 16:07:51 info: Create broadcaster lister started -2026-01-13 16:07:51 info: Get room started -2026-01-13 16:07:51 info: Get room executed successfully -2026-01-13 16:07:51 info: Creation of webRTC transport started -2026-01-13 16:07:51 info: WebRTC Transport created : c2847982-84d1-4cb2-a67a-ec2dd7271e76 -2026-01-13 16:07:51 info: Save broadcaster transport executed successfully -2026-01-13 16:07:51 info: Connect broadcaster transport lister started -2026-01-13 16:07:51 info: Get room started -2026-01-13 16:07:51 info: Get room executed successfully -2026-01-13 16:07:51 info: Connect broadcaster transport executed successfully -2026-01-13 16:07:51 info: Producer listener started -2026-01-13 16:07:51 info: Get room started -2026-01-13 16:07:51 info: Get room executed successfully -2026-01-13 16:07:51 info: Producer listener executed successfully: -2026-01-13 16:07:51 info: Producer listener started -2026-01-13 16:07:51 info: Get room started -2026-01-13 16:07:51 info: Get room executed successfully -2026-01-13 16:07:51 info: Producer listener executed successfully: -2026-01-13 16:07:52 info: Join as viewer listner started -2026-01-13 16:07:52 info: Join as viewer started -2026-01-13 16:07:52 info: Get room started -2026-01-13 16:07:52 info: Get room executed successfully -2026-01-13 16:07:52 info: Join as viewer completed successfully -2026-01-13 16:07:52 info: Get room started -2026-01-13 16:07:52 info: Get room executed successfully -2026-01-13 16:07:52 info: Join viewer listner successfully executed -2026-01-13 16:09:09 info: Client connected: yIX0sX0wbhKGVFuuAAAB -2026-01-13 16:09:09 info: User disconnected yIX0sX0wbhKGVFuuAAAB beacuse of transport close -2026-01-13 16:09:10 info: Client connected: Vhz4mOXkuJhQVAbFAAAD -2026-01-13 16:09:11 info: Create room listner started -2026-01-13 16:09:11 info: Create room started -2026-01-13 16:09:11 info: Creating worker started -2026-01-13 16:09:11 info: Creation of worker successfully executed -2026-01-13 16:09:11 info: Creation of router started -2026-01-13 16:09:11 info: Router created for room: f1698637-35a4-4b5b-a6f3-76682d7cb84f -2026-01-13 16:09:11 info: Creation of webRtc server started -2026-01-13 16:09:11 info: WebRTC Server created successfully -2026-01-13 16:09:11 info: Creation of room successfully executed -2026-01-13 16:09:11 info: Add broadcaster started -2026-01-13 16:09:11 info: Get room started -2026-01-13 16:09:11 info: Get room executed successfully -2026-01-13 16:09:11 info: Added broadcaster into memory room -2026-01-13 16:09:11 info: Broadcaster created successfully -2026-01-13 16:09:11 info: Create room listner exceuted successfully -2026-01-13 16:09:11 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 16:09:11 info: Get room started -2026-01-13 16:09:11 info: Get room executed successfully -2026-01-13 16:09:11 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 16:09:11 info: Create broadcaster lister started -2026-01-13 16:09:11 info: Get room started -2026-01-13 16:09:11 info: Get room executed successfully -2026-01-13 16:09:11 info: Creation of webRTC transport started -2026-01-13 16:09:11 info: WebRTC Transport created : 5e2bec7e-0c43-4570-8158-0c62b75f7852 -2026-01-13 16:09:11 info: Save broadcaster transport executed successfully -2026-01-13 16:09:11 info: Connect broadcaster transport lister started -2026-01-13 16:09:11 info: Get room started -2026-01-13 16:09:11 info: Get room executed successfully -2026-01-13 16:09:11 info: Connect broadcaster transport executed successfully -2026-01-13 16:09:11 info: Producer listener started -2026-01-13 16:09:11 info: Get room started -2026-01-13 16:09:11 info: Get room executed successfully -2026-01-13 16:09:11 info: Producer listener executed successfully: -2026-01-13 16:09:11 info: Producer listener started -2026-01-13 16:09:11 info: Get room started -2026-01-13 16:09:11 info: Get room executed successfully -2026-01-13 16:09:11 info: Producer listener executed successfully: -2026-01-13 16:09:14 info: Join as viewer listner started -2026-01-13 16:09:14 info: Join as viewer started -2026-01-13 16:09:14 info: Get room started -2026-01-13 16:09:14 info: Get room executed successfully -2026-01-13 16:09:14 info: Join as viewer completed successfully -2026-01-13 16:09:14 info: Get room started -2026-01-13 16:09:14 info: Get room executed successfully -2026-01-13 16:09:14 info: Join viewer listner successfully executed -2026-01-13 16:10:30 info: User disconnected Vhz4mOXkuJhQVAbFAAAD beacuse of transport close -2026-01-13 16:10:30 info: Client connected: 1n6g6LxDda0lapn8AAAF -2026-01-13 16:11:09 info: Client connected: QMl6ls-ElJvjmsbXAAAB -2026-01-13 16:11:19 info: Client connected: GQek7w2OpWo0lvpIAAAB -2026-01-13 16:11:30 info: Client connected: hp8otbJlsUMKE3GzAAAB -2026-01-13 16:11:38 info: User disconnected hp8otbJlsUMKE3GzAAAB beacuse of transport close -2026-01-13 16:11:38 info: Client connected: duUVz49G1ptfRSI2AAAD -2026-01-13 16:11:39 info: Create room listner started -2026-01-13 16:11:39 info: Create room started -2026-01-13 16:11:39 info: Creating worker started -2026-01-13 16:11:39 info: Creation of worker successfully executed -2026-01-13 16:11:39 info: Creation of router started -2026-01-13 16:11:39 info: Router created for room: 9ea3c9a5-0d21-4623-84ec-43c6e23dea0c -2026-01-13 16:11:39 info: Creation of webRtc server started -2026-01-13 16:11:39 info: WebRTC Server created successfully -2026-01-13 16:11:39 info: Creation of room successfully executed -2026-01-13 16:11:39 info: Add broadcaster started -2026-01-13 16:11:39 info: Get room started -2026-01-13 16:11:39 info: Get room executed successfully -2026-01-13 16:11:39 info: Added broadcaster into memory room -2026-01-13 16:11:39 info: Broadcaster created successfully -2026-01-13 16:11:39 info: Create room listner exceuted successfully -2026-01-13 16:11:39 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 16:11:39 info: Get room started -2026-01-13 16:11:39 info: Get room executed successfully -2026-01-13 16:11:39 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 16:11:39 info: Create broadcaster lister started -2026-01-13 16:11:39 info: Get room started -2026-01-13 16:11:39 info: Get room executed successfully -2026-01-13 16:11:39 info: Creation of webRTC transport started -2026-01-13 16:11:39 info: WebRTC Transport created : 05750440-1675-4e9d-9457-5f373cdd2b62 -2026-01-13 16:11:39 info: Save broadcaster transport executed successfully -2026-01-13 16:11:39 info: Connect broadcaster transport lister started -2026-01-13 16:11:39 info: Get room started -2026-01-13 16:11:39 info: Get room executed successfully -2026-01-13 16:11:39 info: Connect broadcaster transport executed successfully -2026-01-13 16:11:40 info: Producer listener started -2026-01-13 16:11:40 info: Get room started -2026-01-13 16:11:40 info: Get room executed successfully -2026-01-13 16:11:40 info: Producer listener executed successfully: -2026-01-13 16:11:40 info: Producer listener started -2026-01-13 16:11:40 info: Get room started -2026-01-13 16:11:40 info: Get room executed successfully -2026-01-13 16:11:40 info: Producer listener executed successfully: -2026-01-13 16:11:49 info: Join as viewer listner started -2026-01-13 16:11:49 info: Join as viewer started -2026-01-13 16:11:49 info: Get room started -2026-01-13 16:11:49 info: Get room executed successfully -2026-01-13 16:11:49 info: Join as viewer completed successfully -2026-01-13 16:11:49 info: Get room started -2026-01-13 16:11:49 info: Get room executed successfully -2026-01-13 16:11:49 info: Join viewer listner successfully executed -2026-01-13 16:12:18 info: User disconnected duUVz49G1ptfRSI2AAAD beacuse of transport close -2026-01-13 16:12:19 info: Client connected: 5AvUylKCf99x6aCgAAAF -2026-01-13 16:12:20 info: Create room listner started -2026-01-13 16:12:20 info: Create room started -2026-01-13 16:12:20 info: Creating worker started -2026-01-13 16:12:20 info: Creation of worker successfully executed -2026-01-13 16:12:20 info: Creation of router started -2026-01-13 16:12:20 info: Router created for room: 03e0eff5-74d2-4116-b4f5-5f345ad7d330 -2026-01-13 16:12:20 info: Creation of webRtc server started -2026-01-13 16:12:20 info: WebRTC Server created successfully -2026-01-13 16:12:20 info: Creation of room successfully executed -2026-01-13 16:12:20 info: Add broadcaster started -2026-01-13 16:12:20 info: Get room started -2026-01-13 16:12:20 info: Get room executed successfully -2026-01-13 16:12:20 info: Added broadcaster into memory room -2026-01-13 16:12:20 info: Broadcaster created successfully -2026-01-13 16:12:20 info: Create room listner exceuted successfully -2026-01-13 16:12:20 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 16:12:20 info: Get room started -2026-01-13 16:12:20 info: Get room executed successfully -2026-01-13 16:12:20 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 16:12:20 info: Create broadcaster lister started -2026-01-13 16:12:20 info: Get room started -2026-01-13 16:12:20 info: Get room executed successfully -2026-01-13 16:12:20 info: Creation of webRTC transport started -2026-01-13 16:12:20 info: WebRTC Transport created : 7fd58681-2920-4cf8-8381-e1354932329f -2026-01-13 16:12:20 info: Save broadcaster transport executed successfully -2026-01-13 16:12:20 info: Connect broadcaster transport lister started -2026-01-13 16:12:20 info: Get room started -2026-01-13 16:12:20 info: Get room executed successfully -2026-01-13 16:12:20 info: Connect broadcaster transport executed successfully -2026-01-13 16:12:20 info: Producer listener started -2026-01-13 16:12:20 info: Get room started -2026-01-13 16:12:20 info: Get room executed successfully -2026-01-13 16:12:20 info: Producer listener executed successfully: -2026-01-13 16:12:20 info: Producer listener started -2026-01-13 16:12:20 info: Get room started -2026-01-13 16:12:20 info: Get room executed successfully -2026-01-13 16:12:20 info: Producer listener executed successfully: -2026-01-13 16:12:21 info: Join as viewer listner started -2026-01-13 16:12:21 info: Join as viewer started -2026-01-13 16:12:21 info: Get room started -2026-01-13 16:12:21 info: Get room executed successfully -2026-01-13 16:12:21 info: Join as viewer completed successfully -2026-01-13 16:12:21 info: Get room started -2026-01-13 16:12:21 info: Get room executed successfully -2026-01-13 16:12:21 info: Join viewer listner successfully executed -2026-01-13 16:13:44 info: User disconnected 5AvUylKCf99x6aCgAAAF beacuse of transport close -2026-01-13 16:13:44 info: Client connected: ERs4RmNznqntHcmyAAAH -2026-01-13 16:16:04 info: Client connected: 1oFDZrZ532HMoqkaAAAB -2026-01-13 16:16:04 info: User disconnected 1oFDZrZ532HMoqkaAAAB beacuse of transport close -2026-01-13 16:16:05 info: Client connected: rxgkQVzHrklASh54AAAD -2026-01-13 16:16:07 info: Create room listner started -2026-01-13 16:16:07 info: Create room started -2026-01-13 16:16:07 info: Creating worker started -2026-01-13 16:16:07 info: Creation of worker successfully executed -2026-01-13 16:16:07 info: Creation of router started -2026-01-13 16:16:07 info: Router created for room: d0acd714-cc4e-44a5-8a1d-77c0d9a11888 -2026-01-13 16:16:07 info: Creation of webRtc server started -2026-01-13 16:16:07 info: WebRTC Server created successfully -2026-01-13 16:16:07 info: Creation of room successfully executed -2026-01-13 16:16:07 info: Add broadcaster started -2026-01-13 16:16:07 info: Get room started -2026-01-13 16:16:07 info: Get room executed successfully -2026-01-13 16:16:07 info: Added broadcaster into memory room -2026-01-13 16:16:07 info: Broadcaster created successfully -2026-01-13 16:16:07 info: Create room listner exceuted successfully -2026-01-13 16:16:07 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 16:16:07 info: Get room started -2026-01-13 16:16:07 info: Get room executed successfully -2026-01-13 16:16:07 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 16:16:07 info: Create broadcaster lister started -2026-01-13 16:16:07 info: Get room started -2026-01-13 16:16:07 info: Get room executed successfully -2026-01-13 16:16:07 info: Creation of webRTC transport started -2026-01-13 16:16:07 info: WebRTC Transport created : df7dc572-9b0b-4420-a7b1-4f9822923d6f -2026-01-13 16:16:07 info: Save broadcaster transport executed successfully -2026-01-13 16:16:07 info: Connect broadcaster transport lister started -2026-01-13 16:16:07 info: Get room started -2026-01-13 16:16:07 info: Get room executed successfully -2026-01-13 16:16:07 info: Connect broadcaster transport executed successfully -2026-01-13 16:16:07 info: Producer listener started -2026-01-13 16:16:07 info: Get room started -2026-01-13 16:16:07 info: Get room executed successfully -2026-01-13 16:16:07 info: Producer listener executed successfully: -2026-01-13 16:16:07 info: Producer listener started -2026-01-13 16:16:07 info: Get room started -2026-01-13 16:16:07 info: Get room executed successfully -2026-01-13 16:16:07 info: Producer listener executed successfully: -2026-01-13 16:16:09 info: Join as viewer listner started -2026-01-13 16:16:09 info: Join as viewer started -2026-01-13 16:16:09 info: Get room started -2026-01-13 16:16:09 info: Get room executed successfully -2026-01-13 16:16:09 info: Join as viewer completed successfully -2026-01-13 16:16:09 info: Get room started -2026-01-13 16:16:09 info: Get room executed successfully -2026-01-13 16:16:09 info: Join viewer listner successfully executed -2026-01-13 16:17:05 info: User disconnected rxgkQVzHrklASh54AAAD beacuse of transport close -2026-01-13 16:17:05 info: Client connected: OZYSYJiYqUKpFelXAAAF -2026-01-13 16:17:47 info: Client connected: z3lBz_BBW5fuNT3EAAAB -2026-01-13 16:18:06 info: Client connected: pH8t__FFnnYTu9jvAAAB -2026-01-13 16:18:07 info: Create room listner started -2026-01-13 16:18:07 info: Create room started -2026-01-13 16:18:07 info: Creating worker started -2026-01-13 16:18:07 info: Creation of worker successfully executed -2026-01-13 16:18:07 info: Creation of router started -2026-01-13 16:18:07 info: Router created for room: 9653eca2-748b-4715-89e4-9079ca3fbd4e -2026-01-13 16:18:07 info: Creation of webRtc server started -2026-01-13 16:18:07 info: WebRTC Server created successfully -2026-01-13 16:18:07 info: Creation of room successfully executed -2026-01-13 16:18:07 info: Add broadcaster started -2026-01-13 16:18:07 info: Get room started -2026-01-13 16:18:07 info: Get room executed successfully -2026-01-13 16:18:07 info: Added broadcaster into memory room -2026-01-13 16:18:07 info: Broadcaster created successfully -2026-01-13 16:18:07 info: Create room listner exceuted successfully -2026-01-13 16:18:07 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 16:18:07 info: Get room started -2026-01-13 16:18:07 info: Get room executed successfully -2026-01-13 16:18:07 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 16:18:08 info: Create broadcaster lister started -2026-01-13 16:18:08 info: Get room started -2026-01-13 16:18:08 info: Get room executed successfully -2026-01-13 16:18:08 info: Creation of webRTC transport started -2026-01-13 16:18:08 info: WebRTC Transport created : 11ce7538-5d37-4075-ae73-f6006579840c -2026-01-13 16:18:08 info: Save broadcaster transport executed successfully -2026-01-13 16:18:08 info: Connect broadcaster transport lister started -2026-01-13 16:18:08 info: Get room started -2026-01-13 16:18:08 info: Get room executed successfully -2026-01-13 16:18:08 info: Connect broadcaster transport executed successfully -2026-01-13 16:18:08 info: Producer listener started -2026-01-13 16:18:08 info: Get room started -2026-01-13 16:18:08 info: Get room executed successfully -2026-01-13 16:18:08 info: Producer listener executed successfully: -2026-01-13 16:18:08 info: Producer listener started -2026-01-13 16:18:08 info: Get room started -2026-01-13 16:18:08 info: Get room executed successfully -2026-01-13 16:18:08 info: Producer listener executed successfully: -2026-01-13 16:18:13 info: Join as viewer listner started -2026-01-13 16:18:13 info: Join as viewer started -2026-01-13 16:18:13 info: Get room started -2026-01-13 16:18:13 info: Get room executed successfully -2026-01-13 16:18:13 info: Join as viewer completed successfully -2026-01-13 16:18:13 info: Get room started -2026-01-13 16:18:13 info: Get room executed successfully -2026-01-13 16:18:13 info: Emitting RTP caps -2026-01-13 16:18:13 info: Join viewer listner successfully executed -2026-01-13 16:19:20 info: User disconnected pH8t__FFnnYTu9jvAAAB beacuse of transport close -2026-01-13 16:19:21 info: Client connected: zeGI13QXFOlndAsoAAAD -2026-01-13 18:19:05 info: Client connected: a9ueAJVS1AZdnXG-AAAB -2026-01-13 18:19:06 info: Create room listner started -2026-01-13 18:19:06 info: Create room started -2026-01-13 18:19:06 info: Creating worker started -2026-01-13 18:19:06 info: Creation of worker successfully executed -2026-01-13 18:19:06 info: Creation of router started -2026-01-13 18:19:06 info: Router created for room: 931e99d3-a34e-48eb-8593-bd9e15f001d6 -2026-01-13 18:19:06 info: Creation of webRtc server started -2026-01-13 18:19:06 info: WebRTC Server created successfully -2026-01-13 18:19:06 info: Creation of room successfully executed -2026-01-13 18:19:06 info: Add broadcaster started -2026-01-13 18:19:06 info: Get room started -2026-01-13 18:19:06 info: Get room executed successfully -2026-01-13 18:19:06 info: Added broadcaster into memory room -2026-01-13 18:19:06 info: Broadcaster created successfully -2026-01-13 18:19:06 info: Create room listner exceuted successfully -2026-01-13 18:19:06 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 18:19:06 info: Get room started -2026-01-13 18:19:06 info: Get room executed successfully -2026-01-13 18:19:06 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 18:19:06 info: Create broadcaster lister started -2026-01-13 18:19:06 info: Get room started -2026-01-13 18:19:06 info: Get room executed successfully -2026-01-13 18:19:06 info: Creation of webRTC transport started -2026-01-13 18:19:06 info: WebRTC Transport created : 93aec115-ffea-4d12-ac01-997c5ba1aacd -2026-01-13 18:19:06 info: Save broadcaster transport executed successfully -2026-01-13 18:19:09 info: Connect broadcaster transport lister started -2026-01-13 18:19:09 info: Get room started -2026-01-13 18:19:09 info: Get room executed successfully -2026-01-13 18:19:09 info: Connect broadcaster transport executed successfully -2026-01-13 18:19:09 info: Producer listener started -2026-01-13 18:19:09 info: Get room started -2026-01-13 18:19:09 info: Get room executed successfully -2026-01-13 18:19:09 info: Producer listener executed successfully: -2026-01-13 18:19:09 info: Producer listener started -2026-01-13 18:19:09 info: Get room started -2026-01-13 18:19:09 info: Get room executed successfully -2026-01-13 18:19:09 info: Producer listener executed successfully: -2026-01-13 18:19:12 info: Join as viewer listner started -2026-01-13 18:19:12 info: Join as viewer started -2026-01-13 18:19:12 info: Get room started -2026-01-13 18:19:12 info: Get room executed successfully -2026-01-13 18:19:12 info: Join as viewer completed successfully -2026-01-13 18:19:12 info: Get room started -2026-01-13 18:19:12 info: Get room executed successfully -2026-01-13 18:19:12 info: Emitting RTP caps -2026-01-13 18:19:12 info: Join viewer listner successfully executed -2026-01-13 18:20:31 info: Client connected: LS_zzpWJx4MRucE6AAAB -2026-01-13 18:21:09 info: User disconnected LS_zzpWJx4MRucE6AAAB beacuse of transport close -2026-01-13 18:21:09 info: Client connected: zrbdmw8xnw0XskEHAAAD -2026-01-13 18:22:53 info: Client connected: Nzun6zmgevspmARqAAAB -2026-01-13 18:22:55 info: User disconnected Nzun6zmgevspmARqAAAB beacuse of transport close -2026-01-13 18:22:55 info: Client connected: o7Z8Fi3iGQASVmLPAAAD -2026-01-13 18:23:01 info: Client connected: QOby9rGZ3t8w58XcAAAF -2026-01-13 18:23:08 info: Create room listner started -2026-01-13 18:23:08 info: Create room started -2026-01-13 18:23:08 info: Creating worker started -2026-01-13 18:23:08 info: Creation of worker successfully executed -2026-01-13 18:23:08 info: Creation of router started -2026-01-13 18:23:08 info: Router created for room: 157443c9-4b48-47d7-bee6-dce796e97909 -2026-01-13 18:23:08 info: Creation of webRtc server started -2026-01-13 18:23:08 info: WebRTC Server created successfully -2026-01-13 18:23:08 info: Creation of room successfully executed -2026-01-13 18:23:08 info: Add broadcaster started -2026-01-13 18:23:08 info: Get room started -2026-01-13 18:23:08 info: Get room executed successfully -2026-01-13 18:23:08 info: Added broadcaster into memory room -2026-01-13 18:23:08 info: Broadcaster created successfully -2026-01-13 18:23:08 info: Create room listner exceuted successfully -2026-01-13 18:23:08 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 18:23:08 info: Get room started -2026-01-13 18:23:08 info: Get room executed successfully -2026-01-13 18:23:08 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 18:23:08 info: Create broadcaster lister started -2026-01-13 18:23:08 info: Get room started -2026-01-13 18:23:08 info: Get room executed successfully -2026-01-13 18:23:08 info: Creation of webRTC transport started -2026-01-13 18:23:08 info: WebRTC Transport created : 374346fd-47f0-4e53-839c-b4c65bc74588 -2026-01-13 18:23:08 info: Save broadcaster transport executed successfully -2026-01-13 18:23:08 info: Connect broadcaster transport lister started -2026-01-13 18:23:08 info: Get room started -2026-01-13 18:23:08 info: Get room executed successfully -2026-01-13 18:23:08 info: Connect broadcaster transport executed successfully -2026-01-13 18:23:08 info: Producer listener started -2026-01-13 18:23:08 info: Get room started -2026-01-13 18:23:08 info: Get room executed successfully -2026-01-13 18:23:08 info: Producer listener executed successfully: -2026-01-13 18:23:08 info: Producer listener started -2026-01-13 18:23:08 info: Get room started -2026-01-13 18:23:08 info: Get room executed successfully -2026-01-13 18:23:08 info: Producer listener executed successfully: -2026-01-13 18:25:03 info: Client connected: SVTzgZ-cX-QXix1PAAAB -2026-01-13 18:25:04 info: Client connected: BvelcYwaNbIqozvvAAAD -2026-01-13 18:25:09 info: Create room listner started -2026-01-13 18:25:09 info: Create room started -2026-01-13 18:25:09 info: Creating worker started -2026-01-13 18:25:09 info: Creation of worker successfully executed -2026-01-13 18:25:09 info: Creation of router started -2026-01-13 18:25:09 info: Router created for room: caabac26-0b69-4e53-84c0-bf25434860ae -2026-01-13 18:25:09 info: Creation of webRtc server started -2026-01-13 18:25:09 info: WebRTC Server created successfully -2026-01-13 18:25:09 info: Creation of room successfully executed -2026-01-13 18:25:09 info: Add broadcaster started -2026-01-13 18:25:09 info: Get room started -2026-01-13 18:25:09 info: Get room executed successfully -2026-01-13 18:25:09 info: Added broadcaster into memory room -2026-01-13 18:25:09 info: Broadcaster created successfully -2026-01-13 18:25:09 info: Create room listner exceuted successfully -2026-01-13 18:25:09 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 18:25:09 info: Get room started -2026-01-13 18:25:09 info: Get room executed successfully -2026-01-13 18:25:09 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 18:25:09 info: Create broadcaster lister started -2026-01-13 18:25:09 info: Get room started -2026-01-13 18:25:09 info: Get room executed successfully -2026-01-13 18:25:09 info: Creation of webRTC transport started -2026-01-13 18:25:09 info: WebRTC Transport created : 8c46bd94-4ec9-4e7d-b016-cc723fb62752 -2026-01-13 18:25:09 info: Save broadcaster transport executed successfully -2026-01-13 18:25:09 info: Connect broadcaster transport lister started -2026-01-13 18:25:09 info: Get room started -2026-01-13 18:25:09 info: Get room executed successfully -2026-01-13 18:25:09 info: Connect broadcaster transport executed successfully -2026-01-13 18:25:09 info: Producer listener started -2026-01-13 18:25:09 info: Get room started -2026-01-13 18:25:09 info: Get room executed successfully -2026-01-13 18:25:09 info: Producer listener executed successfully: -2026-01-13 18:25:09 info: Producer listener started -2026-01-13 18:25:09 info: Get room started -2026-01-13 18:25:09 info: Get room executed successfully -2026-01-13 18:25:09 info: Producer listener executed successfully: -2026-01-13 18:25:17 info: Join as viewer listner started -2026-01-13 18:25:17 info: Join as viewer started -2026-01-13 18:25:17 info: Get room started -2026-01-13 18:25:17 info: Get room executed successfully -2026-01-13 18:25:17 info: Join as viewer completed successfully -2026-01-13 18:25:17 info: Get room started -2026-01-13 18:25:17 info: Get room executed successfully -2026-01-13 18:25:17 info: Emitting RTP caps -2026-01-13 18:25:17 info: Join viewer listner successfully executed -2026-01-13 18:26:27 info: Join as viewer listner started -2026-01-13 18:26:27 info: Join as viewer started -2026-01-13 18:26:27 info: Get room started -2026-01-13 18:26:27 info: Get room executed successfully -2026-01-13 18:26:27 info: Join as viewer completed successfully -2026-01-13 18:26:27 info: Get room started -2026-01-13 18:26:27 info: Get room executed successfully -2026-01-13 18:26:27 info: Emitting RTP caps -2026-01-13 18:26:27 info: Join viewer listner successfully executed -2026-01-13 18:26:37 info: User disconnected BvelcYwaNbIqozvvAAAD beacuse of transport close -2026-01-13 18:26:38 info: Client connected: E1eeXSyizq54tGTAAAAF -2026-01-13 18:28:06 info: Client connected: Q6ujZOxCLSF6-Zb2AAAH -2026-01-13 18:28:06 info: Client connected: PDS0uc3Wv430CizxAAAJ -2026-01-13 18:28:06 info: Client connected: w6j2kExF6Y8bdE7SAAAL -2026-01-13 18:28:06 info: Client connected: LYI1mTtFW1_9VE95AAAN -2026-01-13 18:30:31 info: User disconnected PDS0uc3Wv430CizxAAAJ beacuse of transport close -2026-01-13 18:30:31 info: User disconnected LYI1mTtFW1_9VE95AAAN beacuse of transport close -2026-01-13 18:30:31 info: User disconnected SVTzgZ-cX-QXix1PAAAB beacuse of transport close -2026-01-13 18:30:32 info: Client connected: AWKvtR4pb5oNBtKGAAAP -2026-01-13 18:30:32 info: User disconnected Q6ujZOxCLSF6-Zb2AAAH beacuse of transport close -2026-01-13 18:30:32 info: User disconnected w6j2kExF6Y8bdE7SAAAL beacuse of transport close -2026-01-13 18:30:32 info: User disconnected E1eeXSyizq54tGTAAAAF beacuse of transport close -2026-01-13 18:30:32 info: Client connected: 54rjGHcdEGy6ceMKAAAR -2026-01-13 18:30:35 info: Create room listner started -2026-01-13 18:30:35 info: Create room started -2026-01-13 18:30:35 info: Creating worker started -2026-01-13 18:30:35 info: Creation of worker successfully executed -2026-01-13 18:30:35 info: Creation of router started -2026-01-13 18:30:35 info: Router created for room: 36729883-9260-42d5-a0ba-a98326fd1486 -2026-01-13 18:30:35 info: Creation of webRtc server started -2026-01-13 18:30:35 info: WebRTC Server created successfully -2026-01-13 18:30:35 info: Creation of room successfully executed -2026-01-13 18:30:35 info: Add broadcaster started -2026-01-13 18:30:35 info: Get room started -2026-01-13 18:30:35 info: Get room executed successfully -2026-01-13 18:30:35 info: Added broadcaster into memory room -2026-01-13 18:30:35 info: Broadcaster created successfully -2026-01-13 18:30:35 info: Create room listner exceuted successfully -2026-01-13 18:30:35 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 18:30:35 info: Get room started -2026-01-13 18:30:35 info: Get room executed successfully -2026-01-13 18:30:35 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 18:30:35 info: Create broadcaster lister started -2026-01-13 18:30:35 info: Get room started -2026-01-13 18:30:35 info: Get room executed successfully -2026-01-13 18:30:35 info: Creation of webRTC transport started -2026-01-13 18:30:35 info: WebRTC Transport created : 2802bff0-fbe1-4402-92f4-caede39872fc -2026-01-13 18:30:35 info: Save broadcaster transport executed successfully -2026-01-13 18:30:36 info: Connect broadcaster transport lister started -2026-01-13 18:30:36 info: Get room started -2026-01-13 18:30:36 info: Get room executed successfully -2026-01-13 18:30:36 info: Connect broadcaster transport executed successfully -2026-01-13 18:30:36 info: Producer listener started -2026-01-13 18:30:36 info: Get room started -2026-01-13 18:30:36 info: Get room executed successfully -2026-01-13 18:30:36 info: Producer listener executed successfully: -2026-01-13 18:30:36 info: Producer listener started -2026-01-13 18:30:36 info: Get room started -2026-01-13 18:30:36 info: Get room executed successfully -2026-01-13 18:30:36 info: Producer listener executed successfully: -2026-01-13 18:30:51 info: Join as viewer listner started -2026-01-13 18:30:51 info: Join as viewer started -2026-01-13 18:30:51 info: Get room started -2026-01-13 18:30:51 info: Get room executed successfully -2026-01-13 18:30:51 info: Join as viewer completed successfully -2026-01-13 18:30:51 info: Get room started -2026-01-13 18:30:51 info: Get room executed successfully -2026-01-13 18:30:51 info: Emitting RTP caps -2026-01-13 18:30:51 info: Join viewer listner successfully executed -2026-01-13 18:31:38 info: User disconnected 54rjGHcdEGy6ceMKAAAR beacuse of transport close -2026-01-13 18:31:38 info: Client connected: Qp9ovEEojmSkKnZzAAAT -2026-01-13 18:31:39 info: User disconnected AWKvtR4pb5oNBtKGAAAP beacuse of transport close -2026-01-13 18:31:39 info: Client connected: PtXH5tA7DOXn9FTXAAAV -2026-01-13 18:33:17 info: Client connected: tdcT589ktR9SuwZAAAAB -2026-01-13 18:33:18 info: User disconnected tdcT589ktR9SuwZAAAAB beacuse of transport close -2026-01-13 18:33:19 info: Client connected: 15yhfDtJwe1BenugAAAD -2026-01-13 18:33:19 info: Client connected: -074BB_lRea6bo0wAAAF -2026-01-13 18:33:24 info: Create room listner started -2026-01-13 18:33:24 info: Create room started -2026-01-13 18:33:24 info: Creating worker started -2026-01-13 18:33:25 info: Creation of worker successfully executed -2026-01-13 18:33:25 info: Creation of router started -2026-01-13 18:33:25 info: Router created for room: 777576ad-722e-451e-a63a-cd0ea2d28949 -2026-01-13 18:33:25 info: Creation of webRtc server started -2026-01-13 18:33:25 info: WebRTC Server created successfully -2026-01-13 18:33:25 info: Creation of room successfully executed -2026-01-13 18:33:25 info: Add broadcaster started -2026-01-13 18:33:25 info: Get room started -2026-01-13 18:33:25 info: Get room executed successfully -2026-01-13 18:33:25 info: Added broadcaster into memory room -2026-01-13 18:33:25 info: Broadcaster created successfully -2026-01-13 18:33:25 info: Create room listner exceuted successfully -2026-01-13 18:33:25 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 18:33:25 info: Get room started -2026-01-13 18:33:25 info: Get room executed successfully -2026-01-13 18:33:25 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 18:33:25 info: Create broadcaster lister started -2026-01-13 18:33:25 info: Get room started -2026-01-13 18:33:25 info: Get room executed successfully -2026-01-13 18:33:25 info: Creation of webRTC transport started -2026-01-13 18:33:25 info: WebRTC Transport created : b50a2c7e-db80-49de-b410-f05cb847ad2a -2026-01-13 18:33:25 info: Save broadcaster transport executed successfully -2026-01-13 18:33:25 info: Connect broadcaster transport lister started -2026-01-13 18:33:25 info: Get room started -2026-01-13 18:33:25 info: Get room executed successfully -2026-01-13 18:33:25 info: Connect broadcaster transport executed successfully -2026-01-13 18:33:25 info: Producer listener started -2026-01-13 18:33:25 info: Get room started -2026-01-13 18:33:25 info: Get room executed successfully -2026-01-13 18:33:25 info: Producer listener executed successfully: -2026-01-13 18:33:25 info: Producer listener started -2026-01-13 18:33:25 info: Get room started -2026-01-13 18:33:25 info: Get room executed successfully -2026-01-13 18:33:25 info: Producer listener executed successfully: -2026-01-13 18:33:35 info: Join as viewer listner started -2026-01-13 18:33:35 info: Join as viewer started -2026-01-13 18:33:35 info: Get room started -2026-01-13 18:33:35 info: Get room executed successfully -2026-01-13 18:33:35 info: Join as viewer completed successfully -2026-01-13 18:33:35 info: Get room started -2026-01-13 18:33:35 info: Get room executed successfully -2026-01-13 18:33:35 info: Emitting RTP caps -2026-01-13 18:33:35 info: Join viewer listner successfully executed -2026-01-13 18:34:10 info: User disconnected 15yhfDtJwe1BenugAAAD beacuse of transport close -2026-01-13 18:34:10 info: Client connected: eZ2dxp1mp6emmPSwAAAH -2026-01-13 18:34:10 info: User disconnected -074BB_lRea6bo0wAAAF beacuse of transport close -2026-01-13 18:34:11 info: Client connected: dgWNsRzmkGMzxLs9AAAJ -2026-01-13 18:43:11 info: Client connected: WjshsR-JjjLOMBvKAAAB -2026-01-13 18:43:11 info: Client connected: vCeMXjT9cFmsER2bAAAD -2026-01-13 18:43:18 info: User disconnected vCeMXjT9cFmsER2bAAAD beacuse of transport close -2026-01-13 18:43:19 info: Client connected: oQpXSR8BTDKWg9ToAAAF -2026-01-13 18:43:21 info: Create room listner started -2026-01-13 18:43:21 info: Create room started -2026-01-13 18:43:21 info: Creating worker started -2026-01-13 18:43:21 info: Creation of worker successfully executed -2026-01-13 18:43:21 info: Creation of router started -2026-01-13 18:43:21 info: Router created for room: 0a9da56b-3e08-470d-b0ae-724b2d65ff14 -2026-01-13 18:43:21 info: Creation of webRtc server started -2026-01-13 18:43:21 info: WebRTC Server created successfully -2026-01-13 18:43:21 info: Creation of room successfully executed -2026-01-13 18:43:21 info: Add broadcaster started -2026-01-13 18:43:21 info: Get room started -2026-01-13 18:43:21 info: Get room executed successfully -2026-01-13 18:43:21 info: Added broadcaster into memory room -2026-01-13 18:43:21 info: Broadcaster created successfully -2026-01-13 18:43:21 info: Create room listner exceuted successfully -2026-01-13 18:43:21 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 18:43:21 info: Get room started -2026-01-13 18:43:21 info: Get room executed successfully -2026-01-13 18:43:21 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 18:43:21 info: Create broadcaster lister started -2026-01-13 18:43:21 info: Get room started -2026-01-13 18:43:21 info: Get room executed successfully -2026-01-13 18:43:21 info: Creation of webRTC transport started -2026-01-13 18:43:21 info: WebRTC Transport created : db0fcc45-2628-4c18-ad34-9eca9684eee5 -2026-01-13 18:43:21 info: Save broadcaster transport executed successfully -2026-01-13 18:43:21 info: Connect broadcaster transport lister started -2026-01-13 18:43:21 info: Get room started -2026-01-13 18:43:21 info: Get room executed successfully -2026-01-13 18:43:21 info: Connect broadcaster transport executed successfully -2026-01-13 18:43:21 info: Producer listener started -2026-01-13 18:43:21 info: Get room started -2026-01-13 18:43:21 info: Get room executed successfully -2026-01-13 18:43:21 info: Producer listener executed successfully: -2026-01-13 18:43:21 info: Producer listener started -2026-01-13 18:43:21 info: Get room started -2026-01-13 18:43:21 info: Get room executed successfully -2026-01-13 18:43:21 info: Producer listener executed successfully: -2026-01-13 18:43:26 info: User disconnected WjshsR-JjjLOMBvKAAAB beacuse of transport close -2026-01-13 18:43:26 info: Client connected: cTFiJgkGXqZW1WAKAAAH -2026-01-13 18:43:28 info: Join as viewer listner started -2026-01-13 18:43:28 info: Join as viewer started -2026-01-13 18:43:28 info: Get room started -2026-01-13 18:43:28 info: Get room executed successfully -2026-01-13 18:43:28 info: Join as viewer completed successfully -2026-01-13 18:43:28 info: Get room started -2026-01-13 18:43:28 info: Get room executed successfully -2026-01-13 18:43:28 info: Join viewer listner successfully executed -2026-01-13 18:44:42 info: User disconnected oQpXSR8BTDKWg9ToAAAF beacuse of transport close -2026-01-13 18:44:42 info: Client connected: a8MptJHMfyQYfFmJAAAJ -2026-01-13 18:44:43 info: User disconnected cTFiJgkGXqZW1WAKAAAH beacuse of transport close -2026-01-13 18:44:43 info: Client connected: KJ-n4Nkxiv-g1rsAAAAL -2026-01-13 18:46:39 info: User disconnected a8MptJHMfyQYfFmJAAAJ beacuse of transport close -2026-01-13 18:46:39 info: Client connected: zPOE7uHry7_t7A6DAAAN -2026-01-13 18:46:39 info: User disconnected KJ-n4Nkxiv-g1rsAAAAL beacuse of transport close -2026-01-13 18:46:40 info: Client connected: sdX0kQpZs_PFXbGcAAAP -2026-01-13 18:46:41 info: Create room listner started -2026-01-13 18:46:41 info: Create room started -2026-01-13 18:46:41 info: Creating worker started -2026-01-13 18:46:41 info: Creation of worker successfully executed -2026-01-13 18:46:41 info: Creation of router started -2026-01-13 18:46:41 info: Router created for room: 9828fc5e-3baa-4f6f-90db-abae3c446a39 -2026-01-13 18:46:41 info: Creation of webRtc server started -2026-01-13 18:46:41 info: WebRTC Server created successfully -2026-01-13 18:46:41 info: Creation of room successfully executed -2026-01-13 18:46:41 info: Add broadcaster started -2026-01-13 18:46:41 info: Get room started -2026-01-13 18:46:41 info: Get room executed successfully -2026-01-13 18:46:41 info: Added broadcaster into memory room -2026-01-13 18:46:41 info: Broadcaster created successfully -2026-01-13 18:46:41 info: Create room listner exceuted successfully -2026-01-13 18:46:41 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 18:46:41 info: Get room started -2026-01-13 18:46:41 info: Get room executed successfully -2026-01-13 18:46:41 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 18:46:41 info: Create broadcaster lister started -2026-01-13 18:46:41 info: Get room started -2026-01-13 18:46:41 info: Get room executed successfully -2026-01-13 18:46:41 info: Creation of webRTC transport started -2026-01-13 18:46:41 info: WebRTC Transport created : 3d7d5999-3500-42b4-b956-e57d8de9f47f -2026-01-13 18:46:41 info: Save broadcaster transport executed successfully -2026-01-13 18:46:42 info: Connect broadcaster transport lister started -2026-01-13 18:46:42 info: Get room started -2026-01-13 18:46:42 info: Get room executed successfully -2026-01-13 18:46:42 info: Connect broadcaster transport executed successfully -2026-01-13 18:46:42 info: Producer listener started -2026-01-13 18:46:42 info: Get room started -2026-01-13 18:46:42 info: Get room executed successfully -2026-01-13 18:46:42 info: Producer listener executed successfully: -2026-01-13 18:46:42 info: Producer listener started -2026-01-13 18:46:42 info: Get room started -2026-01-13 18:46:42 info: Get room executed successfully -2026-01-13 18:46:42 info: Producer listener executed successfully: -2026-01-13 18:46:47 info: Join as viewer listner started -2026-01-13 18:46:47 info: Join as viewer started -2026-01-13 18:46:47 info: Get room started -2026-01-13 18:46:47 info: Get room executed successfully -2026-01-13 18:46:47 info: Join as viewer completed successfully -2026-01-13 18:46:47 info: Get room started -2026-01-13 18:46:47 info: Get room executed successfully -2026-01-13 18:46:47 info: Join viewer listner successfully executed -2026-01-13 18:47:43 info: User disconnected zPOE7uHry7_t7A6DAAAN beacuse of transport close -2026-01-13 18:47:43 info: Client connected: BfxJkpmk0J4FMn81AAAR -2026-01-13 18:47:44 info: User disconnected sdX0kQpZs_PFXbGcAAAP beacuse of transport close -2026-01-13 18:47:44 info: Client connected: cFJ7VMY7LWfpXsklAAAT -2026-01-13 18:48:22 info: User disconnected BfxJkpmk0J4FMn81AAAR beacuse of transport close -2026-01-13 18:48:22 info: Client connected: X3wAG3vmMWOhQvSbAAAV -2026-01-13 18:48:23 info: User disconnected cFJ7VMY7LWfpXsklAAAT beacuse of transport close -2026-01-13 18:48:23 info: Client connected: uSEN4N4LJorGJWScAAAX -2026-01-13 18:48:24 info: Create room listner started -2026-01-13 18:48:24 info: Create room started -2026-01-13 18:48:24 info: Creating worker started -2026-01-13 18:48:24 info: Creation of worker successfully executed -2026-01-13 18:48:24 info: Creation of router started -2026-01-13 18:48:24 info: Router created for room: 7b809a2a-0069-42c4-8d7e-7bef5636b9c3 -2026-01-13 18:48:24 info: Creation of webRtc server started -2026-01-13 18:48:24 info: WebRTC Server created successfully -2026-01-13 18:48:24 info: Creation of room successfully executed -2026-01-13 18:48:24 info: Add broadcaster started -2026-01-13 18:48:24 info: Get room started -2026-01-13 18:48:24 info: Get room executed successfully -2026-01-13 18:48:24 info: Added broadcaster into memory room -2026-01-13 18:48:24 info: Broadcaster created successfully -2026-01-13 18:48:24 info: Create room listner exceuted successfully -2026-01-13 18:48:24 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 18:48:24 info: Get room started -2026-01-13 18:48:24 info: Get room executed successfully -2026-01-13 18:48:24 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 18:48:24 info: Create broadcaster lister started -2026-01-13 18:48:24 info: Get room started -2026-01-13 18:48:24 info: Get room executed successfully -2026-01-13 18:48:24 info: Creation of webRTC transport started -2026-01-13 18:48:24 info: WebRTC Transport created : ea5fa267-e004-44a0-b3ee-4c95637172c5 -2026-01-13 18:48:24 info: Save broadcaster transport executed successfully -2026-01-13 18:48:24 info: Connect broadcaster transport lister started -2026-01-13 18:48:24 info: Get room started -2026-01-13 18:48:24 info: Get room executed successfully -2026-01-13 18:48:24 info: Connect broadcaster transport executed successfully -2026-01-13 18:48:24 info: Producer listener started -2026-01-13 18:48:24 info: Get room started -2026-01-13 18:48:24 info: Get room executed successfully -2026-01-13 18:48:24 info: Producer listener executed successfully: -2026-01-13 18:48:24 info: Producer listener started -2026-01-13 18:48:24 info: Get room started -2026-01-13 18:48:24 info: Get room executed successfully -2026-01-13 18:48:24 info: Producer listener executed successfully: -2026-01-13 18:48:29 info: Join as viewer listner started -2026-01-13 18:48:29 info: Join as viewer started -2026-01-13 18:48:29 info: Get room started -2026-01-13 18:48:29 info: Get room executed successfully -2026-01-13 18:48:29 info: Join as viewer completed successfully -2026-01-13 18:48:29 info: Get room started -2026-01-13 18:48:29 info: Get room executed successfully -2026-01-13 18:48:29 info: Join viewer listner successfully executed -2026-01-13 18:48:45 info: User disconnected uSEN4N4LJorGJWScAAAX beacuse of transport close -2026-01-13 18:48:45 info: Client connected: bwjqOqryRublXspYAAAZ -2026-01-13 18:48:49 info: User disconnected X3wAG3vmMWOhQvSbAAAV beacuse of transport close -2026-01-13 18:48:49 info: Client connected: NSH-UaAWkcWLtgXyAAAb -2026-01-13 18:48:50 info: User disconnected bwjqOqryRublXspYAAAZ beacuse of transport close -2026-01-13 18:48:50 info: Client connected: yaPRRRl3Qw-E2BwxAAAd -2026-01-13 18:48:51 info: Create room listner started -2026-01-13 18:48:51 info: Create room started -2026-01-13 18:48:51 info: Creating worker started -2026-01-13 18:48:51 info: Creation of worker successfully executed -2026-01-13 18:48:51 info: Creation of router started -2026-01-13 18:48:51 info: Router created for room: b76d70ed-61be-4cb1-8981-edcaa534ff7c -2026-01-13 18:48:51 info: Creation of webRtc server started -2026-01-13 18:48:51 info: WebRTC Server created successfully -2026-01-13 18:48:51 info: Creation of room successfully executed -2026-01-13 18:48:51 info: Add broadcaster started -2026-01-13 18:48:51 info: Get room started -2026-01-13 18:48:51 info: Get room executed successfully -2026-01-13 18:48:51 info: Added broadcaster into memory room -2026-01-13 18:48:51 info: Broadcaster created successfully -2026-01-13 18:48:51 info: Create room listner exceuted successfully -2026-01-13 18:48:51 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 18:48:51 info: Get room started -2026-01-13 18:48:51 info: Get room executed successfully -2026-01-13 18:48:51 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 18:48:52 info: Create broadcaster lister started -2026-01-13 18:48:52 info: Get room started -2026-01-13 18:48:52 info: Get room executed successfully -2026-01-13 18:48:52 info: Creation of webRTC transport started -2026-01-13 18:48:52 info: WebRTC Transport created : 4c44d1bd-2d70-401b-9ab1-28f8187c28cb -2026-01-13 18:48:52 info: Save broadcaster transport executed successfully -2026-01-13 18:48:52 info: Connect broadcaster transport lister started -2026-01-13 18:48:52 info: Get room started -2026-01-13 18:48:52 info: Get room executed successfully -2026-01-13 18:48:52 info: Connect broadcaster transport executed successfully -2026-01-13 18:48:52 info: Producer listener started -2026-01-13 18:48:52 info: Get room started -2026-01-13 18:48:52 info: Get room executed successfully -2026-01-13 18:48:52 info: Producer listener executed successfully: -2026-01-13 18:48:52 info: Producer listener started -2026-01-13 18:48:52 info: Get room started -2026-01-13 18:48:52 info: Get room executed successfully -2026-01-13 18:48:52 info: Producer listener executed successfully: -2026-01-13 18:48:56 info: Join as viewer listner started -2026-01-13 18:48:56 info: Join as viewer started -2026-01-13 18:48:56 info: Get room started -2026-01-13 18:48:56 info: Get room executed successfully -2026-01-13 18:48:56 info: Join as viewer completed successfully -2026-01-13 18:48:56 info: Get room started -2026-01-13 18:48:56 info: Get room executed successfully -2026-01-13 18:48:56 info: Join viewer listner successfully executed -2026-01-13 18:49:30 info: User disconnected NSH-UaAWkcWLtgXyAAAb beacuse of transport close -2026-01-13 18:49:30 info: Client connected: zjauTPeY4MQ3O9WwAAAf -2026-01-13 18:49:32 info: User disconnected yaPRRRl3Qw-E2BwxAAAd beacuse of transport close -2026-01-13 18:49:32 info: Client connected: TjKkLW1B91uuFv_HAAAh -2026-01-13 18:52:29 info: Client connected: SWETrwzr-TT-vfifAAAB -2026-01-13 18:52:29 info: Client connected: onGxNdqLg0MvmzNbAAAD -2026-01-13 18:52:31 info: Create room listner started -2026-01-13 18:52:31 info: Create room started -2026-01-13 18:52:31 info: Creating worker started -2026-01-13 18:52:31 info: Creation of worker successfully executed -2026-01-13 18:52:31 info: Creation of router started -2026-01-13 18:52:31 info: Router created for room: 1e0bcc7d-db53-4342-842a-c8e0f0b4dbde -2026-01-13 18:52:31 info: Creation of webRtc server started -2026-01-13 18:52:31 info: WebRTC Server created successfully -2026-01-13 18:52:31 info: Creation of room successfully executed -2026-01-13 18:52:31 info: Add broadcaster started -2026-01-13 18:52:31 info: Get room started -2026-01-13 18:52:31 info: Get room executed successfully -2026-01-13 18:52:31 info: Added broadcaster into memory room -2026-01-13 18:52:31 info: Broadcaster created successfully -2026-01-13 18:52:31 info: Create room listner exceuted successfully -2026-01-13 18:52:31 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 18:52:31 info: Get room started -2026-01-13 18:52:31 info: Get room executed successfully -2026-01-13 18:52:31 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 18:52:31 info: Create broadcaster lister started -2026-01-13 18:52:31 info: Get room started -2026-01-13 18:52:31 info: Get room executed successfully -2026-01-13 18:52:31 info: Creation of webRTC transport started -2026-01-13 18:52:31 info: WebRTC Transport created : 29974a5b-6614-4d86-8070-0da8ed2d6f8e -2026-01-13 18:52:31 info: Save broadcaster transport executed successfully -2026-01-13 18:52:31 info: Connect broadcaster transport lister started -2026-01-13 18:52:31 info: Get room started -2026-01-13 18:52:31 info: Get room executed successfully -2026-01-13 18:52:31 info: Connect broadcaster transport executed successfully -2026-01-13 18:52:31 info: Producer listener started -2026-01-13 18:52:31 info: Get room started -2026-01-13 18:52:31 info: Get room executed successfully -2026-01-13 18:52:31 info: Producer listener executed successfully: -2026-01-13 18:52:31 info: Producer listener started -2026-01-13 18:52:31 info: Get room started -2026-01-13 18:52:31 info: Get room executed successfully -2026-01-13 18:52:31 info: Producer listener executed successfully: -2026-01-13 18:52:38 info: Join as viewer listner started -2026-01-13 18:52:38 info: Join as viewer started -2026-01-13 18:52:38 info: Get room started -2026-01-13 18:52:38 info: Get room executed successfully -2026-01-13 18:52:38 info: Join as viewer completed successfully -2026-01-13 18:52:38 info: Get room started -2026-01-13 18:52:38 info: Get room executed successfully -2026-01-13 18:52:38 info: Join viewer listner successfully executed -2026-01-13 18:54:26 info: Client connected: SFFJhvGqQx56VxTkAAAB -2026-01-13 18:54:27 info: Client connected: UUICWiIkmT1mHR8jAAAD -2026-01-13 18:54:29 info: Create room listner started -2026-01-13 18:54:29 info: Create room started -2026-01-13 18:54:29 info: Creating worker started -2026-01-13 18:54:29 info: Creation of worker successfully executed -2026-01-13 18:54:29 info: Creation of router started -2026-01-13 18:54:29 info: Router created for room: 86b7a438-4c48-43cc-b6c1-d919b361472e -2026-01-13 18:54:29 info: Creation of webRtc server started -2026-01-13 18:54:29 info: WebRTC Server created successfully -2026-01-13 18:54:29 info: Creation of room successfully executed -2026-01-13 18:54:29 info: Add broadcaster started -2026-01-13 18:54:29 info: Get room started -2026-01-13 18:54:29 info: Get room executed successfully -2026-01-13 18:54:29 info: Added broadcaster into memory room -2026-01-13 18:54:29 info: Broadcaster created successfully -2026-01-13 18:54:29 info: Create room listner exceuted successfully -2026-01-13 18:54:29 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 18:54:29 info: Get room started -2026-01-13 18:54:29 info: Get room executed successfully -2026-01-13 18:54:29 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 18:54:29 info: Create broadcaster lister started -2026-01-13 18:54:29 info: Get room started -2026-01-13 18:54:29 info: Get room executed successfully -2026-01-13 18:54:29 info: Creation of webRTC transport started -2026-01-13 18:54:29 info: WebRTC Transport created : 840ba889-af2f-4794-bac7-eda4c0a686ce -2026-01-13 18:54:29 info: Save broadcaster transport executed successfully -2026-01-13 18:54:29 info: Connect broadcaster transport lister started -2026-01-13 18:54:29 info: Get room started -2026-01-13 18:54:29 info: Get room executed successfully -2026-01-13 18:54:29 info: Connect broadcaster transport executed successfully -2026-01-13 18:54:29 info: Producer listener started -2026-01-13 18:54:29 info: Get room started -2026-01-13 18:54:29 info: Get room executed successfully -2026-01-13 18:54:29 info: Producer listener executed successfully: -2026-01-13 18:54:29 info: Producer listener started -2026-01-13 18:54:29 info: Get room started -2026-01-13 18:54:29 info: Get room executed successfully -2026-01-13 18:54:29 info: Producer listener executed successfully: -2026-01-13 18:54:34 info: Join as viewer listner started -2026-01-13 18:54:34 info: Join as viewer started -2026-01-13 18:54:34 info: Get room started -2026-01-13 18:54:34 info: Get room executed successfully -2026-01-13 18:54:34 info: Join as viewer completed successfully -2026-01-13 18:54:34 info: Get room started -2026-01-13 18:54:34 info: Get room executed successfully -2026-01-13 18:54:34 info: Join viewer listner successfully executed -2026-01-13 18:54:43 info: User disconnected UUICWiIkmT1mHR8jAAAD beacuse of transport close -2026-01-13 18:54:43 info: Client connected: fNroqoGWjvnYyovRAAAF -2026-01-13 18:54:50 info: Join as viewer listner started -2026-01-13 18:54:50 info: Join as viewer started -2026-01-13 18:54:50 info: Get room started -2026-01-13 18:54:50 info: Get room executed successfully -2026-01-13 18:54:50 info: Join as viewer completed successfully -2026-01-13 18:54:50 info: Get room started -2026-01-13 18:54:50 info: Get room executed successfully -2026-01-13 18:54:50 info: Join viewer listner successfully executed -2026-01-13 18:55:28 info: User disconnected SFFJhvGqQx56VxTkAAAB beacuse of transport close -2026-01-13 18:55:28 info: Client connected: Zw6XtTsXwTimU8_YAAAH -2026-01-13 18:55:28 info: User disconnected fNroqoGWjvnYyovRAAAF beacuse of transport close -2026-01-13 18:55:29 info: Client connected: QAsmWUl27yM7sZR5AAAJ -2026-01-13 18:56:10 info: Client connected: KT96n4SRqP6gJQpJAAAB -2026-01-13 18:56:14 info: Client connected: nqS-Qd4vhc8in6vhAAAD -2026-01-13 18:56:16 info: Create room listner started -2026-01-13 18:56:16 info: Create room started -2026-01-13 18:56:16 info: Creating worker started -2026-01-13 18:56:16 info: Creation of worker successfully executed -2026-01-13 18:56:16 info: Creation of router started -2026-01-13 18:56:16 info: Router created for room: d61f3633-0dda-44c7-87a8-ba455dfbaf2b -2026-01-13 18:56:16 info: Creation of webRtc server started -2026-01-13 18:56:16 info: WebRTC Server created successfully -2026-01-13 18:56:16 info: Creation of room successfully executed -2026-01-13 18:56:16 info: Add broadcaster started -2026-01-13 18:56:16 info: Get room started -2026-01-13 18:56:16 info: Get room executed successfully -2026-01-13 18:56:16 info: Added broadcaster into memory room -2026-01-13 18:56:16 info: Broadcaster created successfully -2026-01-13 18:56:16 info: Create room listner exceuted successfully -2026-01-13 18:56:16 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 18:56:16 info: Get room started -2026-01-13 18:56:16 info: Get room executed successfully -2026-01-13 18:56:16 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 18:56:16 info: Create broadcaster lister started -2026-01-13 18:56:16 info: Get room started -2026-01-13 18:56:16 info: Get room executed successfully -2026-01-13 18:56:16 info: Creation of webRTC transport started -2026-01-13 18:56:16 info: WebRTC Transport created : cc4efe08-5c9c-435b-a10f-4a7289240936 -2026-01-13 18:56:16 info: Save broadcaster transport executed successfully -2026-01-13 18:56:17 info: Connect broadcaster transport lister started -2026-01-13 18:56:17 info: Get room started -2026-01-13 18:56:17 info: Get room executed successfully -2026-01-13 18:56:17 info: Connect broadcaster transport executed successfully -2026-01-13 18:56:17 info: Producer listener started -2026-01-13 18:56:17 info: Get room started -2026-01-13 18:56:17 info: Get room executed successfully -2026-01-13 18:56:17 info: Producer listener executed successfully: -2026-01-13 18:56:17 info: Producer listener started -2026-01-13 18:56:17 info: Get room started -2026-01-13 18:56:17 info: Get room executed successfully -2026-01-13 18:56:17 info: Producer listener executed successfully: -2026-01-13 18:56:22 info: Join as viewer listner started -2026-01-13 18:56:22 info: Join as viewer started -2026-01-13 18:56:22 info: Get room started -2026-01-13 18:56:22 info: Get room executed successfully -2026-01-13 18:56:22 info: Join as viewer completed successfully -2026-01-13 18:56:22 info: Get room started -2026-01-13 18:56:22 info: Get room executed successfully -2026-01-13 18:56:22 info: Join viewer listner successfully executed -2026-01-13 18:56:22 info: Create viewer transport listner started -2026-01-13 18:56:22 info: Get room started -2026-01-13 18:56:22 info: Get room executed successfully -2026-01-13 18:56:22 info: Create viewer transport started -2026-01-13 18:56:22 info: Get room started -2026-01-13 18:56:22 info: Get room executed successfully -2026-01-13 18:56:22 info: Creation of webRTC transport started -2026-01-13 18:56:22 info: WebRTC Transport created : a143652d-db5d-49b9-a9f5-2d34dbe0e5c6 -2026-01-13 18:56:22 info: Create viewer transport successfully executed -2026-01-13 18:56:22 info: Create viewer transport listner successfully executed -2026-01-13 18:57:05 info: Client connected: XzLziBknqnyew60JAAAB -2026-01-13 18:57:06 info: Client connected: qUqAqn5j7UZ6TPv-AAAD -2026-01-13 18:57:08 info: Create room listner started -2026-01-13 18:57:08 info: Create room started -2026-01-13 18:57:08 info: Creating worker started -2026-01-13 18:57:08 info: Creation of worker successfully executed -2026-01-13 18:57:08 info: Creation of router started -2026-01-13 18:57:09 info: Router created for room: b4c7894f-eaa8-4d19-8347-751dec87b10f -2026-01-13 18:57:09 info: Creation of webRtc server started -2026-01-13 18:57:09 info: WebRTC Server created successfully -2026-01-13 18:57:09 info: Creation of room successfully executed -2026-01-13 18:57:09 info: Add broadcaster started -2026-01-13 18:57:09 info: Get room started -2026-01-13 18:57:09 info: Get room executed successfully -2026-01-13 18:57:09 info: Added broadcaster into memory room -2026-01-13 18:57:09 info: Broadcaster created successfully -2026-01-13 18:57:09 info: Create room listner exceuted successfully -2026-01-13 18:57:09 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 18:57:09 info: Get room started -2026-01-13 18:57:09 info: Get room executed successfully -2026-01-13 18:57:09 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 18:57:09 info: Create broadcaster lister started -2026-01-13 18:57:09 info: Get room started -2026-01-13 18:57:09 info: Get room executed successfully -2026-01-13 18:57:09 info: Creation of webRTC transport started -2026-01-13 18:57:09 info: WebRTC Transport created : f969b932-5ab1-4197-9e9b-a432c3652a11 -2026-01-13 18:57:09 info: Save broadcaster transport executed successfully -2026-01-13 18:57:09 info: Connect broadcaster transport lister started -2026-01-13 18:57:09 info: Get room started -2026-01-13 18:57:09 info: Get room executed successfully -2026-01-13 18:57:09 info: Connect broadcaster transport executed successfully -2026-01-13 18:57:09 info: Producer listener started -2026-01-13 18:57:09 info: Get room started -2026-01-13 18:57:09 info: Get room executed successfully -2026-01-13 18:57:09 info: Producer listener executed successfully: -2026-01-13 18:57:09 info: Producer listener started -2026-01-13 18:57:09 info: Get room started -2026-01-13 18:57:09 info: Get room executed successfully -2026-01-13 18:57:09 info: Producer listener executed successfully: -2026-01-13 18:57:14 info: Join as viewer listner started -2026-01-13 18:57:14 info: Join as viewer started -2026-01-13 18:57:14 info: Get room started -2026-01-13 18:57:14 info: Get room executed successfully -2026-01-13 18:57:14 info: Join as viewer completed successfully -2026-01-13 18:57:14 info: Get room started -2026-01-13 18:57:14 info: Get room executed successfully -2026-01-13 18:57:14 info: Join viewer listner successfully executed -2026-01-13 18:57:14 info: Create viewer transport listner started -2026-01-13 18:57:14 info: Get room started -2026-01-13 18:57:14 info: Get room executed successfully -2026-01-13 18:57:14 info: Create viewer transport started -2026-01-13 18:57:14 info: Get room started -2026-01-13 18:57:14 info: Get room executed successfully -2026-01-13 18:57:14 info: Creation of webRTC transport started -2026-01-13 18:57:14 info: WebRTC Transport created : 5e53ee27-a5fa-4aef-9916-78522b3e34df -2026-01-13 18:57:14 info: Create viewer transport successfully executed -2026-01-13 18:57:14 info: Create viewer transport listner successfully executed -2026-01-13 18:58:11 info: Client connected: FUqFfIHVQq0o3tFMAAAB -2026-01-13 18:58:13 info: Client connected: 3D16IanChUOll19dAAAD -2026-01-13 18:58:20 info: Client connected: O4fCENeqga7mXqCpAAAB -2026-01-13 18:58:21 info: Client connected: 9DG2wHYiD7LqXBugAAAD -2026-01-13 18:58:24 info: Join as viewer listner started -2026-01-13 18:58:24 info: Join as viewer started -2026-01-13 18:58:24 info: Get room started -2026-01-13 18:58:24 error: Room not found -2026-01-13 18:58:24 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at joinAsViewer (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/viewer.handler.ts:18:25) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:20:25) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-13 18:58:24 error: Room does not exist with b4c7894f-eaa8-4d19-8347-751dec87b10f -2026-01-13 18:58:24 info: Get room started -2026-01-13 18:58:24 error: Room not found -2026-01-13 18:58:24 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:23:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-13 18:58:24 error: Room router not found -2026-01-13 18:58:27 info: User disconnected 9DG2wHYiD7LqXBugAAAD beacuse of transport close -2026-01-13 18:58:28 info: Client connected: m6jmcgGw-X9z_To0AAAF -2026-01-13 18:58:28 info: User disconnected O4fCENeqga7mXqCpAAAB beacuse of transport close -2026-01-13 18:58:28 info: Client connected: i3p_IMilxs9d3pozAAAH -2026-01-13 18:58:30 info: Create room listner started -2026-01-13 18:58:30 info: Create room started -2026-01-13 18:58:30 info: Creating worker started -2026-01-13 18:58:30 info: Creation of worker successfully executed -2026-01-13 18:58:30 info: Creation of router started -2026-01-13 18:58:30 info: Router created for room: df32aad4-3df1-4ab2-acb4-70cc608b80ab -2026-01-13 18:58:30 info: Creation of webRtc server started -2026-01-13 18:58:30 info: WebRTC Server created successfully -2026-01-13 18:58:30 info: Creation of room successfully executed -2026-01-13 18:58:30 info: Add broadcaster started -2026-01-13 18:58:30 info: Get room started -2026-01-13 18:58:30 info: Get room executed successfully -2026-01-13 18:58:30 info: Added broadcaster into memory room -2026-01-13 18:58:30 info: Broadcaster created successfully -2026-01-13 18:58:30 info: Create room listner exceuted successfully -2026-01-13 18:58:30 info: Get getRouterRtpCapabilities socket lister started -2026-01-13 18:58:30 info: Get room started -2026-01-13 18:58:30 info: Get room executed successfully -2026-01-13 18:58:30 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-13 18:58:30 info: Create broadcaster lister started -2026-01-13 18:58:30 info: Get room started -2026-01-13 18:58:30 info: Get room executed successfully -2026-01-13 18:58:30 info: Creation of webRTC transport started -2026-01-13 18:58:30 info: WebRTC Transport created : 79c5eced-bae7-4020-bac0-c8e34138f070 -2026-01-13 18:58:30 info: Save broadcaster transport executed successfully -2026-01-13 18:58:30 info: Connect broadcaster transport lister started -2026-01-13 18:58:30 info: Get room started -2026-01-13 18:58:30 info: Get room executed successfully -2026-01-13 18:58:30 info: Connect broadcaster transport executed successfully -2026-01-13 18:58:30 info: Producer listener started -2026-01-13 18:58:30 info: Get room started -2026-01-13 18:58:30 info: Get room executed successfully -2026-01-13 18:58:30 info: Producer listener executed successfully: -2026-01-13 18:58:30 info: Producer listener started -2026-01-13 18:58:30 info: Get room started -2026-01-13 18:58:30 info: Get room executed successfully -2026-01-13 18:58:30 info: Producer listener executed successfully: -2026-01-13 18:58:36 info: Join as viewer listner started -2026-01-13 18:58:36 info: Join as viewer started -2026-01-13 18:58:36 info: Get room started -2026-01-13 18:58:36 info: Get room executed successfully -2026-01-13 18:58:36 info: Join as viewer completed successfully -2026-01-13 18:58:36 info: Get room started -2026-01-13 18:58:36 info: Get room executed successfully -2026-01-13 18:58:36 info: Join viewer listner successfully executed -2026-01-13 18:58:36 info: Create viewer transport listner started -2026-01-13 18:58:36 info: Get room started -2026-01-13 18:58:36 info: Get room executed successfully -2026-01-13 18:58:36 info: Create viewer transport started -2026-01-13 18:58:36 info: Get room started -2026-01-13 18:58:36 info: Get room executed successfully -2026-01-13 18:58:36 info: Creation of webRTC transport started -2026-01-13 18:58:36 info: WebRTC Transport created : 8307d7ed-19da-452b-bc8b-f9c2b4ccc609 -2026-01-13 18:58:36 info: Create viewer transport successfully executed -2026-01-13 18:58:36 info: Create viewer transport listner successfully executed -2026-01-13 18:59:11 info: User disconnected i3p_IMilxs9d3pozAAAH beacuse of transport close -2026-01-13 18:59:11 info: User disconnected m6jmcgGw-X9z_To0AAAF beacuse of transport close -2026-01-13 18:59:11 info: Client connected: Z0ar0iFCVlISczUiAAAJ -2026-01-13 18:59:12 info: Client connected: ZICR7PCd20ooWypxAAAL -2026-01-14 10:41:24 info: Client connected: toMMZ2TBjb8b4KK6AAAB -2026-01-14 10:41:27 info: Create room listner started -2026-01-14 10:41:27 info: Create room started -2026-01-14 10:41:27 info: Creating worker started -2026-01-14 10:41:27 info: Creation of worker successfully executed -2026-01-14 10:41:27 info: Creation of router started -2026-01-14 10:41:27 info: Router created for room: 7b633ed4-6532-4262-ace0-6e819f0a6542 -2026-01-14 10:41:27 info: Creation of webRtc server started -2026-01-14 10:41:27 info: WebRTC Server created successfully -2026-01-14 10:41:27 info: Creation of room successfully executed -2026-01-14 10:41:27 info: Add broadcaster started -2026-01-14 10:41:27 info: Get room started -2026-01-14 10:41:27 info: Get room executed successfully -2026-01-14 10:41:27 info: Added broadcaster into memory room -2026-01-14 10:41:27 info: Broadcaster created successfully -2026-01-14 10:41:27 info: Create room listner exceuted successfully -2026-01-14 10:41:27 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 10:41:27 info: Get room started -2026-01-14 10:41:27 info: Get room executed successfully -2026-01-14 10:41:27 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-14 10:41:27 info: Create broadcaster lister started -2026-01-14 10:41:27 info: Get room started -2026-01-14 10:41:27 info: Get room executed successfully -2026-01-14 10:41:27 info: Creation of webRTC transport started -2026-01-14 10:41:27 info: WebRTC Transport created : b88dbc2e-68b4-42fa-8f40-3731dc26e8ef -2026-01-14 10:41:27 info: Save broadcaster transport executed successfully -2026-01-14 10:41:30 info: Connect broadcaster transport lister started -2026-01-14 10:41:30 info: Get room started -2026-01-14 10:41:30 info: Get room executed successfully -2026-01-14 10:41:30 info: Connect broadcaster transport executed successfully -2026-01-14 10:41:30 info: Producer listener started -2026-01-14 10:41:30 info: Get room started -2026-01-14 10:41:30 info: Get room executed successfully -2026-01-14 10:41:30 info: Producer listener executed successfully: -2026-01-14 10:41:30 info: Producer listener started -2026-01-14 10:41:30 info: Get room started -2026-01-14 10:41:30 info: Get room executed successfully -2026-01-14 10:41:30 info: Producer listener executed successfully: -2026-01-14 10:41:33 info: Client connected: kxFek6l1c8o_GjfxAAAD -2026-01-14 10:41:50 info: Join as viewer listner started -2026-01-14 10:41:50 info: Join as viewer started -2026-01-14 10:41:50 info: Get room started -2026-01-14 10:41:50 info: Get room executed successfully -2026-01-14 10:41:50 info: Join as viewer completed successfully -2026-01-14 10:41:50 info: Get room started -2026-01-14 10:41:50 info: Get room executed successfully -2026-01-14 10:41:50 info: Join viewer listner successfully executed -2026-01-14 10:41:50 info: Create viewer transport listner started -2026-01-14 10:41:50 info: Get room started -2026-01-14 10:41:50 info: Get room executed successfully -2026-01-14 10:41:50 info: Create viewer transport started -2026-01-14 10:41:50 info: Get room started -2026-01-14 10:41:50 info: Get room executed successfully -2026-01-14 10:41:50 info: Creation of webRTC transport started -2026-01-14 10:41:50 info: WebRTC Transport created : 022a42c9-809f-441b-a888-aedeece8bdd3 -2026-01-14 10:41:50 info: Create viewer transport successfully executed -2026-01-14 10:41:50 info: Create viewer transport listner successfully executed -2026-01-14 10:43:01 info: User disconnected kxFek6l1c8o_GjfxAAAD beacuse of transport close -2026-01-14 10:43:01 info: Client connected: QXRbZ2QercAfeOmnAAAF -2026-01-14 10:43:02 info: User disconnected toMMZ2TBjb8b4KK6AAAB beacuse of transport close -2026-01-14 10:43:02 info: Client connected: D95hycxXGndj-pbqAAAH -2026-01-14 10:43:04 info: Create room listner started -2026-01-14 10:43:04 info: Create room started -2026-01-14 10:43:04 info: Creating worker started -2026-01-14 10:43:04 info: Creation of worker successfully executed -2026-01-14 10:43:04 info: Creation of router started -2026-01-14 10:43:04 info: Router created for room: 3508c466-ac10-4f32-a8fd-a46250cfc2d3 -2026-01-14 10:43:04 info: Creation of webRtc server started -2026-01-14 10:43:04 info: WebRTC Server created successfully -2026-01-14 10:43:04 info: Creation of room successfully executed -2026-01-14 10:43:04 info: Add broadcaster started -2026-01-14 10:43:04 info: Get room started -2026-01-14 10:43:04 info: Get room executed successfully -2026-01-14 10:43:04 info: Added broadcaster into memory room -2026-01-14 10:43:04 info: Broadcaster created successfully -2026-01-14 10:43:04 info: Create room listner exceuted successfully -2026-01-14 10:43:04 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 10:43:04 info: Get room started -2026-01-14 10:43:04 info: Get room executed successfully -2026-01-14 10:43:04 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-14 10:43:04 info: Create broadcaster lister started -2026-01-14 10:43:04 info: Get room started -2026-01-14 10:43:04 info: Get room executed successfully -2026-01-14 10:43:04 info: Creation of webRTC transport started -2026-01-14 10:43:04 info: WebRTC Transport created : 70452086-dd5b-4829-87c2-385b643b11d5 -2026-01-14 10:43:04 info: Save broadcaster transport executed successfully -2026-01-14 10:43:04 info: Connect broadcaster transport lister started -2026-01-14 10:43:04 info: Get room started -2026-01-14 10:43:04 info: Get room executed successfully -2026-01-14 10:43:04 info: Connect broadcaster transport executed successfully -2026-01-14 10:43:04 info: Producer listener started -2026-01-14 10:43:04 info: Get room started -2026-01-14 10:43:04 info: Get room executed successfully -2026-01-14 10:43:04 info: Producer listener executed successfully: -2026-01-14 10:43:04 info: Producer listener started -2026-01-14 10:43:04 info: Get room started -2026-01-14 10:43:04 info: Get room executed successfully -2026-01-14 10:43:04 info: Producer listener executed successfully: -2026-01-14 10:43:10 info: Join as viewer listner started -2026-01-14 10:43:10 info: Join as viewer started -2026-01-14 10:43:10 info: Get room started -2026-01-14 10:43:10 info: Get room executed successfully -2026-01-14 10:43:10 info: Join as viewer completed successfully -2026-01-14 10:43:10 info: Get room started -2026-01-14 10:43:10 info: Get room executed successfully -2026-01-14 10:43:10 info: Join viewer listner successfully executed -2026-01-14 10:43:10 info: Create viewer transport listner started -2026-01-14 10:43:10 info: Get room started -2026-01-14 10:43:10 info: Get room executed successfully -2026-01-14 10:43:10 info: Create viewer transport started -2026-01-14 10:43:10 info: Get room started -2026-01-14 10:43:10 info: Get room executed successfully -2026-01-14 10:43:10 info: Creation of webRTC transport started -2026-01-14 10:43:10 info: WebRTC Transport created : a9d56b80-29b9-4c00-89e4-3ed6b1eef22a -2026-01-14 10:43:10 info: Create viewer transport successfully executed -2026-01-14 10:43:10 info: Create viewer transport listner successfully executed -2026-01-14 10:43:10 info: Consume lister started -2026-01-14 10:43:10 info: Consume media started -2026-01-14 10:43:10 info: Get room started -2026-01-14 10:43:10 info: Get room executed successfully -2026-01-14 10:43:10 info: Get room started -2026-01-14 10:43:10 info: Get room executed successfully -2026-01-14 10:43:10 info: Get room started -2026-01-14 10:43:10 info: Get room executed successfully -2026-01-14 10:43:10 info: Viewer media consume successfully executed -2026-01-14 10:43:10 info: Consume lister executed successfully -2026-01-14 10:43:54 info: Client connected: OE8tnMAfXAGsAUz3AAAB -2026-01-14 10:43:58 info: Client connected: mUJcxR1sEnCHsbCTAAAB -2026-01-14 10:44:01 info: Client connected: oeA5aNOuSCNw0JJLAAAD -2026-01-14 10:44:02 info: User disconnected mUJcxR1sEnCHsbCTAAAB beacuse of transport close -2026-01-14 10:44:02 info: Client connected: z7ZtvwETDkVpQI1OAAAF -2026-01-14 10:44:05 info: Create room listner started -2026-01-14 10:44:05 info: Create room started -2026-01-14 10:44:05 info: Creating worker started -2026-01-14 10:44:05 info: Creation of worker successfully executed -2026-01-14 10:44:05 info: Creation of router started -2026-01-14 10:44:05 info: Router created for room: e662b959-5204-46f7-a350-67f0ddfb3665 -2026-01-14 10:44:05 info: Creation of webRtc server started -2026-01-14 10:44:05 info: WebRTC Server created successfully -2026-01-14 10:44:05 info: Creation of room successfully executed -2026-01-14 10:44:05 info: Add broadcaster started -2026-01-14 10:44:05 info: Get room started -2026-01-14 10:44:05 info: Get room executed successfully -2026-01-14 10:44:05 info: Added broadcaster into memory room -2026-01-14 10:44:05 info: Broadcaster created successfully -2026-01-14 10:44:05 info: Create room listner exceuted successfully -2026-01-14 10:44:05 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 10:44:05 info: Get room started -2026-01-14 10:44:05 info: Get room executed successfully -2026-01-14 10:44:05 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-14 10:44:05 info: Create broadcaster lister started -2026-01-14 10:44:05 info: Get room started -2026-01-14 10:44:05 info: Get room executed successfully -2026-01-14 10:44:05 info: Creation of webRTC transport started -2026-01-14 10:44:05 info: WebRTC Transport created : fdc0697d-18ea-41e7-abae-6ad2c5abc244 -2026-01-14 10:44:05 info: Save broadcaster transport executed successfully -2026-01-14 10:44:06 info: Connect broadcaster transport lister started -2026-01-14 10:44:06 info: Get room started -2026-01-14 10:44:06 info: Get room executed successfully -2026-01-14 10:44:06 info: Connect broadcaster transport executed successfully -2026-01-14 10:44:06 info: Producer listener started -2026-01-14 10:44:06 info: Get room started -2026-01-14 10:44:06 info: Get room executed successfully -2026-01-14 10:44:06 info: Producer listener executed successfully: -2026-01-14 10:44:06 info: Producer listener started -2026-01-14 10:44:06 info: Get room started -2026-01-14 10:44:06 info: Get room executed successfully -2026-01-14 10:44:06 info: Producer listener executed successfully: -2026-01-14 10:44:11 info: Join as viewer listner started -2026-01-14 10:44:11 info: Join as viewer started -2026-01-14 10:44:11 info: Get room started -2026-01-14 10:44:11 info: Get room executed successfully -2026-01-14 10:44:11 info: Join as viewer completed successfully -2026-01-14 10:44:11 info: Get room started -2026-01-14 10:44:11 info: Get room executed successfully -2026-01-14 10:44:11 info: Join viewer listner successfully executed -2026-01-14 10:44:11 info: Create viewer transport listner started -2026-01-14 10:44:11 info: Get room started -2026-01-14 10:44:11 info: Get room executed successfully -2026-01-14 10:44:11 info: Create viewer transport started -2026-01-14 10:44:11 info: Get room started -2026-01-14 10:44:11 info: Get room executed successfully -2026-01-14 10:44:11 info: Creation of webRTC transport started -2026-01-14 10:44:11 info: WebRTC Transport created : dafb5efc-3fbe-40e2-ac2c-2a215ba88ccd -2026-01-14 10:44:11 info: Create viewer transport successfully executed -2026-01-14 10:44:11 info: Create viewer transport listner successfully executed -2026-01-14 10:44:11 info: Consume lister started -2026-01-14 10:44:11 info: Consume media started -2026-01-14 10:44:11 info: Get room started -2026-01-14 10:44:11 info: Get room executed successfully -2026-01-14 10:44:11 info: Get room started -2026-01-14 10:44:11 info: Get room executed successfully -2026-01-14 10:44:11 info: Get room started -2026-01-14 10:44:11 info: Get room executed successfully -2026-01-14 10:44:11 info: Viewer media consume successfully executed -2026-01-14 10:44:11 info: Consume lister executed successfully -2026-01-14 10:47:10 info: User disconnected z7ZtvwETDkVpQI1OAAAF beacuse of transport close -2026-01-14 10:47:10 info: Client connected: dLaiwWfqM2teUOgqAAAH -2026-01-14 10:47:11 info: User disconnected oeA5aNOuSCNw0JJLAAAD beacuse of transport close -2026-01-14 10:47:11 info: Client connected: UZZd9HINkx6-I2y8AAAJ -2026-01-14 10:55:55 info: Client connected: chKcvD3AQbY-mUAQAAAB -2026-01-14 10:55:56 info: Client connected: 1NsYHgD93VjAWNbDAAAD -2026-01-14 10:58:52 info: Client connected: st2Qi3UeyqJmBb2xAAAB -2026-01-14 10:58:53 info: Client connected: hwJqZ-10sJ9l5kjpAAAD -2026-01-14 10:58:57 info: Client connected: iOUOpq0G-HPMUe06AAAB -2026-01-14 10:58:58 info: Client connected: YYPj-fvrJtqb3_7nAAAD -2026-01-14 10:59:17 info: Client connected: rmKV_rxvxgc_Z1jnAAAB -2026-01-14 10:59:18 info: Client connected: OKlY3hfUJuvoNeH9AAAD -2026-01-14 11:11:07 info: Client connected: 1pbzbOeY3cSXwdY5AAAB -2026-01-14 11:11:12 info: Client connected: X0ERBqkRKX_Nz8MpAAAD -2026-01-14 11:27:15 info: Client connected: B3zQXjNJMbu1HEOxAAAB -2026-01-14 11:27:21 info: Client connected: VtdIEa1b5bFtaqKcAAAD -2026-01-14 11:27:22 info: User disconnected VtdIEa1b5bFtaqKcAAAD beacuse of transport error -2026-01-14 11:27:23 info: Client connected: gKLuxi_R8qmwgrRzAAAF -2026-01-14 11:27:23 info: User disconnected B3zQXjNJMbu1HEOxAAAB beacuse of transport close -2026-01-14 11:27:23 info: Client connected: C80aLsXDfz3WvXdSAAAH -2026-01-14 11:27:28 info: Create room listner started -2026-01-14 11:27:28 info: Create room started -2026-01-14 11:27:28 info: Creating worker started -2026-01-14 11:27:28 info: Creation of worker successfully executed -2026-01-14 11:27:28 info: Creation of router started -2026-01-14 11:27:28 info: Router created for room: a9c0c6c5-c232-423c-92bf-fdaebad6d6af -2026-01-14 11:27:28 info: Creation of webRtc server started -2026-01-14 11:27:28 info: WebRTC Server created successfully -2026-01-14 11:27:28 info: Creation of room successfully executed -2026-01-14 11:27:28 info: Add broadcaster started -2026-01-14 11:27:28 info: Get room started -2026-01-14 11:27:28 info: Get room executed successfully -2026-01-14 11:27:28 info: Added broadcaster into memory room -2026-01-14 11:27:28 info: Broadcaster created successfully -2026-01-14 11:27:28 info: Create room listner exceuted successfully -2026-01-14 11:27:28 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 11:27:28 info: Get room started -2026-01-14 11:27:28 info: Get room executed successfully -2026-01-14 11:27:28 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-14 11:27:28 info: Create broadcaster lister started -2026-01-14 11:27:28 info: Get room started -2026-01-14 11:27:28 info: Get room executed successfully -2026-01-14 11:27:28 info: Creation of webRTC transport started -2026-01-14 11:27:28 info: WebRTC Transport created : aa48df04-2738-4fff-ac82-53f79e6f49b3 -2026-01-14 11:27:28 info: Save broadcaster transport executed successfully -2026-01-14 11:27:28 info: Connect broadcaster transport lister started -2026-01-14 11:27:28 info: Get room started -2026-01-14 11:27:28 info: Get room executed successfully -2026-01-14 11:27:28 info: Connect broadcaster transport executed successfully -2026-01-14 11:27:28 info: Producer listener started -2026-01-14 11:27:28 info: Get room started -2026-01-14 11:27:28 info: Get room executed successfully -2026-01-14 11:27:28 info: Producer listener executed successfully: -2026-01-14 11:27:28 info: Producer listener started -2026-01-14 11:27:28 info: Get room started -2026-01-14 11:27:28 info: Get room executed successfully -2026-01-14 11:27:28 info: Producer listener executed successfully: -2026-01-14 11:27:33 info: Join as viewer listner started -2026-01-14 11:27:33 info: Join as viewer started -2026-01-14 11:27:33 info: Get room started -2026-01-14 11:27:33 info: Get room executed successfully -2026-01-14 11:27:33 info: Join as viewer completed successfully -2026-01-14 11:27:33 info: Get room started -2026-01-14 11:27:33 info: Get room executed successfully -2026-01-14 11:27:33 info: Join viewer listner successfully executed -2026-01-14 11:27:33 info: Create viewer transport listner started -2026-01-14 11:27:33 info: Get room started -2026-01-14 11:27:33 info: Get room executed successfully -2026-01-14 11:27:33 info: Create viewer transport started -2026-01-14 11:27:33 info: Get room started -2026-01-14 11:27:33 info: Get room executed successfully -2026-01-14 11:27:33 info: Creation of webRTC transport started -2026-01-14 11:27:33 info: WebRTC Transport created : f58bd929-9cce-4558-b7d9-4db25b02a531 -2026-01-14 11:27:33 info: Create viewer transport successfully executed -2026-01-14 11:27:33 info: Create viewer transport listner successfully executed -2026-01-14 11:27:33 info: Consume lister started -2026-01-14 11:27:33 info: Consume media started -2026-01-14 11:27:33 info: Get room started -2026-01-14 11:27:33 info: Get room executed successfully -2026-01-14 11:27:33 info: Get room started -2026-01-14 11:27:33 info: Get room executed successfully -2026-01-14 11:27:33 info: Get room started -2026-01-14 11:27:33 info: Get room executed successfully -2026-01-14 11:27:33 info: Viewer media consume successfully executed -2026-01-14 11:27:33 info: Consume lister executed successfully -2026-01-14 11:27:33 info: Connect consumer listner started -2026-01-14 11:27:33 info: Connect consumer started -2026-01-14 11:27:33 info: Get room started -2026-01-14 11:27:33 info: Get room executed successfully -2026-01-14 11:27:33 info: Connect consumer executed successfully -2026-01-14 11:27:33 info: Connect consumer listner executed successfully -2026-01-14 11:27:33 info: Resume consumer listner started -2026-01-14 11:27:33 info: Resume consumer started -2026-01-14 11:27:33 info: Resume consumer successfully executed -2026-01-14 11:27:33 info: Resume consumer listner executed successfully -2026-01-14 11:29:16 info: User disconnected C80aLsXDfz3WvXdSAAAH beacuse of transport close -2026-01-14 11:29:16 info: Client connected: u_Lh7TUbZaUL4fixAAAJ -2026-01-14 11:29:16 info: User disconnected gKLuxi_R8qmwgrRzAAAF beacuse of transport close -2026-01-14 11:29:16 info: Client connected: rCYUo59Wwx7yfYsxAAAL -2026-01-14 11:29:50 info: Client connected: jG12w_VUZNRFGDgZAAAB -2026-01-14 11:29:53 info: Client connected: 3AjqJX_T6c0MmPtfAAAD -2026-01-14 11:29:56 info: Create room listner started -2026-01-14 11:29:56 info: Create room started -2026-01-14 11:29:56 info: Creating worker started -2026-01-14 11:29:56 info: Creation of worker successfully executed -2026-01-14 11:29:56 info: Creation of router started -2026-01-14 11:29:56 info: Router created for room: 2f1ed83d-104f-46b3-a755-01a0126a623d -2026-01-14 11:29:56 info: Creation of webRtc server started -2026-01-14 11:29:56 info: WebRTC Server created successfully -2026-01-14 11:29:56 info: Creation of room successfully executed -2026-01-14 11:29:56 info: Add broadcaster started -2026-01-14 11:29:56 info: Get room started -2026-01-14 11:29:56 info: Get room executed successfully -2026-01-14 11:29:56 info: Added broadcaster into memory room -2026-01-14 11:29:56 info: Broadcaster created successfully -2026-01-14 11:29:56 info: Create room listner exceuted successfully -2026-01-14 11:29:56 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 11:29:56 info: Get room started -2026-01-14 11:29:56 info: Get room executed successfully -2026-01-14 11:29:56 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-14 11:29:56 info: Create broadcaster lister started -2026-01-14 11:29:56 info: Get room started -2026-01-14 11:29:56 info: Get room executed successfully -2026-01-14 11:29:56 info: Creation of webRTC transport started -2026-01-14 11:29:56 info: WebRTC Transport created : 6293a056-13e4-44ea-9f58-f1736922d284 -2026-01-14 11:29:56 info: Save broadcaster transport executed successfully -2026-01-14 11:29:56 info: Connect broadcaster transport lister started -2026-01-14 11:29:56 info: Get room started -2026-01-14 11:29:56 info: Get room executed successfully -2026-01-14 11:29:56 info: Connect broadcaster transport executed successfully -2026-01-14 11:29:56 info: Producer listener started -2026-01-14 11:29:56 info: Get room started -2026-01-14 11:29:56 info: Get room executed successfully -2026-01-14 11:29:56 info: Producer listener executed successfully: -2026-01-14 11:29:56 info: Producer listener started -2026-01-14 11:29:56 info: Get room started -2026-01-14 11:29:56 info: Get room executed successfully -2026-01-14 11:29:56 info: Producer listener executed successfully: -2026-01-14 11:30:00 info: Join as viewer listner started -2026-01-14 11:30:00 info: Join as viewer started -2026-01-14 11:30:00 info: Get room started -2026-01-14 11:30:00 info: Get room executed successfully -2026-01-14 11:30:00 info: Join as viewer completed successfully -2026-01-14 11:30:00 info: Get room started -2026-01-14 11:30:00 info: Get room executed successfully -2026-01-14 11:30:00 info: Join viewer listner successfully executed -2026-01-14 11:30:00 info: Create viewer transport listner started -2026-01-14 11:30:00 info: Get room started -2026-01-14 11:30:00 info: Get room executed successfully -2026-01-14 11:30:00 info: Create viewer transport started -2026-01-14 11:30:00 info: Get room started -2026-01-14 11:30:00 info: Get room executed successfully -2026-01-14 11:30:00 info: Creation of webRTC transport started -2026-01-14 11:30:00 info: WebRTC Transport created : 16dbbe92-4b48-4dc1-a9bf-3381643ab2b6 -2026-01-14 11:30:00 info: Create viewer transport successfully executed -2026-01-14 11:30:00 info: Create viewer transport listner successfully executed -2026-01-14 11:30:00 info: Consume lister started -2026-01-14 11:30:00 info: Consume media started -2026-01-14 11:30:00 info: Get room started -2026-01-14 11:30:00 info: Get room executed successfully -2026-01-14 11:30:00 info: Get room started -2026-01-14 11:30:00 info: Get room executed successfully -2026-01-14 11:30:00 info: Get room started -2026-01-14 11:30:00 info: Get room executed successfully -2026-01-14 11:30:00 info: Viewer media consume successfully executed -2026-01-14 11:30:00 info: Consume lister executed successfully -2026-01-14 11:30:00 info: Connect consumer listner started -2026-01-14 11:30:00 info: Connect consumer started -2026-01-14 11:30:00 info: Get room started -2026-01-14 11:30:00 info: Get room executed successfully -2026-01-14 11:30:00 info: Connect consumer executed successfully -2026-01-14 11:30:00 info: Connect consumer listner executed successfully -2026-01-14 11:30:00 info: Resume consumer listner started -2026-01-14 11:30:00 info: Resume consumer started -2026-01-14 11:30:00 info: Resume consumer successfully executed -2026-01-14 11:30:00 info: Resume consumer listner executed successfully -2026-01-14 11:30:50 info: User disconnected 3AjqJX_T6c0MmPtfAAAD beacuse of transport close -2026-01-14 11:30:50 info: Client connected: RyYWRnVKIWUPqoxHAAAF -2026-01-14 11:30:50 info: User disconnected jG12w_VUZNRFGDgZAAAB beacuse of transport close -2026-01-14 11:30:51 info: Client connected: ZONPY_vNfgdssTKrAAAH -2026-01-14 11:33:42 info: Client connected: ktaXcjB74BbKm2WJAAAB -2026-01-14 11:33:44 info: Client connected: xJnUlsBVaAv7L8D_AAAD -2026-01-14 11:33:44 info: User disconnected ktaXcjB74BbKm2WJAAAB beacuse of transport close -2026-01-14 11:33:44 info: Client connected: 43T71FH4jO3npdkeAAAF -2026-01-14 11:33:44 info: User disconnected 43T71FH4jO3npdkeAAAF beacuse of transport error -2026-01-14 11:33:44 info: Client connected: QN6tx3ebFglSioJ0AAAH -2026-01-14 11:33:46 info: Create room listner started -2026-01-14 11:33:46 info: Create room started -2026-01-14 11:33:46 info: Creating worker started -2026-01-14 11:33:46 info: Creation of worker successfully executed -2026-01-14 11:33:46 info: Creation of router started -2026-01-14 11:33:46 info: Router created for room: 96d3af6d-f6ef-4791-b198-f276704bda7e -2026-01-14 11:33:46 info: Creation of webRtc server started -2026-01-14 11:33:46 info: WebRTC Server created successfully -2026-01-14 11:33:46 info: Creation of room successfully executed -2026-01-14 11:33:46 info: Add broadcaster started -2026-01-14 11:33:46 info: Get room started -2026-01-14 11:33:46 info: Get room executed successfully -2026-01-14 11:33:46 info: Added broadcaster into memory room -2026-01-14 11:33:46 info: Broadcaster created successfully -2026-01-14 11:33:46 info: Create room listner exceuted successfully -2026-01-14 11:33:46 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 11:33:46 info: Get room started -2026-01-14 11:33:46 info: Get room executed successfully -2026-01-14 11:33:46 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-14 11:33:46 info: Create broadcaster lister started -2026-01-14 11:33:46 info: Get room started -2026-01-14 11:33:46 info: Get room executed successfully -2026-01-14 11:33:46 info: Creation of webRTC transport started -2026-01-14 11:33:46 info: WebRTC Transport created : 35fa0d1c-8d99-4f9a-99d1-59be02129163 -2026-01-14 11:33:46 info: Save broadcaster transport executed successfully -2026-01-14 11:33:46 info: Connect broadcaster transport lister started -2026-01-14 11:33:46 info: Get room started -2026-01-14 11:33:46 info: Get room executed successfully -2026-01-14 11:33:46 info: Connect broadcaster transport executed successfully -2026-01-14 11:33:46 info: Producer listener started -2026-01-14 11:33:46 info: Get room started -2026-01-14 11:33:46 info: Get room executed successfully -2026-01-14 11:33:46 info: Producer listener executed successfully: -2026-01-14 11:33:46 info: Producer listener started -2026-01-14 11:33:46 info: Get room started -2026-01-14 11:33:46 info: Get room executed successfully -2026-01-14 11:33:46 info: Producer listener executed successfully: -2026-01-14 11:33:51 info: Join as viewer listner started -2026-01-14 11:33:51 info: Join as viewer started -2026-01-14 11:33:51 info: Get room started -2026-01-14 11:33:51 info: Get room executed successfully -2026-01-14 11:33:51 info: Join as viewer completed successfully -2026-01-14 11:33:51 info: Get room started -2026-01-14 11:33:51 info: Get room executed successfully -2026-01-14 11:33:51 info: Join viewer listner successfully executed -2026-01-14 11:33:51 info: Create viewer transport listner started -2026-01-14 11:33:51 info: Get room started -2026-01-14 11:33:51 info: Get room executed successfully -2026-01-14 11:33:51 info: Create viewer transport started -2026-01-14 11:33:51 info: Get room started -2026-01-14 11:33:51 info: Get room executed successfully -2026-01-14 11:33:51 info: Creation of webRTC transport started -2026-01-14 11:33:51 info: WebRTC Transport created : 2ae3311d-8140-402e-9624-40398f095127 -2026-01-14 11:33:51 info: Create viewer transport successfully executed -2026-01-14 11:33:51 info: Create viewer transport listner successfully executed -2026-01-14 11:33:51 info: Consume lister started -2026-01-14 11:33:51 info: Consume media started -2026-01-14 11:33:51 info: Get room started -2026-01-14 11:33:51 info: Get room executed successfully -2026-01-14 11:33:51 info: Get room started -2026-01-14 11:33:51 info: Get room executed successfully -2026-01-14 11:33:51 info: Get room started -2026-01-14 11:33:51 info: Get room executed successfully -2026-01-14 11:33:51 info: Viewer media consume successfully executed -2026-01-14 11:33:51 info: Consume lister executed successfully -2026-01-14 11:33:51 info: Connect consumer listner started -2026-01-14 11:33:51 info: Connect consumer started -2026-01-14 11:33:51 info: Get room started -2026-01-14 11:33:51 info: Get room executed successfully -2026-01-14 11:33:51 info: Connect consumer executed successfully -2026-01-14 11:33:51 info: Connect consumer listner executed successfully -2026-01-14 11:33:51 info: Resume consumer listner started -2026-01-14 11:33:51 info: Resume consumer started -2026-01-14 11:33:51 info: Resume consumer successfully executed -2026-01-14 11:33:51 info: Resume consumer listner executed successfully -2026-01-14 11:34:12 info: User disconnected QN6tx3ebFglSioJ0AAAH beacuse of transport close -2026-01-14 11:34:12 info: Client connected: Kcrim58UnCgVe7auAAAJ -2026-01-14 11:34:21 info: User disconnected Kcrim58UnCgVe7auAAAJ beacuse of transport close -2026-01-14 11:34:21 info: Client connected: 2yOe_jqYiCu3-ztJAAAL -2026-01-14 11:34:22 info: User disconnected xJnUlsBVaAv7L8D_AAAD beacuse of transport close -2026-01-14 11:34:22 info: Client connected: 6ikT7CfWYKt8vMHAAAAN -2026-01-14 11:37:56 info: Client connected: VpDe8koamZ7-YAFTAAAB -2026-01-14 11:37:57 info: Client connected: cLqEaGjvVJ5FHOcvAAAD -2026-01-14 11:37:59 info: Create room listner started -2026-01-14 11:37:59 info: Create room started -2026-01-14 11:37:59 info: Creating worker started -2026-01-14 11:37:59 info: Creation of worker successfully executed -2026-01-14 11:37:59 info: Creation of router started -2026-01-14 11:37:59 info: Router created for room: 31689590-b017-4ff6-a796-71d32ad93191 -2026-01-14 11:37:59 info: Creation of webRtc server started -2026-01-14 11:37:59 info: WebRTC Server created successfully -2026-01-14 11:37:59 info: Creation of room successfully executed -2026-01-14 11:37:59 info: Add broadcaster started -2026-01-14 11:37:59 info: Get room started -2026-01-14 11:37:59 info: Get room executed successfully -2026-01-14 11:37:59 info: Added broadcaster into memory room -2026-01-14 11:37:59 info: Broadcaster created successfully -2026-01-14 11:37:59 info: Create room listner exceuted successfully -2026-01-14 11:37:59 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 11:37:59 info: Get room started -2026-01-14 11:37:59 info: Get room executed successfully -2026-01-14 11:37:59 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-14 11:37:59 info: Create broadcaster lister started -2026-01-14 11:37:59 info: Get room started -2026-01-14 11:37:59 info: Get room executed successfully -2026-01-14 11:37:59 info: Creation of webRTC transport started -2026-01-14 11:37:59 info: WebRTC Transport created : 02cd9986-fe68-455d-af91-433ab37cefb9 -2026-01-14 11:37:59 info: Save broadcaster transport executed successfully -2026-01-14 11:37:59 info: Connect broadcaster transport lister started -2026-01-14 11:37:59 info: Get room started -2026-01-14 11:37:59 info: Get room executed successfully -2026-01-14 11:37:59 info: Connect broadcaster transport executed successfully -2026-01-14 11:38:00 info: Producer listener started -2026-01-14 11:38:00 info: Get room started -2026-01-14 11:38:00 info: Get room executed successfully -2026-01-14 11:38:00 info: Producer listener executed successfully: -2026-01-14 11:38:00 info: Producer listener started -2026-01-14 11:38:00 info: Get room started -2026-01-14 11:38:00 info: Get room executed successfully -2026-01-14 11:38:00 info: Producer listener executed successfully: -2026-01-14 11:38:08 info: Join as viewer listner started -2026-01-14 11:38:08 info: Join as viewer started -2026-01-14 11:38:08 info: Get room started -2026-01-14 11:38:08 info: Get room executed successfully -2026-01-14 11:38:08 info: Join as viewer completed successfully -2026-01-14 11:38:08 info: Get room started -2026-01-14 11:38:08 info: Get room executed successfully -2026-01-14 11:38:08 info: Join viewer listner successfully executed -2026-01-14 11:38:08 info: Create viewer transport listner started -2026-01-14 11:38:08 info: Get room started -2026-01-14 11:38:08 info: Get room executed successfully -2026-01-14 11:38:08 info: Create viewer transport started -2026-01-14 11:38:08 info: Get room started -2026-01-14 11:38:08 info: Get room executed successfully -2026-01-14 11:38:08 info: Creation of webRTC transport started -2026-01-14 11:38:08 info: WebRTC Transport created : 80146329-f0fc-485d-b90d-e7a628133d40 -2026-01-14 11:38:08 info: Create viewer transport successfully executed -2026-01-14 11:38:08 info: Create viewer transport listner successfully executed -2026-01-14 11:38:08 info: Consume lister started -2026-01-14 11:38:08 info: Consume media started -2026-01-14 11:38:08 info: Get room started -2026-01-14 11:38:08 info: Get room executed successfully -2026-01-14 11:38:08 info: Get room started -2026-01-14 11:38:08 info: Get room executed successfully -2026-01-14 11:38:08 info: Get room started -2026-01-14 11:38:08 info: Get room executed successfully -2026-01-14 11:38:08 info: Viewer media consume successfully executed -2026-01-14 11:38:08 info: Consume lister executed successfully -2026-01-14 11:38:08 info: Connect consumer listner started -2026-01-14 11:38:08 info: Connect consumer started -2026-01-14 11:38:08 info: Get room started -2026-01-14 11:38:08 info: Get room executed successfully -2026-01-14 11:38:08 info: Connect consumer executed successfully -2026-01-14 11:38:08 info: Connect consumer listner executed successfully -2026-01-14 11:38:08 info: Resume consumer listner started -2026-01-14 11:38:08 info: Resume consumer started -2026-01-14 11:38:08 info: Resume consumer successfully executed -2026-01-14 11:38:08 info: Resume consumer listner executed successfully -2026-01-14 11:39:45 info: User disconnected cLqEaGjvVJ5FHOcvAAAD beacuse of transport close -2026-01-14 11:39:45 info: Client connected: DXyQQVlaNnzb0BY4AAAF -2026-01-14 11:39:46 info: Join as viewer listner started -2026-01-14 11:39:46 info: Join as viewer started -2026-01-14 11:39:46 info: Get room started -2026-01-14 11:39:46 error: Room not found -2026-01-14 11:39:46 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at joinAsViewer (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/viewer.handler.ts:18:25) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:20:25) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-14 11:39:46 error: Room does not exist with async renderMedia(roomId:string, viewerVideo:any){ const room = frontendMemoryRoom.get(roomId); if(!room) throw new Error('Room not found'); const mediaStream = new MediaStream() const consumers = room.consumers; consumers.forEach((c) => { const track = c.track console.log('Consumers track', track) mediaStream.addTrack(track) }) viewerVideo.current.srcObject = mediaStream if(viewerVideo.current){ await viewerVideo.current.play() }else{ console.error('Video play error') } } -2026-01-14 11:39:46 info: Get room started -2026-01-14 11:39:46 error: Room not found -2026-01-14 11:39:46 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:23:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 11:39:46 error: Room router not found -2026-01-14 11:39:52 info: Join as viewer listner started -2026-01-14 11:39:52 info: Join as viewer started -2026-01-14 11:39:52 info: Get room started -2026-01-14 11:39:52 info: Get room executed successfully -2026-01-14 11:39:52 info: Join as viewer completed successfully -2026-01-14 11:39:52 info: Get room started -2026-01-14 11:39:52 info: Get room executed successfully -2026-01-14 11:39:52 info: Join viewer listner successfully executed -2026-01-14 11:39:52 info: Create viewer transport listner started -2026-01-14 11:39:52 info: Get room started -2026-01-14 11:39:52 info: Get room executed successfully -2026-01-14 11:39:52 info: Create viewer transport started -2026-01-14 11:39:52 info: Get room started -2026-01-14 11:39:52 info: Get room executed successfully -2026-01-14 11:39:52 info: Creation of webRTC transport started -2026-01-14 11:39:52 info: WebRTC Transport created : 512ebdd6-5c08-4b3e-a122-91d13a22d1c6 -2026-01-14 11:39:52 info: Create viewer transport successfully executed -2026-01-14 11:39:52 info: Create viewer transport listner successfully executed -2026-01-14 11:39:52 info: Consume lister started -2026-01-14 11:39:52 info: Consume media started -2026-01-14 11:39:52 info: Get room started -2026-01-14 11:39:52 info: Get room executed successfully -2026-01-14 11:39:52 info: Get room started -2026-01-14 11:39:52 info: Get room executed successfully -2026-01-14 11:39:52 info: Get room started -2026-01-14 11:39:52 info: Get room executed successfully -2026-01-14 11:39:52 info: Viewer media consume successfully executed -2026-01-14 11:39:52 info: Consume lister executed successfully -2026-01-14 11:39:52 info: Connect consumer listner started -2026-01-14 11:39:52 info: Connect consumer started -2026-01-14 11:39:52 info: Get room started -2026-01-14 11:39:52 info: Get room executed successfully -2026-01-14 11:39:52 info: Connect consumer executed successfully -2026-01-14 11:39:52 info: Connect consumer listner executed successfully -2026-01-14 11:39:52 info: Resume consumer listner started -2026-01-14 11:39:52 info: Resume consumer started -2026-01-14 11:39:52 info: Resume consumer successfully executed -2026-01-14 11:39:52 info: Resume consumer listner executed successfully -2026-01-14 11:41:35 info: User disconnected DXyQQVlaNnzb0BY4AAAF beacuse of transport close -2026-01-14 11:41:35 info: Client connected: MiKdweJkK0jHNApCAAAH -2026-01-14 11:41:35 info: User disconnected VpDe8koamZ7-YAFTAAAB beacuse of transport close -2026-01-14 11:41:36 info: Client connected: mRKbXZehoJpSMwEkAAAJ -2026-01-14 11:44:13 info: Client connected: N_0MHVPu34rVlJtqAAAB -2026-01-14 11:44:19 info: Client connected: TNAjDshu3ugDQqE9AAAD -2026-01-14 11:44:20 info: Create room listner started -2026-01-14 11:44:20 info: Create room started -2026-01-14 11:44:20 info: Creating worker started -2026-01-14 11:44:20 info: Creation of worker successfully executed -2026-01-14 11:44:20 info: Creation of router started -2026-01-14 11:44:20 info: Router created for room: eb6be158-7877-40ae-8fbb-7c4f463b45b3 -2026-01-14 11:44:20 info: Creation of webRtc server started -2026-01-14 11:44:20 info: WebRTC Server created successfully -2026-01-14 11:44:20 info: Creation of room successfully executed -2026-01-14 11:44:20 info: Add broadcaster started -2026-01-14 11:44:20 info: Get room started -2026-01-14 11:44:20 info: Get room executed successfully -2026-01-14 11:44:20 info: Added broadcaster into memory room -2026-01-14 11:44:20 info: Broadcaster created successfully -2026-01-14 11:44:20 info: Create room listner exceuted successfully -2026-01-14 11:44:20 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 11:44:20 info: Get room started -2026-01-14 11:44:20 info: Get room executed successfully -2026-01-14 11:44:20 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-14 11:44:20 info: Create broadcaster lister started -2026-01-14 11:44:20 info: Get room started -2026-01-14 11:44:20 info: Get room executed successfully -2026-01-14 11:44:20 info: Creation of webRTC transport started -2026-01-14 11:44:20 info: WebRTC Transport created : 2589c65b-3a5c-43b7-b521-8067edb317a0 -2026-01-14 11:44:20 info: Save broadcaster transport executed successfully -2026-01-14 11:44:21 info: Connect broadcaster transport lister started -2026-01-14 11:44:21 info: Get room started -2026-01-14 11:44:21 info: Get room executed successfully -2026-01-14 11:44:21 info: Connect broadcaster transport executed successfully -2026-01-14 11:44:21 info: Producer listener started -2026-01-14 11:44:21 info: Get room started -2026-01-14 11:44:21 info: Get room executed successfully -2026-01-14 11:44:21 info: Producer listener executed successfully: -2026-01-14 11:44:21 info: Producer listener started -2026-01-14 11:44:21 info: Get room started -2026-01-14 11:44:21 info: Get room executed successfully -2026-01-14 11:44:21 info: Producer listener executed successfully: -2026-01-14 11:44:26 info: Join as viewer listner started -2026-01-14 11:44:26 info: Join as viewer started -2026-01-14 11:44:26 info: Get room started -2026-01-14 11:44:26 info: Get room executed successfully -2026-01-14 11:44:26 info: Join as viewer completed successfully -2026-01-14 11:44:26 info: Get room started -2026-01-14 11:44:26 info: Get room executed successfully -2026-01-14 11:44:26 info: Join viewer listner successfully executed -2026-01-14 11:44:26 info: Create viewer transport listner started -2026-01-14 11:44:26 info: Get room started -2026-01-14 11:44:26 info: Get room executed successfully -2026-01-14 11:44:26 info: Create viewer transport started -2026-01-14 11:44:26 info: Get room started -2026-01-14 11:44:26 info: Get room executed successfully -2026-01-14 11:44:26 info: Creation of webRTC transport started -2026-01-14 11:44:26 info: WebRTC Transport created : 0a30acfe-7222-4998-a70f-d9002a4a1707 -2026-01-14 11:44:26 info: Create viewer transport successfully executed -2026-01-14 11:44:26 info: Create viewer transport listner successfully executed -2026-01-14 11:44:26 info: Consume lister started -2026-01-14 11:44:26 info: Consume media started -2026-01-14 11:44:26 info: Get room started -2026-01-14 11:44:26 info: Get room executed successfully -2026-01-14 11:44:26 info: Get room started -2026-01-14 11:44:26 info: Get room executed successfully -2026-01-14 11:44:26 info: Get room started -2026-01-14 11:44:26 info: Get room executed successfully -2026-01-14 11:44:26 info: Viewer media consume successfully executed -2026-01-14 11:44:26 info: Consume lister executed successfully -2026-01-14 11:44:26 info: Connect consumer listner started -2026-01-14 11:44:26 info: Connect consumer started -2026-01-14 11:44:26 info: Get room started -2026-01-14 11:44:26 info: Get room executed successfully -2026-01-14 11:44:26 info: Connect consumer executed successfully -2026-01-14 11:44:26 info: Connect consumer listner executed successfully -2026-01-14 11:44:26 info: Resume consumer listner started -2026-01-14 11:44:26 info: Resume consumer started -2026-01-14 11:44:26 info: Resume consumer listner executed successfully -2026-01-14 11:44:26 info: Consumer resumed -2026-01-14 11:44:26 info: Consumer resumed -2026-01-14 11:46:52 info: User disconnected TNAjDshu3ugDQqE9AAAD beacuse of transport close -2026-01-14 11:46:52 info: Client connected: 73Qw-UiWu9hhOokwAAAF -2026-01-14 11:46:52 info: User disconnected N_0MHVPu34rVlJtqAAAB beacuse of transport close -2026-01-14 11:46:53 info: Client connected: syfru1qkbXhuOhgeAAAH -2026-01-14 11:48:06 info: Client connected: 0-WlK7Q_tdWOmkImAAAB -2026-01-14 11:48:08 info: Client connected: ou_QAW6v1A-cPYN2AAAD -2026-01-14 11:48:10 info: Client connected: my-pEDRFN_aBruwEAAAF -2026-01-14 11:48:12 info: Create room listner started -2026-01-14 11:48:12 info: Create room started -2026-01-14 11:48:12 info: Creating worker started -2026-01-14 11:48:12 info: Creation of worker successfully executed -2026-01-14 11:48:12 info: Creation of router started -2026-01-14 11:48:12 info: Router created for room: acab1537-f7e2-43ff-816e-729eacae182b -2026-01-14 11:48:12 info: Creation of webRtc server started -2026-01-14 11:48:12 info: WebRTC Server created successfully -2026-01-14 11:48:12 info: Creation of room successfully executed -2026-01-14 11:48:12 info: Add broadcaster started -2026-01-14 11:48:12 info: Get room started -2026-01-14 11:48:12 info: Get room executed successfully -2026-01-14 11:48:12 info: Added broadcaster into memory room -2026-01-14 11:48:12 info: Broadcaster created successfully -2026-01-14 11:48:12 info: Create room listner exceuted successfully -2026-01-14 11:48:12 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 11:48:12 info: Get room started -2026-01-14 11:48:12 info: Get room executed successfully -2026-01-14 11:48:12 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-14 11:48:13 info: Create broadcaster lister started -2026-01-14 11:48:13 info: Get room started -2026-01-14 11:48:13 info: Get room executed successfully -2026-01-14 11:48:13 info: Creation of webRTC transport started -2026-01-14 11:48:13 info: WebRTC Transport created : c0cfcb70-f82c-462c-93cc-99f0f371186f -2026-01-14 11:48:13 info: Save broadcaster transport executed successfully -2026-01-14 11:48:14 info: Connect broadcaster transport lister started -2026-01-14 11:48:14 info: Get room started -2026-01-14 11:48:14 info: Get room executed successfully -2026-01-14 11:48:14 info: Connect broadcaster transport executed successfully -2026-01-14 11:48:14 info: Producer listener started -2026-01-14 11:48:14 info: Get room started -2026-01-14 11:48:14 info: Get room executed successfully -2026-01-14 11:48:14 info: Producer listener executed successfully: -2026-01-14 11:48:14 info: Producer listener started -2026-01-14 11:48:14 info: Get room started -2026-01-14 11:48:14 info: Get room executed successfully -2026-01-14 11:48:14 info: Producer listener executed successfully: -2026-01-14 11:48:20 info: Client connected: KseI2gb4PIgMerndAAAH -2026-01-14 11:48:21 info: Join as viewer listner started -2026-01-14 11:48:21 info: Join as viewer started -2026-01-14 11:48:21 info: Get room started -2026-01-14 11:48:21 info: Get room executed successfully -2026-01-14 11:48:21 info: Join as viewer completed successfully -2026-01-14 11:48:21 info: Get room started -2026-01-14 11:48:21 info: Get room executed successfully -2026-01-14 11:48:21 info: Join viewer listner successfully executed -2026-01-14 11:48:21 info: Create viewer transport listner started -2026-01-14 11:48:21 info: Get room started -2026-01-14 11:48:21 info: Get room executed successfully -2026-01-14 11:48:21 info: Create viewer transport started -2026-01-14 11:48:21 info: Get room started -2026-01-14 11:48:21 info: Get room executed successfully -2026-01-14 11:48:21 info: Creation of webRTC transport started -2026-01-14 11:48:21 info: WebRTC Transport created : bcae61c8-f889-44c0-b59f-dda58a459743 -2026-01-14 11:48:21 info: Create viewer transport successfully executed -2026-01-14 11:48:21 info: Create viewer transport listner successfully executed -2026-01-14 11:48:21 info: Consume lister started -2026-01-14 11:48:21 info: Consume media started -2026-01-14 11:48:21 info: Get room started -2026-01-14 11:48:21 info: Get room executed successfully -2026-01-14 11:48:21 info: Get room started -2026-01-14 11:48:21 info: Get room executed successfully -2026-01-14 11:48:21 info: Get room started -2026-01-14 11:48:21 info: Get room executed successfully -2026-01-14 11:48:21 info: Viewer media consume successfully executed -2026-01-14 11:48:21 info: Consume lister executed successfully -2026-01-14 11:48:21 info: Connect consumer listner started -2026-01-14 11:48:21 info: Connect consumer started -2026-01-14 11:48:21 info: Get room started -2026-01-14 11:48:21 info: Get room executed successfully -2026-01-14 11:48:21 info: Connect consumer executed successfully -2026-01-14 11:48:21 info: Connect consumer listner executed successfully -2026-01-14 11:48:21 info: Resume consumer listner started -2026-01-14 11:48:21 info: Resume consumer started -2026-01-14 11:48:21 info: Resume consumer listner executed successfully -2026-01-14 11:48:21 info: Consumer resumed -2026-01-14 11:48:21 info: Consumer resumed -2026-01-14 11:48:29 info: User disconnected KseI2gb4PIgMerndAAAH beacuse of transport close -2026-01-14 11:48:30 info: Client connected: r_bnmegwLV5MrIDlAAAJ -2026-01-14 11:49:31 info: Join as viewer listner started -2026-01-14 11:49:31 info: Join as viewer started -2026-01-14 11:49:31 info: Get room started -2026-01-14 11:49:31 info: Get room executed successfully -2026-01-14 11:49:31 info: Join as viewer completed successfully -2026-01-14 11:49:31 info: Get room started -2026-01-14 11:49:31 info: Get room executed successfully -2026-01-14 11:49:31 info: Join viewer listner successfully executed -2026-01-14 11:49:31 info: Create viewer transport listner started -2026-01-14 11:49:31 info: Get room started -2026-01-14 11:49:31 info: Get room executed successfully -2026-01-14 11:49:31 info: Create viewer transport started -2026-01-14 11:49:31 info: Get room started -2026-01-14 11:49:31 info: Get room executed successfully -2026-01-14 11:49:31 info: Creation of webRTC transport started -2026-01-14 11:49:31 info: WebRTC Transport created : 92a0c7ff-6ee8-4263-9f46-0d4671482eed -2026-01-14 11:49:31 info: Create viewer transport successfully executed -2026-01-14 11:49:31 info: Create viewer transport listner successfully executed -2026-01-14 11:49:31 info: Consume lister started -2026-01-14 11:49:31 info: Consume media started -2026-01-14 11:49:31 info: Get room started -2026-01-14 11:49:31 info: Get room executed successfully -2026-01-14 11:49:31 info: Get room started -2026-01-14 11:49:31 info: Get room executed successfully -2026-01-14 11:49:31 info: Get room started -2026-01-14 11:49:31 info: Get room executed successfully -2026-01-14 11:49:31 info: Viewer media consume successfully executed -2026-01-14 11:49:31 info: Consume lister executed successfully -2026-01-14 11:49:31 info: Connect consumer listner started -2026-01-14 11:49:31 info: Connect consumer started -2026-01-14 11:49:31 info: Get room started -2026-01-14 11:49:31 info: Get room executed successfully -2026-01-14 11:49:31 info: Connect consumer executed successfully -2026-01-14 11:49:31 info: Connect consumer listner executed successfully -2026-01-14 11:49:31 info: Resume consumer listner started -2026-01-14 11:49:31 info: Resume consumer started -2026-01-14 11:49:31 info: Resume consumer listner executed successfully -2026-01-14 11:49:31 info: Consumer resumed -2026-01-14 11:49:31 info: Consumer resumed -2026-01-14 11:50:02 info: User disconnected 0-WlK7Q_tdWOmkImAAAB beacuse of transport close -2026-01-14 11:50:03 info: User disconnected ou_QAW6v1A-cPYN2AAAD beacuse of transport close -2026-01-14 11:50:04 info: Client connected: d5PJmOXYNJ9_6eOiAAAL -2026-01-14 11:50:04 info: Client connected: 1rQOBLgZBZd2OFHeAAAN -2026-01-14 11:50:07 info: User disconnected r_bnmegwLV5MrIDlAAAJ beacuse of transport close -2026-01-14 11:50:07 info: Client connected: zQnYl3IXZLjBc70_AAAP -2026-01-14 11:50:08 info: User disconnected my-pEDRFN_aBruwEAAAF beacuse of transport close -2026-01-14 11:50:08 info: Client connected: Wb6Etw6B1ACnJ6t8AAAR -2026-01-14 11:51:41 info: Client connected: F_nQd1Dg6K1fmGvdAAAB -2026-01-14 11:51:42 info: Client connected: XNS1XSL-Tq3W7ELoAAAD -2026-01-14 11:51:42 info: Client connected: 9xFmGgRmYlevA8lMAAAF -2026-01-14 11:51:42 info: Client connected: yNaOvsLwnxYmGXyUAAAH -2026-01-14 11:51:44 info: User disconnected XNS1XSL-Tq3W7ELoAAAD beacuse of transport close -2026-01-14 11:51:44 info: User disconnected yNaOvsLwnxYmGXyUAAAH beacuse of transport close -2026-01-14 11:51:52 info: User disconnected F_nQd1Dg6K1fmGvdAAAB beacuse of transport close -2026-01-14 11:51:53 info: Client connected: eeodXby6ZSs3Tvq3AAAJ -2026-01-14 11:51:55 info: Client connected: 94r6kFqyH8aYhX6jAAAL -2026-01-14 11:51:55 info: Client connected: 5xNSWqGnMxgpW2JwAAAN -2026-01-14 11:52:00 info: Create room listner started -2026-01-14 11:52:00 info: Create room started -2026-01-14 11:52:00 info: Creating worker started -2026-01-14 11:52:00 info: Creation of worker successfully executed -2026-01-14 11:52:00 info: Creation of router started -2026-01-14 11:52:00 info: Router created for room: 5ca9324e-92b1-4823-bba3-2a2cc2293968 -2026-01-14 11:52:00 info: Creation of webRtc server started -2026-01-14 11:52:00 info: WebRTC Server created successfully -2026-01-14 11:52:00 info: Creation of room successfully executed -2026-01-14 11:52:00 info: Add broadcaster started -2026-01-14 11:52:00 info: Get room started -2026-01-14 11:52:00 info: Get room executed successfully -2026-01-14 11:52:00 info: Added broadcaster into memory room -2026-01-14 11:52:00 info: Broadcaster created successfully -2026-01-14 11:52:00 info: Create room listner exceuted successfully -2026-01-14 11:52:00 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 11:52:00 info: Get room started -2026-01-14 11:52:00 info: Get room executed successfully -2026-01-14 11:52:00 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-14 11:52:00 info: Create broadcaster lister started -2026-01-14 11:52:00 info: Get room started -2026-01-14 11:52:00 info: Get room executed successfully -2026-01-14 11:52:00 info: Creation of webRTC transport started -2026-01-14 11:52:00 info: WebRTC Transport created : aa369693-c069-4ff1-b089-11d5357902d5 -2026-01-14 11:52:00 info: Save broadcaster transport executed successfully -2026-01-14 11:52:00 info: Connect broadcaster transport lister started -2026-01-14 11:52:00 info: Get room started -2026-01-14 11:52:00 info: Get room executed successfully -2026-01-14 11:52:00 info: Connect broadcaster transport executed successfully -2026-01-14 11:52:00 info: Producer listener started -2026-01-14 11:52:00 info: Get room started -2026-01-14 11:52:00 info: Get room executed successfully -2026-01-14 11:52:00 info: Producer listener executed successfully: -2026-01-14 11:52:00 info: Producer listener started -2026-01-14 11:52:00 info: Get room started -2026-01-14 11:52:00 info: Get room executed successfully -2026-01-14 11:52:00 info: Producer listener executed successfully: -2026-01-14 11:52:06 info: Join as viewer listner started -2026-01-14 11:52:06 info: Join as viewer started -2026-01-14 11:52:06 info: Get room started -2026-01-14 11:52:06 info: Get room executed successfully -2026-01-14 11:52:06 info: Join as viewer completed successfully -2026-01-14 11:52:06 info: Get room started -2026-01-14 11:52:06 info: Get room executed successfully -2026-01-14 11:52:06 info: Join viewer listner successfully executed -2026-01-14 11:52:06 info: Create viewer transport listner started -2026-01-14 11:52:06 info: Get room started -2026-01-14 11:52:06 info: Get room executed successfully -2026-01-14 11:52:06 info: Create viewer transport started -2026-01-14 11:52:06 info: Get room started -2026-01-14 11:52:06 info: Get room executed successfully -2026-01-14 11:52:06 info: Creation of webRTC transport started -2026-01-14 11:52:06 info: WebRTC Transport created : 4566ee26-a1b8-46bd-ae44-a4e78880111b -2026-01-14 11:52:06 info: Create viewer transport successfully executed -2026-01-14 11:52:06 info: Create viewer transport listner successfully executed -2026-01-14 11:52:06 info: Consume lister started -2026-01-14 11:52:06 info: Consume media started -2026-01-14 11:52:06 info: Get room started -2026-01-14 11:52:06 info: Get room executed successfully -2026-01-14 11:52:06 info: Get room started -2026-01-14 11:52:06 info: Get room executed successfully -2026-01-14 11:52:06 info: Get room started -2026-01-14 11:52:06 info: Get room executed successfully -2026-01-14 11:52:06 info: Viewer media consume successfully executed -2026-01-14 11:52:06 info: Consume lister executed successfully -2026-01-14 11:52:06 info: Connect consumer listner started -2026-01-14 11:52:06 info: Connect consumer started -2026-01-14 11:52:06 info: Get room started -2026-01-14 11:52:06 info: Get room executed successfully -2026-01-14 11:52:06 info: Connect consumer executed successfully -2026-01-14 11:52:06 info: Connect consumer listner executed successfully -2026-01-14 11:52:06 info: Resume consumer listner started -2026-01-14 11:52:06 info: Resume consumer started -2026-01-14 11:52:06 info: Resume consumer listner executed successfully -2026-01-14 11:52:06 info: Consumer resumed -2026-01-14 11:52:06 info: Consumer resumed -2026-01-14 11:55:08 info: User disconnected 94r6kFqyH8aYhX6jAAAL beacuse of transport close -2026-01-14 11:55:09 info: User disconnected 5xNSWqGnMxgpW2JwAAAN beacuse of transport close -2026-01-14 11:55:10 info: Client connected: KY1vSUFGVTZV_OzPAAAR -2026-01-14 11:55:10 info: Client connected: ekyaD3gwRvZ6jfgQAAAS -2026-01-14 12:05:58 info: Client connected: 3zeXTgVSDjSqqd5rAAAB -2026-01-14 12:06:00 info: Client connected: ZYBzCEYvmxZJW-HlAAAD -2026-01-14 12:06:01 info: Client connected: fo7mMY25K9fHvLBdAAAF -2026-01-14 12:06:03 info: Client connected: J-VU9u7g9KpvYt_LAAAH -2026-01-14 12:06:05 info: Create room listner started -2026-01-14 12:06:05 info: Create room started -2026-01-14 12:06:05 info: Creating worker started -2026-01-14 12:06:05 info: Creation of worker successfully executed -2026-01-14 12:06:05 info: Creation of router started -2026-01-14 12:06:05 info: Router created for room: dde72230-61d7-4679-a715-0214a0c74e57 -2026-01-14 12:06:05 info: Creation of webRtc server started -2026-01-14 12:06:05 info: WebRTC Server created successfully -2026-01-14 12:06:05 info: Creation of room successfully executed -2026-01-14 12:06:05 info: Add broadcaster started -2026-01-14 12:06:05 info: Get room started -2026-01-14 12:06:05 info: Get room executed successfully -2026-01-14 12:06:05 info: Added broadcaster into memory room -2026-01-14 12:06:05 info: Broadcaster created successfully -2026-01-14 12:06:05 info: Create room listner exceuted successfully -2026-01-14 12:06:05 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 12:06:05 info: Get room started -2026-01-14 12:06:05 info: Get room executed successfully -2026-01-14 12:06:05 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-14 12:06:05 info: Create broadcaster lister started -2026-01-14 12:06:05 info: Get room started -2026-01-14 12:06:05 info: Get room executed successfully -2026-01-14 12:06:05 info: Creation of webRTC transport started -2026-01-14 12:06:05 info: WebRTC Transport created : 094cccee-6086-4d11-9e08-ef766ee4e378 -2026-01-14 12:06:05 info: Save broadcaster transport executed successfully -2026-01-14 12:06:07 info: Connect broadcaster transport lister started -2026-01-14 12:06:07 info: Get room started -2026-01-14 12:06:07 info: Get room executed successfully -2026-01-14 12:06:07 info: Connect broadcaster transport executed successfully -2026-01-14 12:06:07 info: Producer listener started -2026-01-14 12:06:07 info: Get room started -2026-01-14 12:06:07 info: Get room executed successfully -2026-01-14 12:06:07 info: Producer listener executed successfully: -2026-01-14 12:06:07 info: Producer listener started -2026-01-14 12:06:07 info: Get room started -2026-01-14 12:06:07 info: Get room executed successfully -2026-01-14 12:06:07 info: Producer listener executed successfully: -2026-01-14 12:06:16 info: Join as viewer listner started -2026-01-14 12:06:16 info: Join as viewer started -2026-01-14 12:06:16 info: Get room started -2026-01-14 12:06:16 info: Get room executed successfully -2026-01-14 12:06:16 info: Join as viewer completed successfully -2026-01-14 12:06:16 info: Get room started -2026-01-14 12:06:16 info: Get room executed successfully -2026-01-14 12:06:16 info: Join viewer listner successfully executed -2026-01-14 12:06:16 info: Create viewer transport listner started -2026-01-14 12:06:16 info: Get room started -2026-01-14 12:06:16 info: Get room executed successfully -2026-01-14 12:06:16 info: Create viewer transport started -2026-01-14 12:06:16 info: Get room started -2026-01-14 12:06:16 info: Get room executed successfully -2026-01-14 12:06:16 info: Creation of webRTC transport started -2026-01-14 12:06:16 info: WebRTC Transport created : 043821b5-cf34-4da2-ac05-a3247108778c -2026-01-14 12:06:16 info: Create viewer transport successfully executed -2026-01-14 12:06:16 info: Create viewer transport listner successfully executed -2026-01-14 12:06:16 info: Consume lister started -2026-01-14 12:06:16 info: Consume media started -2026-01-14 12:06:16 info: Get room started -2026-01-14 12:06:16 info: Get room executed successfully -2026-01-14 12:06:16 info: Get room started -2026-01-14 12:06:16 info: Get room executed successfully -2026-01-14 12:06:16 info: Get room started -2026-01-14 12:06:16 info: Get room executed successfully -2026-01-14 12:06:16 info: Viewer media consume successfully executed -2026-01-14 12:06:16 info: Consume lister executed successfully -2026-01-14 12:06:16 info: Connect consumer listner started -2026-01-14 12:06:16 info: Connect consumer started -2026-01-14 12:06:16 info: Get room started -2026-01-14 12:06:16 info: Get room executed successfully -2026-01-14 12:06:16 info: Connect consumer executed successfully -2026-01-14 12:06:16 info: Connect consumer listner executed successfully -2026-01-14 12:06:16 info: Resume consumer listner started -2026-01-14 12:06:16 info: Resume consumer started -2026-01-14 12:06:16 info: Resume consumer listner executed successfully -2026-01-14 12:06:16 info: Consumer resumed -2026-01-14 12:06:16 info: Consumer resumed -2026-01-14 12:06:38 info: User disconnected J-VU9u7g9KpvYt_LAAAH beacuse of transport close -2026-01-14 12:06:38 info: Client connected: BgkavhBDxGXwdm-kAAAJ -2026-01-14 12:06:40 info: User disconnected ZYBzCEYvmxZJW-HlAAAD beacuse of transport close -2026-01-14 12:06:40 info: Client connected: 0FUwOjM7FYw4pDtAAAAL -2026-01-14 20:54:22 info: Client connected: WMdVkQzG1LeBLB8UAAAB -2026-01-14 20:54:26 info: Client connected: TubE-CseM7y_QtVgAAAD -2026-01-14 20:54:28 info: Create room listner started -2026-01-14 20:54:28 info: Create room started -2026-01-14 20:54:28 info: Creating worker started -2026-01-14 20:54:28 info: Creation of worker successfully executed -2026-01-14 20:54:28 info: Creation of router started -2026-01-14 20:54:28 info: Router created for room: afed64a4-d628-4697-9c49-52d4aab86653 -2026-01-14 20:54:28 info: Creation of webRtc server started -2026-01-14 20:54:28 info: WebRTC Server created successfully -2026-01-14 20:54:28 info: Creation of room successfully executed -2026-01-14 20:54:28 info: Add broadcaster started -2026-01-14 20:54:28 info: Get room started -2026-01-14 20:54:28 info: Get room executed successfully -2026-01-14 20:54:28 info: Added broadcaster into memory room -2026-01-14 20:54:28 info: Broadcaster created successfully -2026-01-14 20:54:28 info: Create room listner exceuted successfully -2026-01-14 20:54:28 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 20:54:28 info: Get room started -2026-01-14 20:54:28 info: Get room executed successfully -2026-01-14 20:54:28 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-14 20:54:28 info: Create broadcaster lister started -2026-01-14 20:54:28 info: Get room started -2026-01-14 20:54:28 info: Get room executed successfully -2026-01-14 20:54:28 info: Creation of webRTC transport started -2026-01-14 20:54:28 info: WebRTC Transport created : bbe7eec0-5b40-45a4-88c9-fd059fad2b06 -2026-01-14 20:54:28 info: Save broadcaster transport executed successfully -2026-01-14 20:54:29 info: Connect broadcaster transport lister started -2026-01-14 20:54:29 info: Get room started -2026-01-14 20:54:29 info: Get room executed successfully -2026-01-14 20:54:29 info: Connect broadcaster transport executed successfully -2026-01-14 20:54:29 info: Producer listener started -2026-01-14 20:54:29 info: Get room started -2026-01-14 20:54:29 info: Get room executed successfully -2026-01-14 20:54:29 info: Producer listener executed successfully: -2026-01-14 20:54:29 info: Producer listener started -2026-01-14 20:54:29 info: Get room started -2026-01-14 20:54:29 info: Get room executed successfully -2026-01-14 20:54:29 info: Producer listener executed successfully: -2026-01-14 20:54:33 info: Join as viewer listner started -2026-01-14 20:54:33 info: Join as viewer started -2026-01-14 20:54:33 info: Get room started -2026-01-14 20:54:33 info: Get room executed successfully -2026-01-14 20:54:33 info: Join as viewer completed successfully -2026-01-14 20:54:33 info: Get room started -2026-01-14 20:54:33 info: Get room executed successfully -2026-01-14 20:54:33 info: Join viewer listner successfully executed -2026-01-14 20:54:33 info: Create viewer transport listner started -2026-01-14 20:54:33 info: Get room started -2026-01-14 20:54:33 info: Get room executed successfully -2026-01-14 20:54:33 info: Create viewer transport started -2026-01-14 20:54:33 info: Get room started -2026-01-14 20:54:33 info: Get room executed successfully -2026-01-14 20:54:33 info: Creation of webRTC transport started -2026-01-14 20:54:33 info: WebRTC Transport created : c97a63ca-0f6b-41a2-9d5c-1fd8bda5cd35 -2026-01-14 20:54:33 info: Create viewer transport successfully executed -2026-01-14 20:54:33 info: Create viewer transport listner successfully executed -2026-01-14 20:54:33 info: Consume lister started -2026-01-14 20:54:33 info: Consume media started -2026-01-14 20:54:33 info: Get room started -2026-01-14 20:54:33 info: Get room executed successfully -2026-01-14 20:54:33 info: Get room started -2026-01-14 20:54:33 info: Get room executed successfully -2026-01-14 20:54:33 info: Get room started -2026-01-14 20:54:33 info: Get room executed successfully -2026-01-14 20:54:33 info: Viewer media consume successfully executed -2026-01-14 20:54:33 info: Consume lister executed successfully -2026-01-14 20:54:33 info: Connect consumer listner started -2026-01-14 20:54:33 info: Connect consumer started -2026-01-14 20:54:33 info: Get room started -2026-01-14 20:54:33 info: Get room executed successfully -2026-01-14 20:54:33 info: Connect consumer executed successfully -2026-01-14 20:54:33 info: Connect consumer listner executed successfully -2026-01-14 20:54:33 info: Resume consumer listner started -2026-01-14 20:54:33 info: Resume consumer started -2026-01-14 20:54:33 info: Resume consumer listner executed successfully -2026-01-14 20:54:33 info: Consumer resumed -2026-01-14 20:54:33 info: Consumer resumed -2026-01-14 20:54:48 info: User disconnected TubE-CseM7y_QtVgAAAD beacuse of transport close -2026-01-14 20:54:49 info: User disconnected WMdVkQzG1LeBLB8UAAAB beacuse of transport close -2026-01-14 21:00:35 info: Client connected: HxtTHTUoXqD3MrGdAAAB -2026-01-14 21:00:37 info: Create room listner started -2026-01-14 21:00:37 info: Create room started -2026-01-14 21:00:37 info: Creating worker started -2026-01-14 21:00:37 info: Creation of worker successfully executed -2026-01-14 21:00:37 info: Creation of router started -2026-01-14 21:00:37 info: Router created for room: 3e0096e7-54f9-4d29-a3ce-c04ac07b0a70 -2026-01-14 21:00:37 info: Creation of webRtc server started -2026-01-14 21:00:37 info: WebRTC Server created successfully -2026-01-14 21:00:37 info: Creation of room successfully executed -2026-01-14 21:00:37 info: Add broadcaster started -2026-01-14 21:00:37 info: Get room started -2026-01-14 21:00:37 info: Get room executed successfully -2026-01-14 21:00:37 info: Added broadcaster into memory room -2026-01-14 21:00:37 info: Broadcaster created successfully -2026-01-14 21:00:37 info: Create room listner exceuted successfully -2026-01-14 21:00:37 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 21:00:37 info: Get room started -2026-01-14 21:00:37 info: Get room executed successfully -2026-01-14 21:00:37 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-14 21:00:37 info: Create broadcaster lister started -2026-01-14 21:00:37 info: Get room started -2026-01-14 21:00:37 info: Get room executed successfully -2026-01-14 21:00:37 info: Creation of webRTC transport started -2026-01-14 21:00:37 info: WebRTC Transport created : ce978c97-b814-4937-b309-81a930958d65 -2026-01-14 21:00:37 info: Save broadcaster transport executed successfully -2026-01-14 21:00:40 info: Connect broadcaster transport lister started -2026-01-14 21:00:40 info: Get room started -2026-01-14 21:00:40 info: Get room executed successfully -2026-01-14 21:00:40 info: Connect broadcaster transport executed successfully -2026-01-14 21:00:40 info: Producer listener started -2026-01-14 21:00:40 info: Get room started -2026-01-14 21:00:40 info: Get room executed successfully -2026-01-14 21:00:40 info: Producer listener executed successfully: -2026-01-14 21:00:40 info: Producer listener started -2026-01-14 21:00:40 info: Get room started -2026-01-14 21:00:40 info: Get room executed successfully -2026-01-14 21:00:40 info: Producer listener executed successfully: -2026-01-14 21:00:45 info: Client connected: 2I-2Kkx-sYzaM-rDAAAD -2026-01-14 21:00:47 info: Join as viewer listner started -2026-01-14 21:00:47 info: Join as viewer started -2026-01-14 21:00:47 info: Get room started -2026-01-14 21:00:47 info: Get room executed successfully -2026-01-14 21:00:47 info: Join as viewer completed successfully -2026-01-14 21:00:47 info: Get room started -2026-01-14 21:00:47 info: Get room executed successfully -2026-01-14 21:00:47 info: Join viewer listner successfully executed -2026-01-14 21:00:47 info: Create viewer transport listner started -2026-01-14 21:00:47 info: Get room started -2026-01-14 21:00:47 info: Get room executed successfully -2026-01-14 21:00:47 info: Create viewer transport started -2026-01-14 21:00:47 info: Get room started -2026-01-14 21:00:47 info: Get room executed successfully -2026-01-14 21:00:47 info: Creation of webRTC transport started -2026-01-14 21:00:47 info: WebRTC Transport created : 9a761b41-56ba-424a-b35c-724da41808a3 -2026-01-14 21:00:47 info: Create viewer transport successfully executed -2026-01-14 21:00:47 info: Create viewer transport listner successfully executed -2026-01-14 21:00:47 info: Consume lister started -2026-01-14 21:00:47 info: Consume media started -2026-01-14 21:00:47 info: Get room started -2026-01-14 21:00:47 info: Get room executed successfully -2026-01-14 21:00:47 info: Get room started -2026-01-14 21:00:47 info: Get room executed successfully -2026-01-14 21:00:47 info: Get room started -2026-01-14 21:00:47 info: Get room executed successfully -2026-01-14 21:00:47 info: Viewer media consume successfully executed -2026-01-14 21:00:47 info: Consume lister executed successfully -2026-01-14 21:00:47 info: Connect consumer listner started -2026-01-14 21:00:47 info: Connect consumer started -2026-01-14 21:00:47 info: Get room started -2026-01-14 21:00:47 info: Get room executed successfully -2026-01-14 21:00:47 info: Connect consumer executed successfully -2026-01-14 21:00:47 info: Connect consumer listner executed successfully -2026-01-14 21:00:47 info: Resume consumer listner started -2026-01-14 21:00:47 info: Resume consumer started -2026-01-14 21:00:47 info: Resume consumer listner executed successfully -2026-01-14 21:00:47 info: Consumer resumed -2026-01-14 21:00:47 info: Consumer resumed -2026-01-14 21:01:05 info: Join as viewer listner started -2026-01-14 21:01:05 info: Join as viewer started -2026-01-14 21:01:05 info: Get room started -2026-01-14 21:01:05 info: Get room executed successfully -2026-01-14 21:01:05 info: Join as viewer completed successfully -2026-01-14 21:01:05 info: Get room started -2026-01-14 21:01:05 info: Get room executed successfully -2026-01-14 21:01:05 info: Join viewer listner successfully executed -2026-01-14 21:01:05 info: Create viewer transport listner started -2026-01-14 21:01:05 info: Get room started -2026-01-14 21:01:05 info: Get room executed successfully -2026-01-14 21:01:05 info: Create viewer transport started -2026-01-14 21:01:05 info: Get room started -2026-01-14 21:01:05 info: Get room executed successfully -2026-01-14 21:01:05 info: Creation of webRTC transport started -2026-01-14 21:01:05 info: WebRTC Transport created : e8d0fca5-4391-4f10-9136-de5d19edebae -2026-01-14 21:01:05 info: Create viewer transport successfully executed -2026-01-14 21:01:05 info: Create viewer transport listner successfully executed -2026-01-14 21:01:05 info: Consume lister started -2026-01-14 21:01:05 info: Consume media started -2026-01-14 21:01:05 info: Get room started -2026-01-14 21:01:05 info: Get room executed successfully -2026-01-14 21:01:05 info: Get room started -2026-01-14 21:01:05 info: Get room executed successfully -2026-01-14 21:01:05 info: Get room started -2026-01-14 21:01:05 info: Get room executed successfully -2026-01-14 21:01:05 info: Viewer media consume successfully executed -2026-01-14 21:01:05 info: Consume lister executed successfully -2026-01-14 21:01:05 info: Connect consumer listner started -2026-01-14 21:01:05 info: Connect consumer started -2026-01-14 21:01:05 info: Get room started -2026-01-14 21:01:05 info: Get room executed successfully -2026-01-14 21:01:05 info: Connect consumer executed successfully -2026-01-14 21:01:05 info: Connect consumer listner executed successfully -2026-01-14 21:01:05 info: Resume consumer listner started -2026-01-14 21:01:05 info: Resume consumer started -2026-01-14 21:01:05 info: Resume consumer listner executed successfully -2026-01-14 21:01:05 info: Consumer resumed -2026-01-14 21:01:05 info: Consumer resumed -2026-01-14 21:01:15 info: User disconnected 2I-2Kkx-sYzaM-rDAAAD beacuse of transport close -2026-01-14 21:01:16 info: Client connected: xHeAvrWsNVn4jTH4AAAF -2026-01-14 21:01:16 info: User disconnected xHeAvrWsNVn4jTH4AAAF beacuse of transport close -2026-01-14 21:01:16 info: Client connected: 4zBS9FjvnXypjd9YAAAH -2026-01-14 21:01:16 info: User disconnected 4zBS9FjvnXypjd9YAAAH beacuse of transport error -2026-01-14 21:01:17 info: Client connected: QVCKUkS8KDSqUsNgAAAJ -2026-01-14 21:01:19 info: Join as viewer listner started -2026-01-14 21:01:19 info: Join as viewer started -2026-01-14 21:01:19 info: Get room started -2026-01-14 21:01:19 info: Get room executed successfully -2026-01-14 21:01:19 info: Join as viewer completed successfully -2026-01-14 21:01:19 info: Get room started -2026-01-14 21:01:19 info: Get room executed successfully -2026-01-14 21:01:19 info: Join viewer listner successfully executed -2026-01-14 21:01:19 info: Create viewer transport listner started -2026-01-14 21:01:19 info: Get room started -2026-01-14 21:01:19 info: Get room executed successfully -2026-01-14 21:01:19 info: Create viewer transport started -2026-01-14 21:01:19 info: Get room started -2026-01-14 21:01:19 info: Get room executed successfully -2026-01-14 21:01:19 info: Creation of webRTC transport started -2026-01-14 21:01:19 info: WebRTC Transport created : d9429316-b13b-4ad9-8dbf-a066df4d9967 -2026-01-14 21:01:19 info: Create viewer transport successfully executed -2026-01-14 21:01:19 info: Create viewer transport listner successfully executed -2026-01-14 21:01:19 info: Consume lister started -2026-01-14 21:01:19 info: Consume media started -2026-01-14 21:01:19 info: Get room started -2026-01-14 21:01:19 info: Get room executed successfully -2026-01-14 21:01:19 info: Get room started -2026-01-14 21:01:19 info: Get room executed successfully -2026-01-14 21:01:19 info: Get room started -2026-01-14 21:01:19 info: Get room executed successfully -2026-01-14 21:01:19 info: Viewer media consume successfully executed -2026-01-14 21:01:19 info: Consume lister executed successfully -2026-01-14 21:01:19 info: Connect consumer listner started -2026-01-14 21:01:19 info: Connect consumer started -2026-01-14 21:01:19 info: Get room started -2026-01-14 21:01:19 info: Get room executed successfully -2026-01-14 21:01:19 info: Connect consumer executed successfully -2026-01-14 21:01:19 info: Connect consumer listner executed successfully -2026-01-14 21:01:19 info: Resume consumer listner started -2026-01-14 21:01:19 info: Resume consumer started -2026-01-14 21:01:19 info: Resume consumer listner executed successfully -2026-01-14 21:01:19 info: Consumer resumed -2026-01-14 21:01:19 info: Consumer resumed -2026-01-14 21:01:47 info: User disconnected QVCKUkS8KDSqUsNgAAAJ beacuse of transport close -2026-01-14 21:01:49 info: User disconnected HxtTHTUoXqD3MrGdAAAB beacuse of transport close -2026-01-14 21:01:51 info: Client connected: Lly_GMHo3t39LLiRAAAL -2026-01-14 21:01:53 info: Create room listner started -2026-01-14 21:01:53 info: Create room started -2026-01-14 21:01:53 info: Creating worker started -2026-01-14 21:01:53 info: Creation of worker successfully executed -2026-01-14 21:01:53 info: Creation of router started -2026-01-14 21:01:53 info: Router created for room: c00abcbd-e92d-4aa3-96de-8e34e244b5ea -2026-01-14 21:01:53 info: Creation of webRtc server started -2026-01-14 21:01:53 info: WebRTC Server created successfully -2026-01-14 21:01:53 info: Creation of room successfully executed -2026-01-14 21:01:53 info: Add broadcaster started -2026-01-14 21:01:53 info: Get room started -2026-01-14 21:01:53 info: Get room executed successfully -2026-01-14 21:01:53 info: Added broadcaster into memory room -2026-01-14 21:01:53 info: Broadcaster created successfully -2026-01-14 21:01:53 info: Create room listner exceuted successfully -2026-01-14 21:01:53 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 21:01:53 info: Get room started -2026-01-14 21:01:53 info: Get room executed successfully -2026-01-14 21:01:53 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-14 21:01:53 info: Create broadcaster lister started -2026-01-14 21:01:53 info: Get room started -2026-01-14 21:01:53 info: Get room executed successfully -2026-01-14 21:01:53 info: Creation of webRTC transport started -2026-01-14 21:01:53 info: WebRTC Transport created : 581a0f67-6026-4bc9-97ab-0645cbc601f1 -2026-01-14 21:01:53 info: Save broadcaster transport executed successfully -2026-01-14 21:01:56 info: Connect broadcaster transport lister started -2026-01-14 21:01:56 info: Get room started -2026-01-14 21:01:56 info: Get room executed successfully -2026-01-14 21:01:56 info: Connect broadcaster transport executed successfully -2026-01-14 21:01:56 info: Producer listener started -2026-01-14 21:01:56 info: Get room started -2026-01-14 21:01:56 info: Get room executed successfully -2026-01-14 21:01:56 info: Producer listener executed successfully: -2026-01-14 21:01:56 info: Producer listener started -2026-01-14 21:01:56 info: Get room started -2026-01-14 21:01:56 info: Get room executed successfully -2026-01-14 21:01:56 info: Producer listener executed successfully: -2026-01-14 21:02:04 info: Client connected: vupHJ1oTTxyo_6ZpAAAN -2026-01-14 21:02:07 info: Join as viewer listner started -2026-01-14 21:02:07 info: Join as viewer started -2026-01-14 21:02:07 info: Get room started -2026-01-14 21:02:07 info: Get room executed successfully -2026-01-14 21:02:07 info: Join as viewer completed successfully -2026-01-14 21:02:07 info: Get room started -2026-01-14 21:02:07 info: Get room executed successfully -2026-01-14 21:02:07 info: Join viewer listner successfully executed -2026-01-14 21:02:07 info: Create viewer transport listner started -2026-01-14 21:02:07 info: Get room started -2026-01-14 21:02:07 info: Get room executed successfully -2026-01-14 21:02:07 info: Create viewer transport started -2026-01-14 21:02:07 info: Get room started -2026-01-14 21:02:07 info: Get room executed successfully -2026-01-14 21:02:07 info: Creation of webRTC transport started -2026-01-14 21:02:07 info: WebRTC Transport created : 8759d4c4-4295-427a-92a5-7712a2f45ce9 -2026-01-14 21:02:07 info: Create viewer transport successfully executed -2026-01-14 21:02:07 info: Create viewer transport listner successfully executed -2026-01-14 21:02:07 info: Consume lister started -2026-01-14 21:02:07 info: Consume media started -2026-01-14 21:02:07 info: Get room started -2026-01-14 21:02:07 info: Get room executed successfully -2026-01-14 21:02:07 info: Get room started -2026-01-14 21:02:07 info: Get room executed successfully -2026-01-14 21:02:07 info: Get room started -2026-01-14 21:02:07 info: Get room executed successfully -2026-01-14 21:02:07 info: Viewer media consume successfully executed -2026-01-14 21:02:07 info: Consume lister executed successfully -2026-01-14 21:02:07 info: Connect consumer listner started -2026-01-14 21:02:07 info: Connect consumer started -2026-01-14 21:02:07 info: Get room started -2026-01-14 21:02:07 info: Get room executed successfully -2026-01-14 21:02:07 info: Connect consumer executed successfully -2026-01-14 21:02:07 info: Connect consumer listner executed successfully -2026-01-14 21:02:07 info: Resume consumer listner started -2026-01-14 21:02:07 info: Resume consumer started -2026-01-14 21:02:07 info: Resume consumer listner executed successfully -2026-01-14 21:02:07 info: Consumer resumed -2026-01-14 21:02:07 info: Consumer resumed -2026-01-14 21:03:18 info: User disconnected vupHJ1oTTxyo_6ZpAAAN beacuse of transport close -2026-01-14 21:03:18 info: Client connected: K1EWvZI9JSc1xgwEAAAP -2026-01-14 21:03:19 info: Join as viewer listner started -2026-01-14 21:03:19 info: Join as viewer started -2026-01-14 21:03:19 info: Get room started -2026-01-14 21:03:19 error: Room not found -2026-01-14 21:03:19 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at joinAsViewer (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/viewer.handler.ts:18:25) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:20:25) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-14 21:03:19 error: Room does not exist with cs -2026-01-14 21:03:19 info: Get room started -2026-01-14 21:03:19 error: Room not found -2026-01-14 21:03:19 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:23:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:03:19 error: Room router not found -2026-01-14 21:03:25 info: Join as viewer listner started -2026-01-14 21:03:25 info: Join as viewer started -2026-01-14 21:03:25 info: Get room started -2026-01-14 21:03:25 error: Room not found -2026-01-14 21:03:25 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at joinAsViewer (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/viewer.handler.ts:18:25) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:20:25) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-14 21:03:25 error: Room does not exist with cs -2026-01-14 21:03:25 info: Get room started -2026-01-14 21:03:25 error: Room not found -2026-01-14 21:03:25 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:23:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:03:25 error: Room router not found -2026-01-14 21:03:31 info: Join as viewer listner started -2026-01-14 21:03:31 info: Join as viewer started -2026-01-14 21:03:31 info: Get room started -2026-01-14 21:03:31 info: Get room executed successfully -2026-01-14 21:03:31 info: Join as viewer completed successfully -2026-01-14 21:03:31 info: Get room started -2026-01-14 21:03:31 info: Get room executed successfully -2026-01-14 21:03:31 info: Join viewer listner successfully executed -2026-01-14 21:03:31 info: Create viewer transport listner started -2026-01-14 21:03:31 info: Get room started -2026-01-14 21:03:31 info: Get room executed successfully -2026-01-14 21:03:31 info: Create viewer transport started -2026-01-14 21:03:31 info: Get room started -2026-01-14 21:03:31 info: Get room executed successfully -2026-01-14 21:03:31 info: Creation of webRTC transport started -2026-01-14 21:03:31 info: WebRTC Transport created : 081c63b6-e0cc-497b-938f-447f5afd95f0 -2026-01-14 21:03:31 info: Create viewer transport successfully executed -2026-01-14 21:03:31 info: Create viewer transport listner successfully executed -2026-01-14 21:03:31 info: Consume lister started -2026-01-14 21:03:31 info: Consume media started -2026-01-14 21:03:31 info: Get room started -2026-01-14 21:03:31 info: Get room executed successfully -2026-01-14 21:03:31 info: Get room started -2026-01-14 21:03:31 info: Get room executed successfully -2026-01-14 21:03:31 info: Get room started -2026-01-14 21:03:31 info: Get room executed successfully -2026-01-14 21:03:31 info: Viewer media consume successfully executed -2026-01-14 21:03:31 info: Consume lister executed successfully -2026-01-14 21:03:31 info: Connect consumer listner started -2026-01-14 21:03:31 info: Connect consumer started -2026-01-14 21:03:31 info: Get room started -2026-01-14 21:03:31 info: Get room executed successfully -2026-01-14 21:03:31 info: Connect consumer executed successfully -2026-01-14 21:03:31 info: Connect consumer listner executed successfully -2026-01-14 21:03:31 info: Resume consumer listner started -2026-01-14 21:03:31 info: Resume consumer started -2026-01-14 21:03:31 info: Resume consumer listner executed successfully -2026-01-14 21:03:31 info: Consumer resumed -2026-01-14 21:03:31 info: Consumer resumed -2026-01-14 21:03:34 info: User disconnected K1EWvZI9JSc1xgwEAAAP beacuse of transport close -2026-01-14 21:03:35 info: Client connected: qubNg-2cULV8lGT0AAAR -2026-01-14 21:03:36 info: Join as viewer listner started -2026-01-14 21:03:36 info: Join as viewer started -2026-01-14 21:03:36 info: Get room started -2026-01-14 21:03:36 info: Get room executed successfully -2026-01-14 21:03:36 info: Join as viewer completed successfully -2026-01-14 21:03:36 info: Get room started -2026-01-14 21:03:36 info: Get room executed successfully -2026-01-14 21:03:36 info: Join viewer listner successfully executed -2026-01-14 21:03:36 info: Create viewer transport listner started -2026-01-14 21:03:36 info: Get room started -2026-01-14 21:03:36 info: Get room executed successfully -2026-01-14 21:03:36 info: Create viewer transport started -2026-01-14 21:03:36 info: Get room started -2026-01-14 21:03:36 info: Get room executed successfully -2026-01-14 21:03:36 info: Creation of webRTC transport started -2026-01-14 21:03:36 info: WebRTC Transport created : 2d24219d-6d96-4a91-9235-cb4afbb4d019 -2026-01-14 21:03:36 info: Create viewer transport successfully executed -2026-01-14 21:03:36 info: Create viewer transport listner successfully executed -2026-01-14 21:03:36 info: Consume lister started -2026-01-14 21:03:36 info: Consume media started -2026-01-14 21:03:36 info: Get room started -2026-01-14 21:03:36 info: Get room executed successfully -2026-01-14 21:03:36 info: Get room started -2026-01-14 21:03:36 info: Get room executed successfully -2026-01-14 21:03:36 info: Get room started -2026-01-14 21:03:36 info: Get room executed successfully -2026-01-14 21:03:36 info: Viewer media consume successfully executed -2026-01-14 21:03:36 info: Consume lister executed successfully -2026-01-14 21:03:36 info: Connect consumer listner started -2026-01-14 21:03:36 info: Connect consumer started -2026-01-14 21:03:36 info: Get room started -2026-01-14 21:03:36 info: Get room executed successfully -2026-01-14 21:03:36 info: Connect consumer executed successfully -2026-01-14 21:03:36 info: Connect consumer listner executed successfully -2026-01-14 21:03:36 info: Resume consumer listner started -2026-01-14 21:03:36 info: Resume consumer started -2026-01-14 21:03:36 info: Resume consumer listner executed successfully -2026-01-14 21:03:36 info: Consumer resumed -2026-01-14 21:03:36 info: Consumer resumed -2026-01-14 21:05:45 info: User disconnected qubNg-2cULV8lGT0AAAR beacuse of transport close -2026-01-14 21:05:45 info: Client connected: GCfRR_Hu6lpq3YukAAAT -2026-01-14 21:06:00 info: Join as viewer listner started -2026-01-14 21:06:00 info: Join as viewer started -2026-01-14 21:06:00 info: Get room started -2026-01-14 21:06:00 info: Get room executed successfully -2026-01-14 21:06:00 info: Join as viewer completed successfully -2026-01-14 21:06:00 info: Get room started -2026-01-14 21:06:00 info: Get room executed successfully -2026-01-14 21:06:00 info: Join viewer listner successfully executed -2026-01-14 21:06:00 info: Create viewer transport listner started -2026-01-14 21:06:00 info: Get room started -2026-01-14 21:06:00 info: Get room executed successfully -2026-01-14 21:06:00 info: Create viewer transport started -2026-01-14 21:06:00 info: Get room started -2026-01-14 21:06:00 info: Get room executed successfully -2026-01-14 21:06:00 info: Creation of webRTC transport started -2026-01-14 21:06:00 info: WebRTC Transport created : 04389956-e2ef-4951-a4a8-78d13b20451d -2026-01-14 21:06:00 info: Create viewer transport successfully executed -2026-01-14 21:06:00 info: Create viewer transport listner successfully executed -2026-01-14 21:06:00 info: Consume lister started -2026-01-14 21:06:00 info: Consume media started -2026-01-14 21:06:00 info: Get room started -2026-01-14 21:06:00 info: Get room executed successfully -2026-01-14 21:06:00 info: Get room started -2026-01-14 21:06:00 info: Get room executed successfully -2026-01-14 21:06:00 info: Get room started -2026-01-14 21:06:00 info: Get room executed successfully -2026-01-14 21:06:00 info: Viewer media consume successfully executed -2026-01-14 21:06:00 info: Consume lister executed successfully -2026-01-14 21:06:00 info: Connect consumer listner started -2026-01-14 21:06:00 info: Connect consumer started -2026-01-14 21:06:00 info: Get room started -2026-01-14 21:06:00 info: Get room executed successfully -2026-01-14 21:06:00 info: Connect consumer executed successfully -2026-01-14 21:06:00 info: Connect consumer listner executed successfully -2026-01-14 21:06:00 info: Resume consumer listner started -2026-01-14 21:06:00 info: Resume consumer started -2026-01-14 21:06:00 info: Resume consumer listner executed successfully -2026-01-14 21:06:00 info: Consumer resumed -2026-01-14 21:06:00 info: Consumer resumed -2026-01-14 21:07:44 info: User disconnected GCfRR_Hu6lpq3YukAAAT beacuse of transport close -2026-01-14 21:07:47 info: User disconnected Lly_GMHo3t39LLiRAAAL beacuse of transport close -2026-01-14 21:08:03 info: Client connected: Ss21RJ5Hku-giODTAAAV -2026-01-14 21:08:07 info: Client connected: B1G90okMryFxYx-_AAAX -2026-01-14 21:08:11 info: Create room listner started -2026-01-14 21:08:11 info: Create room started -2026-01-14 21:08:11 info: Creating worker started -2026-01-14 21:08:11 info: Creation of worker successfully executed -2026-01-14 21:08:11 info: Creation of router started -2026-01-14 21:08:11 info: Router created for room: e2e56481-e169-4a26-8b9d-a3377a451a3d -2026-01-14 21:08:11 info: Creation of webRtc server started -2026-01-14 21:08:11 info: WebRTC Server created successfully -2026-01-14 21:08:11 info: Creation of room successfully executed -2026-01-14 21:08:11 info: Add broadcaster started -2026-01-14 21:08:11 info: Get room started -2026-01-14 21:08:11 info: Get room executed successfully -2026-01-14 21:08:11 info: Added broadcaster into memory room -2026-01-14 21:08:11 info: Broadcaster created successfully -2026-01-14 21:08:11 info: Create room listner exceuted successfully -2026-01-14 21:08:11 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 21:08:11 info: Get room started -2026-01-14 21:08:11 info: Get room executed successfully -2026-01-14 21:08:11 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-14 21:08:11 info: Create broadcaster lister started -2026-01-14 21:08:11 info: Get room started -2026-01-14 21:08:11 info: Get room executed successfully -2026-01-14 21:08:11 info: Creation of webRTC transport started -2026-01-14 21:08:11 info: WebRTC Transport created : 10bd5ae1-e647-4931-aef9-18e60ebb5603 -2026-01-14 21:08:11 info: Save broadcaster transport executed successfully -2026-01-14 21:08:12 info: Connect broadcaster transport lister started -2026-01-14 21:08:12 info: Get room started -2026-01-14 21:08:12 info: Get room executed successfully -2026-01-14 21:08:12 info: Connect broadcaster transport executed successfully -2026-01-14 21:08:12 info: Producer listener started -2026-01-14 21:08:12 info: Get room started -2026-01-14 21:08:12 info: Get room executed successfully -2026-01-14 21:08:12 info: Producer listener executed successfully: -2026-01-14 21:08:12 info: Producer listener started -2026-01-14 21:08:12 info: Get room started -2026-01-14 21:08:12 info: Get room executed successfully -2026-01-14 21:08:12 info: Producer listener executed successfully: -2026-01-14 21:08:16 info: Join as viewer listner started -2026-01-14 21:08:16 info: Join as viewer started -2026-01-14 21:08:16 info: Get room started -2026-01-14 21:08:16 info: Get room executed successfully -2026-01-14 21:08:16 info: Join as viewer completed successfully -2026-01-14 21:08:16 info: Get room started -2026-01-14 21:08:16 info: Get room executed successfully -2026-01-14 21:08:16 info: Join viewer listner successfully executed -2026-01-14 21:08:16 info: Create viewer transport listner started -2026-01-14 21:08:16 info: Get room started -2026-01-14 21:08:16 info: Get room executed successfully -2026-01-14 21:08:16 info: Create viewer transport started -2026-01-14 21:08:16 info: Get room started -2026-01-14 21:08:16 info: Get room executed successfully -2026-01-14 21:08:16 info: Creation of webRTC transport started -2026-01-14 21:08:16 info: WebRTC Transport created : c544e53d-67aa-412b-9c63-fc36b8aa3d72 -2026-01-14 21:08:16 info: Create viewer transport successfully executed -2026-01-14 21:08:16 info: Create viewer transport listner successfully executed -2026-01-14 21:08:16 info: Consume lister started -2026-01-14 21:08:16 info: Consume media started -2026-01-14 21:08:16 info: Get room started -2026-01-14 21:08:16 info: Get room executed successfully -2026-01-14 21:08:16 info: Get room started -2026-01-14 21:08:16 info: Get room executed successfully -2026-01-14 21:08:16 info: Get room started -2026-01-14 21:08:16 info: Get room executed successfully -2026-01-14 21:08:16 info: Viewer media consume successfully executed -2026-01-14 21:08:16 info: Consume lister executed successfully -2026-01-14 21:08:16 info: Connect consumer listner started -2026-01-14 21:08:16 info: Connect consumer started -2026-01-14 21:08:16 info: Get room started -2026-01-14 21:08:16 info: Get room executed successfully -2026-01-14 21:08:16 info: Connect consumer executed successfully -2026-01-14 21:08:16 info: Connect consumer listner executed successfully -2026-01-14 21:08:16 info: Resume consumer listner started -2026-01-14 21:08:16 info: Resume consumer started -2026-01-14 21:08:16 info: Resume consumer listner executed successfully -2026-01-14 21:08:16 info: Consumer resumed -2026-01-14 21:08:16 info: Consumer resumed -2026-01-14 21:08:59 info: User disconnected Ss21RJ5Hku-giODTAAAV beacuse of transport close -2026-01-14 21:08:59 info: Client connected: 9Mad7NTgbfC5Wxe2AAAZ -2026-01-14 21:09:00 info: User disconnected 9Mad7NTgbfC5Wxe2AAAZ beacuse of transport close -2026-01-14 21:09:00 info: User disconnected B1G90okMryFxYx-_AAAX beacuse of transport close -2026-01-14 21:09:00 info: Client connected: yaUcFtl0cAoCbp8YAAAb -2026-01-14 21:09:00 info: Client connected: nrdZhpVIou5nLMeOAAAd -2026-01-14 21:10:15 info: Client connected: xF7RbSWtLzTXFMgOAAAB -2026-01-14 21:10:15 info: Client connected: XE8Diihn0H1VrZRVAAAD -2026-01-14 21:10:17 info: Create room listner started -2026-01-14 21:10:17 info: Create room started -2026-01-14 21:10:17 info: Creating worker started -2026-01-14 21:10:17 info: Creation of worker successfully executed -2026-01-14 21:10:17 info: Creation of router started -2026-01-14 21:10:17 info: Router created for room: 5b52ac81-602a-4d43-bf0c-d591d67a39be -2026-01-14 21:10:17 info: Creation of webRtc server started -2026-01-14 21:10:17 info: WebRTC Server created successfully -2026-01-14 21:10:17 info: Creation of room successfully executed -2026-01-14 21:10:17 info: Add broadcaster started -2026-01-14 21:10:17 info: Get room started -2026-01-14 21:10:17 info: Get room executed successfully -2026-01-14 21:10:17 info: Added broadcaster into memory room -2026-01-14 21:10:17 info: Broadcaster created successfully -2026-01-14 21:10:17 info: Create room listner exceuted successfully -2026-01-14 21:10:17 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 21:10:17 info: Get room started -2026-01-14 21:10:17 info: Get room executed successfully -2026-01-14 21:10:17 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-14 21:10:17 info: Create broadcaster lister started -2026-01-14 21:10:17 info: Get room started -2026-01-14 21:10:17 info: Get room executed successfully -2026-01-14 21:10:17 info: Creation of webRTC transport started -2026-01-14 21:10:17 info: WebRTC Transport created : f74b8bfc-2355-4524-bc7b-721a6dd3dd42 -2026-01-14 21:10:17 info: Save broadcaster transport executed successfully -2026-01-14 21:10:18 info: Connect broadcaster transport lister started -2026-01-14 21:10:18 info: Get room started -2026-01-14 21:10:18 info: Get room executed successfully -2026-01-14 21:10:18 info: Connect broadcaster transport executed successfully -2026-01-14 21:10:18 info: Producer listener started -2026-01-14 21:10:18 info: Get room started -2026-01-14 21:10:18 info: Get room executed successfully -2026-01-14 21:10:18 info: Producer listener executed successfully: -2026-01-14 21:10:18 info: Producer listener started -2026-01-14 21:10:18 info: Get room started -2026-01-14 21:10:18 info: Get room executed successfully -2026-01-14 21:10:18 info: Producer listener executed successfully: -2026-01-14 21:11:14 info: Join as viewer listner started -2026-01-14 21:11:14 info: Join as viewer started -2026-01-14 21:11:14 info: Get room started -2026-01-14 21:11:14 info: Get room executed successfully -2026-01-14 21:11:14 info: Join as viewer completed successfully -2026-01-14 21:11:14 info: Get room started -2026-01-14 21:11:14 info: Get room executed successfully -2026-01-14 21:11:14 info: Join viewer listner successfully executed -2026-01-14 21:11:14 info: Create viewer transport listner started -2026-01-14 21:11:14 info: Get room started -2026-01-14 21:11:14 info: Get room executed successfully -2026-01-14 21:11:14 info: Create viewer transport started -2026-01-14 21:11:14 info: Get room started -2026-01-14 21:11:14 info: Get room executed successfully -2026-01-14 21:11:14 info: Creation of webRTC transport started -2026-01-14 21:11:14 info: WebRTC Transport created : 398bd296-8d62-4775-a023-906c6ac14cd7 -2026-01-14 21:11:14 info: Create viewer transport successfully executed -2026-01-14 21:11:14 info: Create viewer transport listner successfully executed -2026-01-14 21:11:14 info: Consume lister started -2026-01-14 21:11:14 info: Consume media started -2026-01-14 21:11:14 info: Get room started -2026-01-14 21:11:14 info: Get room executed successfully -2026-01-14 21:11:14 info: Get room started -2026-01-14 21:11:14 info: Get room executed successfully -2026-01-14 21:11:14 info: Get room started -2026-01-14 21:11:14 info: Get room executed successfully -2026-01-14 21:11:14 info: Viewer media consume successfully executed -2026-01-14 21:11:14 info: Consume lister executed successfully -2026-01-14 21:11:14 info: Connect consumer listner started -2026-01-14 21:11:14 info: Connect consumer started -2026-01-14 21:11:14 info: Get room started -2026-01-14 21:11:14 info: Get room executed successfully -2026-01-14 21:11:14 info: Connect consumer executed successfully -2026-01-14 21:11:14 info: Connect consumer listner executed successfully -2026-01-14 21:11:14 info: Resume consumer listner started -2026-01-14 21:11:14 info: Resume consumer started -2026-01-14 21:11:14 info: Resume consumer listner executed successfully -2026-01-14 21:11:14 info: Consumer resumed -2026-01-14 21:11:14 info: Consumer resumed -2026-01-14 21:11:39 info: User disconnected XE8Diihn0H1VrZRVAAAD beacuse of transport close -2026-01-14 21:11:40 info: User disconnected xF7RbSWtLzTXFMgOAAAB beacuse of transport close -2026-01-14 21:30:52 info: Client connected: UXKThiWeIT0yhvybAAAB -2026-01-14 21:30:55 info: Client connected: n30D_Q_OreoMpvmyAAAD -2026-01-14 21:30:58 info: Create room listner started -2026-01-14 21:30:58 info: Create room started -2026-01-14 21:30:58 info: Creating worker started -2026-01-14 21:30:58 info: Creation of worker successfully executed -2026-01-14 21:30:58 info: Creation of router started -2026-01-14 21:30:58 info: Router created for room: 600f21c8-b412-43db-b0d9-2b903c80f211 -2026-01-14 21:30:58 info: Creation of webRtc server started -2026-01-14 21:30:58 info: WebRTC Server created successfully -2026-01-14 21:30:58 info: Creation of room successfully executed -2026-01-14 21:30:58 info: Add broadcaster started -2026-01-14 21:30:58 info: Get room started -2026-01-14 21:30:58 info: Get room executed successfully -2026-01-14 21:30:58 info: Added broadcaster into memory room -2026-01-14 21:30:58 info: Broadcaster created successfully -2026-01-14 21:30:58 info: Create room listner exceuted successfully -2026-01-14 21:30:58 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 21:30:58 info: Get room started -2026-01-14 21:30:58 info: Get room executed successfully -2026-01-14 21:30:58 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-14 21:30:58 info: Create broadcaster lister started -2026-01-14 21:30:58 info: Get room started -2026-01-14 21:30:58 info: Get room executed successfully -2026-01-14 21:30:58 info: Creation of webRTC transport started -2026-01-14 21:30:58 info: WebRTC Transport created : d6a31724-e0fb-4cc8-84fa-baadddbbc920 -2026-01-14 21:30:58 info: Save broadcaster transport executed successfully -2026-01-14 21:30:59 info: Connect broadcaster transport lister started -2026-01-14 21:30:59 info: Get room started -2026-01-14 21:30:59 info: Get room executed successfully -2026-01-14 21:30:59 info: Connect broadcaster transport executed successfully -2026-01-14 21:30:59 info: Producer listener started -2026-01-14 21:30:59 info: Get room started -2026-01-14 21:30:59 info: Get room executed successfully -2026-01-14 21:30:59 info: Producer listener executed successfully: -2026-01-14 21:30:59 info: Producer listener started -2026-01-14 21:30:59 info: Get room started -2026-01-14 21:30:59 info: Get room executed successfully -2026-01-14 21:30:59 info: Producer listener executed successfully: -2026-01-14 21:31:03 info: Join as viewer listner started -2026-01-14 21:31:03 info: Join as viewer started -2026-01-14 21:31:03 info: Get room started -2026-01-14 21:31:03 info: Get room executed successfully -2026-01-14 21:31:03 info: Join as viewer completed successfully -2026-01-14 21:31:03 info: Get room started -2026-01-14 21:31:03 info: Get room executed successfully -2026-01-14 21:31:03 info: Join viewer listner successfully executed -2026-01-14 21:31:03 info: Create viewer transport listner started -2026-01-14 21:31:03 info: Get room started -2026-01-14 21:31:03 info: Get room executed successfully -2026-01-14 21:31:03 info: Create viewer transport started -2026-01-14 21:31:03 info: Get room started -2026-01-14 21:31:03 info: Get room executed successfully -2026-01-14 21:31:03 info: Creation of webRTC transport started -2026-01-14 21:31:03 info: WebRTC Transport created : e379a3a1-33ce-4dcf-bf26-9a11652a1297 -2026-01-14 21:31:03 info: Create viewer transport successfully executed -2026-01-14 21:31:03 info: Create viewer transport listner successfully executed -2026-01-14 21:31:03 info: Consume lister started -2026-01-14 21:31:03 info: Consume media started -2026-01-14 21:31:03 info: Get room started -2026-01-14 21:31:03 info: Get room executed successfully -2026-01-14 21:31:03 info: Get room started -2026-01-14 21:31:03 info: Get room executed successfully -2026-01-14 21:31:03 info: Get room started -2026-01-14 21:31:03 info: Get room executed successfully -2026-01-14 21:31:03 info: Viewer media consume successfully executed -2026-01-14 21:31:03 info: Consume lister executed successfully -2026-01-14 21:31:03 info: Connect consumer listner started -2026-01-14 21:31:03 info: Connect consumer started -2026-01-14 21:31:03 info: Get room started -2026-01-14 21:31:03 info: Get room executed successfully -2026-01-14 21:31:03 info: Connect consumer executed successfully -2026-01-14 21:31:03 info: Connect consumer listner executed successfully -2026-01-14 21:31:03 info: Resume consumer listner started -2026-01-14 21:31:03 info: Resume consumer started -2026-01-14 21:31:03 info: Resume consumer listner executed successfully -2026-01-14 21:31:03 info: Consumer resumed -2026-01-14 21:31:03 info: Consumer resumed -2026-01-14 21:33:12 info: Client connected: ldK2DngTDQpyIPZOAAAB -2026-01-14 21:33:15 info: Client connected: HDWskV5ok8_TbtCCAAAD -2026-01-14 21:33:17 info: User disconnected HDWskV5ok8_TbtCCAAAD beacuse of transport error -2026-01-14 21:33:21 info: Client connected: q_plwZhb9TuOONYYAAAF -2026-01-14 21:33:25 info: Create room listner started -2026-01-14 21:33:25 info: Create room started -2026-01-14 21:33:25 info: Creating worker started -2026-01-14 21:33:25 info: Creation of worker successfully executed -2026-01-14 21:33:25 info: Creation of router started -2026-01-14 21:33:25 info: Router created for room: e25409e7-62c9-4b40-9d80-2dbe9671456b -2026-01-14 21:33:25 info: Creation of webRtc server started -2026-01-14 21:33:25 info: WebRTC Server created successfully -2026-01-14 21:33:25 info: Creation of room successfully executed -2026-01-14 21:33:25 info: Add broadcaster started -2026-01-14 21:33:25 info: Get room started -2026-01-14 21:33:25 info: Get room executed successfully -2026-01-14 21:33:25 info: Added broadcaster into memory room -2026-01-14 21:33:25 info: Broadcaster created successfully -2026-01-14 21:33:25 info: Create room listner exceuted successfully -2026-01-14 21:33:25 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 21:33:25 info: Get room started -2026-01-14 21:33:25 info: Get room executed successfully -2026-01-14 21:33:25 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-14 21:33:25 info: Create broadcaster lister started -2026-01-14 21:33:25 info: Get room started -2026-01-14 21:33:25 info: Get room executed successfully -2026-01-14 21:33:25 info: Creation of webRTC transport started -2026-01-14 21:33:25 info: WebRTC Transport created : fe58a6d0-8a81-4a67-9da6-f58c82d2c091 -2026-01-14 21:33:25 info: Save broadcaster transport executed successfully -2026-01-14 21:33:25 info: Connect broadcaster transport lister started -2026-01-14 21:33:25 info: Get room started -2026-01-14 21:33:25 info: Get room executed successfully -2026-01-14 21:33:25 info: Connect broadcaster transport executed successfully -2026-01-14 21:33:25 info: Producer listener started -2026-01-14 21:33:25 info: Get room started -2026-01-14 21:33:25 info: Get room executed successfully -2026-01-14 21:33:25 info: Producer listener executed successfully: -2026-01-14 21:33:25 info: Producer listener started -2026-01-14 21:33:25 info: Get room started -2026-01-14 21:33:25 info: Get room executed successfully -2026-01-14 21:33:25 info: Producer listener executed successfully: -2026-01-14 21:33:29 info: Join as viewer listner started -2026-01-14 21:33:29 info: Join as viewer started -2026-01-14 21:33:29 info: Get room started -2026-01-14 21:33:29 info: Get room executed successfully -2026-01-14 21:33:29 info: Join as viewer completed successfully -2026-01-14 21:33:29 info: Get room started -2026-01-14 21:33:29 info: Get room executed successfully -2026-01-14 21:33:29 info: Join viewer listner successfully executed -2026-01-14 21:33:29 info: Create viewer transport listner started -2026-01-14 21:33:29 info: Get room started -2026-01-14 21:33:29 info: Get room executed successfully -2026-01-14 21:33:29 info: Create viewer transport started -2026-01-14 21:33:29 info: Get room started -2026-01-14 21:33:29 info: Get room executed successfully -2026-01-14 21:33:29 info: Creation of webRTC transport started -2026-01-14 21:33:29 info: WebRTC Transport created : 705ec981-5fdd-4546-95c2-bdf1e5044230 -2026-01-14 21:33:29 info: Create viewer transport successfully executed -2026-01-14 21:33:29 info: Create viewer transport listner successfully executed -2026-01-14 21:33:29 info: Consume lister started -2026-01-14 21:33:29 info: Consume media started -2026-01-14 21:33:29 info: Get room started -2026-01-14 21:33:29 info: Get room executed successfully -2026-01-14 21:33:29 info: Get room started -2026-01-14 21:33:29 info: Get room executed successfully -2026-01-14 21:33:29 info: Get room started -2026-01-14 21:33:29 info: Get room executed successfully -2026-01-14 21:33:29 info: Viewer media consume successfully executed -2026-01-14 21:33:29 info: Consume lister executed successfully -2026-01-14 21:33:29 info: Connect consumer listner started -2026-01-14 21:33:29 info: Connect consumer started -2026-01-14 21:33:29 info: Get room started -2026-01-14 21:33:29 info: Get room executed successfully -2026-01-14 21:33:29 info: Connect consumer executed successfully -2026-01-14 21:33:29 info: Connect consumer listner executed successfully -2026-01-14 21:33:29 info: Resume consumer listner started -2026-01-14 21:33:29 info: Resume consumer started -2026-01-14 21:33:29 info: Resume consumer listner executed successfully -2026-01-14 21:33:29 info: Consumer resumed -2026-01-14 21:33:29 info: Consumer resumed -2026-01-14 21:34:19 info: User disconnected ldK2DngTDQpyIPZOAAAB beacuse of transport close -2026-01-14 21:34:20 info: User disconnected q_plwZhb9TuOONYYAAAF beacuse of transport close -2026-01-14 21:57:51 info: Client connected: Z9aOjee6KAYdlm9YAAAB -2026-01-14 21:58:02 info: Client connected: TwiqIN24-RkT2RwhAAAD -2026-01-14 21:58:05 info: Create room listner started -2026-01-14 21:58:05 info: Create room started -2026-01-14 21:58:05 info: Creating worker started -2026-01-14 21:58:05 info: Creation of worker successfully executed -2026-01-14 21:58:05 info: Creation of router started -2026-01-14 21:58:05 info: Router created for room: 8fcf1d92-d5cb-4eff-9297-91203ddc7cbb -2026-01-14 21:58:05 info: Creation of webRtc server started -2026-01-14 21:58:05 error: Error: port bind failed due to address not available [protocol:udp, ip:'172.31.15.89', port:41490, attempt:1/10000] [method:worker.createWebRtcServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-14 21:58:05 error: Error creating web rtc server -2026-01-14 21:58:05 error: Error - at createRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:94:13) - at processTicksAndRejections (node:internal/process/task_queues:103:5) - at async Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:22:20) -2026-01-14 21:58:05 info: Add broadcaster started -2026-01-14 21:58:05 info: Get room started -2026-01-14 21:58:05 error: Room not found -2026-01-14 21:58:05 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:151:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:28:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:58:05 error: Room not found -2026-01-14 21:58:05 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:155:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:28:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:58:05 info: Broadcaster created successfully -2026-01-14 21:58:05 info: Create room listner exceuted successfully -2026-01-14 21:58:05 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 21:58:05 info: Get room started -2026-01-14 21:58:05 error: Room not found -2026-01-14 21:58:05 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:55:27) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-14 21:58:05 error: Error in room router -2026-01-14 21:58:14 info: User disconnected Z9aOjee6KAYdlm9YAAAB beacuse of transport close -2026-01-14 21:58:15 info: Client connected: BqWGCLe8L1VwoKYLAAAF -2026-01-14 21:58:15 info: Create room listner started -2026-01-14 21:58:15 info: Create room started -2026-01-14 21:58:15 info: Creating worker started -2026-01-14 21:58:15 info: Creation of worker successfully executed -2026-01-14 21:58:15 info: Creation of router started -2026-01-14 21:58:15 info: Router created for room: 0b297556-5d86-44a4-97c8-238e8ff542da -2026-01-14 21:58:15 info: Creation of webRtc server started -2026-01-14 21:58:15 error: Error: port bind failed due to address not available [protocol:udp, ip:'172.31.15.89', port:44466, attempt:1/10000] [method:worker.createWebRtcServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-14 21:58:15 error: Error creating web rtc server -2026-01-14 21:58:15 error: Error - at createRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:94:13) - at processTicksAndRejections (node:internal/process/task_queues:103:5) - at async Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:22:20) -2026-01-14 21:58:15 info: Add broadcaster started -2026-01-14 21:58:15 info: Get room started -2026-01-14 21:58:15 error: Room not found -2026-01-14 21:58:15 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:151:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:28:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:58:15 error: Room not found -2026-01-14 21:58:15 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:155:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:28:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:58:15 info: Broadcaster created successfully -2026-01-14 21:58:15 info: Create room listner exceuted successfully -2026-01-14 21:58:16 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 21:58:16 info: Get room started -2026-01-14 21:58:16 error: Room not found -2026-01-14 21:58:16 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:55:27) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-14 21:58:16 error: Error in room router -2026-01-14 21:58:24 info: User disconnected BqWGCLe8L1VwoKYLAAAF beacuse of transport close -2026-01-14 21:58:27 info: Client connected: W62g-ee-twYAPo-4AAAH -2026-01-14 21:58:29 info: Create room listner started -2026-01-14 21:58:29 info: Create room started -2026-01-14 21:58:29 info: Creating worker started -2026-01-14 21:58:29 info: Creation of worker successfully executed -2026-01-14 21:58:29 info: Creation of router started -2026-01-14 21:58:29 info: Router created for room: 15f2b9bd-917e-44b7-89c4-db4d98c96a4a -2026-01-14 21:58:29 info: Creation of webRtc server started -2026-01-14 21:58:29 error: Error: port bind failed due to address not available [protocol:udp, ip:'172.31.15.89', port:47906, attempt:1/10000] [method:worker.createWebRtcServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-14 21:58:29 error: Error creating web rtc server -2026-01-14 21:58:29 error: Error - at createRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:94:13) - at processTicksAndRejections (node:internal/process/task_queues:103:5) - at async Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:22:20) -2026-01-14 21:58:29 info: Add broadcaster started -2026-01-14 21:58:29 info: Get room started -2026-01-14 21:58:29 error: Room not found -2026-01-14 21:58:29 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:151:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:28:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:58:29 error: Room not found -2026-01-14 21:58:29 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:155:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:28:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:58:29 info: Broadcaster created successfully -2026-01-14 21:58:29 info: Create room listner exceuted successfully -2026-01-14 21:58:29 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 21:58:29 info: Get room started -2026-01-14 21:58:29 error: Room not found -2026-01-14 21:58:29 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:55:27) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-14 21:58:29 error: Error in room router -2026-01-14 21:58:31 info: User disconnected W62g-ee-twYAPo-4AAAH beacuse of transport close -2026-01-14 21:58:35 info: Create room listner started -2026-01-14 21:58:35 info: Create room started -2026-01-14 21:58:35 info: Creating worker started -2026-01-14 21:58:35 info: Creation of worker successfully executed -2026-01-14 21:58:35 info: Creation of router started -2026-01-14 21:58:35 info: Router created for room: 8be64143-b5f0-4ab1-8635-086f598e6bd7 -2026-01-14 21:58:35 info: Creation of webRtc server started -2026-01-14 21:58:35 error: Error: port bind failed due to address not available [protocol:udp, ip:'172.31.15.89', port:43602, attempt:1/10000] [method:worker.createWebRtcServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-14 21:58:35 error: Error creating web rtc server -2026-01-14 21:58:35 error: Error - at createRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:94:13) - at processTicksAndRejections (node:internal/process/task_queues:103:5) - at async Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:22:20) -2026-01-14 21:58:35 info: Add broadcaster started -2026-01-14 21:58:35 info: Get room started -2026-01-14 21:58:35 error: Room not found -2026-01-14 21:58:35 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:151:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:28:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:58:35 error: Room not found -2026-01-14 21:58:35 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:155:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:28:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:58:35 info: Broadcaster created successfully -2026-01-14 21:58:35 info: Create room listner exceuted successfully -2026-01-14 21:58:35 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 21:58:35 info: Get room started -2026-01-14 21:58:35 error: Room not found -2026-01-14 21:58:35 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:55:27) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-14 21:58:35 error: Error in room router -2026-01-14 21:59:02 info: Client connected: f9GbkWLfRr81RSumAAAB -2026-01-14 21:59:02 info: User disconnected f9GbkWLfRr81RSumAAAB beacuse of transport close -2026-01-14 21:59:02 info: Client connected: 2pRpNGLPOiugyepXAAAD -2026-01-14 21:59:05 info: User disconnected 2pRpNGLPOiugyepXAAAD beacuse of transport close -2026-01-14 21:59:09 info: Client connected: V8yPelKhaupRh3w1AAAF -2026-01-14 21:59:10 info: Create room listner started -2026-01-14 21:59:10 info: Create room started -2026-01-14 21:59:10 info: Creating worker started -2026-01-14 21:59:10 info: Creation of worker successfully executed -2026-01-14 21:59:10 info: Creation of router started -2026-01-14 21:59:10 info: Router created for room: 70e8fd20-5125-41d3-a95c-e790a5c386c5 -2026-01-14 21:59:10 info: Creation of webRtc server started -2026-01-14 21:59:10 error: Error: port bind failed due to address not available [protocol:udp, ip:'172.31.15.89', port:48034, attempt:1/10000] [method:worker.createWebRtcServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-14 21:59:10 error: Error creating web rtc server -2026-01-14 21:59:10 error: Error - at createRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:94:13) - at processTicksAndRejections (node:internal/process/task_queues:103:5) - at async Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:22:20) -2026-01-14 21:59:10 info: Add broadcaster started -2026-01-14 21:59:10 info: Get room started -2026-01-14 21:59:10 error: Room not found -2026-01-14 21:59:10 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:151:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:28:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:59:10 error: Room not found -2026-01-14 21:59:10 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:155:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:28:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:59:10 info: Broadcaster created successfully -2026-01-14 21:59:10 info: Create room listner exceuted successfully -2026-01-14 21:59:10 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 21:59:10 info: Get room started -2026-01-14 21:59:10 error: Room not found -2026-01-14 21:59:10 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:55:27) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-14 21:59:10 error: Error in room router -2026-01-14 22:00:27 info: Client connected: HQTngdw6oeJxbtS_AAAB -2026-01-14 22:00:29 info: Client connected: VseokFpcKR54wcbaAAAD -2026-01-14 22:00:32 info: Create room listner started -2026-01-14 22:00:32 info: Create room started -2026-01-14 22:00:32 info: Creating worker started -2026-01-14 22:00:32 info: Creation of worker successfully executed -2026-01-14 22:00:32 info: Creation of router started -2026-01-14 22:00:32 info: Router created for room: de0aa68c-a58d-4807-9ec6-150bea4bc6f4 -2026-01-14 22:00:32 info: Creation of webRtc server started -2026-01-14 22:00:32 info: WebRTC Server created successfully -2026-01-14 22:00:32 info: Creation of room successfully executed -2026-01-14 22:00:32 info: Add broadcaster started -2026-01-14 22:00:32 info: Get room started -2026-01-14 22:00:32 info: Get room executed successfully -2026-01-14 22:00:32 info: Added broadcaster into memory room -2026-01-14 22:00:32 info: Broadcaster created successfully -2026-01-14 22:00:32 info: Create room listner exceuted successfully -2026-01-14 22:00:32 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 22:00:32 info: Get room started -2026-01-14 22:00:32 info: Get room executed successfully -2026-01-14 22:00:32 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-14 22:00:33 info: Create broadcaster lister started -2026-01-14 22:00:33 info: Get room started -2026-01-14 22:00:33 info: Get room executed successfully -2026-01-14 22:00:33 info: Creation of webRTC transport started -2026-01-14 22:00:33 info: WebRTC Transport created : a57625fb-f7f5-449c-ac3d-df2477100173 -2026-01-14 22:00:33 info: Save broadcaster transport executed successfully -2026-01-14 22:00:33 info: Connect broadcaster transport lister started -2026-01-14 22:00:33 info: Get room started -2026-01-14 22:00:33 info: Get room executed successfully -2026-01-14 22:00:33 info: Connect broadcaster transport executed successfully -2026-01-14 22:00:33 info: Producer listener started -2026-01-14 22:00:33 info: Get room started -2026-01-14 22:00:33 info: Get room executed successfully -2026-01-14 22:00:33 info: Producer listener executed successfully: -2026-01-14 22:00:33 info: Producer listener started -2026-01-14 22:00:33 info: Get room started -2026-01-14 22:00:33 info: Get room executed successfully -2026-01-14 22:00:33 info: Producer listener executed successfully: -2026-01-14 22:00:37 info: Join as viewer listner started -2026-01-14 22:00:37 info: Join as viewer started -2026-01-14 22:00:37 info: Get room started -2026-01-14 22:00:37 info: Get room executed successfully -2026-01-14 22:00:37 info: Join as viewer completed successfully -2026-01-14 22:00:37 info: Get room started -2026-01-14 22:00:37 info: Get room executed successfully -2026-01-14 22:00:37 info: Join viewer listner successfully executed -2026-01-14 22:00:37 info: Create viewer transport listner started -2026-01-14 22:00:37 info: Get room started -2026-01-14 22:00:37 info: Get room executed successfully -2026-01-14 22:00:37 info: Create viewer transport started -2026-01-14 22:00:37 info: Get room started -2026-01-14 22:00:37 info: Get room executed successfully -2026-01-14 22:00:37 info: Creation of webRTC transport started -2026-01-14 22:00:37 info: WebRTC Transport created : 80d9d43a-5e7c-4867-9829-b0496e44003f -2026-01-14 22:00:37 info: Create viewer transport successfully executed -2026-01-14 22:00:37 info: Create viewer transport listner successfully executed -2026-01-14 22:00:37 info: Consume lister started -2026-01-14 22:00:37 info: Consume media started -2026-01-14 22:00:37 info: Get room started -2026-01-14 22:00:37 info: Get room executed successfully -2026-01-14 22:00:37 info: Get room started -2026-01-14 22:00:37 info: Get room executed successfully -2026-01-14 22:00:37 info: Get room started -2026-01-14 22:00:37 info: Get room executed successfully -2026-01-14 22:00:37 info: Viewer media consume successfully executed -2026-01-14 22:00:37 info: Consume lister executed successfully -2026-01-14 22:00:37 info: Connect consumer listner started -2026-01-14 22:00:37 info: Connect consumer started -2026-01-14 22:00:37 info: Get room started -2026-01-14 22:00:37 info: Get room executed successfully -2026-01-14 22:00:37 info: Connect consumer executed successfully -2026-01-14 22:00:37 info: Connect consumer listner executed successfully -2026-01-14 22:00:37 info: Resume consumer listner started -2026-01-14 22:00:37 info: Resume consumer started -2026-01-14 22:00:37 info: Resume consumer listner executed successfully -2026-01-14 22:00:37 info: Consumer resumed -2026-01-14 22:00:37 info: Consumer resumed -2026-01-14 22:07:11 info: User disconnected HQTngdw6oeJxbtS_AAAB beacuse of transport close -2026-01-14 22:07:11 info: User disconnected VseokFpcKR54wcbaAAAD beacuse of transport close -2026-01-14 22:07:58 info: Client connected: HBI-Glbn5Z9NPDTAAAAB -2026-01-14 22:08:03 info: Client connected: j6ACBC_xapeXToWVAAAD -2026-01-14 22:08:06 info: Create room listner started -2026-01-14 22:08:06 info: Create room started -2026-01-14 22:08:06 info: Creating worker started -2026-01-14 22:08:07 info: Creation of worker successfully executed -2026-01-14 22:08:07 info: Creation of router started -2026-01-14 22:08:07 info: Router created for room: 71005e31-8a7e-4cc9-8d39-30f1e5e9bcc8 -2026-01-14 22:08:07 info: Creation of webRtc server started -2026-01-14 22:08:07 info: WebRTC Server created successfully -2026-01-14 22:08:07 info: Creation of room successfully executed -2026-01-14 22:08:07 info: Add broadcaster started -2026-01-14 22:08:07 info: Get room started -2026-01-14 22:08:07 info: Get room executed successfully -2026-01-14 22:08:07 info: Added broadcaster into memory room -2026-01-14 22:08:07 info: Broadcaster created successfully -2026-01-14 22:08:07 info: Create room listner exceuted successfully -2026-01-14 22:08:07 info: Get getRouterRtpCapabilities socket lister started -2026-01-14 22:08:07 info: Get room started -2026-01-14 22:08:07 info: Get room executed successfully -2026-01-14 22:08:07 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-14 22:08:07 info: Create broadcaster lister started -2026-01-14 22:08:07 info: Get room started -2026-01-14 22:08:07 info: Get room executed successfully -2026-01-14 22:08:07 info: Creation of webRTC transport started -2026-01-14 22:08:07 info: WebRTC Transport created : ad98db04-0ac4-47ca-ae84-418a2ec951ca -2026-01-14 22:08:07 info: Save broadcaster transport executed successfully -2026-01-14 22:08:07 info: Connect broadcaster transport lister started -2026-01-14 22:08:07 info: Get room started -2026-01-14 22:08:07 info: Get room executed successfully -2026-01-14 22:08:07 info: Connect broadcaster transport executed successfully -2026-01-14 22:08:07 info: Producer listener started -2026-01-14 22:08:07 info: Get room started -2026-01-14 22:08:07 info: Get room executed successfully -2026-01-14 22:08:07 info: Producer listener executed successfully: -2026-01-14 22:08:07 info: Producer listener started -2026-01-14 22:08:07 info: Get room started -2026-01-14 22:08:07 info: Get room executed successfully -2026-01-14 22:08:07 info: Producer listener executed successfully: -2026-01-14 22:08:12 info: Join as viewer listner started -2026-01-14 22:08:12 info: Join as viewer started -2026-01-14 22:08:12 info: Get room started -2026-01-14 22:08:12 info: Get room executed successfully -2026-01-14 22:08:12 info: Join as viewer completed successfully -2026-01-14 22:08:12 info: Get room started -2026-01-14 22:08:12 info: Get room executed successfully -2026-01-14 22:08:12 info: Join viewer listner successfully executed -2026-01-14 22:08:12 info: Create viewer transport listner started -2026-01-14 22:08:12 info: Get room started -2026-01-14 22:08:12 info: Get room executed successfully -2026-01-14 22:08:12 info: Create viewer transport started -2026-01-14 22:08:12 info: Get room started -2026-01-14 22:08:12 info: Get room executed successfully -2026-01-14 22:08:12 info: Creation of webRTC transport started -2026-01-14 22:08:12 info: WebRTC Transport created : 6296a100-1396-4245-bab7-1541e6512324 -2026-01-14 22:08:12 info: Create viewer transport successfully executed -2026-01-14 22:08:12 info: Create viewer transport listner successfully executed -2026-01-14 22:08:12 info: Consume lister started -2026-01-14 22:08:12 info: Consume media started -2026-01-14 22:08:12 info: Get room started -2026-01-14 22:08:12 info: Get room executed successfully -2026-01-14 22:08:12 info: Get room started -2026-01-14 22:08:12 info: Get room executed successfully -2026-01-14 22:08:12 info: Get room started -2026-01-14 22:08:12 info: Get room executed successfully -2026-01-14 22:08:12 info: Viewer media consume successfully executed -2026-01-14 22:08:12 info: Consume lister executed successfully -2026-01-14 22:08:12 info: Connect consumer listner started -2026-01-14 22:08:12 info: Connect consumer started -2026-01-14 22:08:12 info: Get room started -2026-01-14 22:08:12 info: Get room executed successfully -2026-01-14 22:08:12 info: Connect consumer executed successfully -2026-01-14 22:08:12 info: Connect consumer listner executed successfully -2026-01-14 22:08:12 info: Resume consumer listner started -2026-01-14 22:08:12 info: Resume consumer started -2026-01-14 22:08:12 info: Resume consumer listner executed successfully -2026-01-14 22:08:12 info: Consumer resumed -2026-01-14 22:08:12 info: Consumer resumed -2026-01-14 22:09:53 info: User disconnected HBI-Glbn5Z9NPDTAAAAB beacuse of transport close -2026-01-14 22:09:53 info: User disconnected j6ACBC_xapeXToWVAAAD beacuse of transport close -2026-01-15 09:55:14 info: Client connected: IypC_W5EGHt5ymjwAAAB -2026-01-15 09:55:17 info: Client connected: XAY3IzCCN5YlIGNXAAAD -2026-01-15 09:55:20 info: Create room listner started -2026-01-15 09:55:20 info: Create room started -2026-01-15 09:55:20 info: Creating worker started -2026-01-15 09:55:20 info: Creation of worker successfully executed -2026-01-15 09:55:20 info: Creation of router started -2026-01-15 09:55:20 info: Router created for room: c4bc2f1d-f306-44fc-8595-7cfac9751473 -2026-01-15 09:55:20 info: Creation of webRtc server started -2026-01-15 09:55:20 info: WebRTC Server created successfully -2026-01-15 09:55:20 info: Creation of room successfully executed -2026-01-15 09:55:20 info: Add broadcaster started -2026-01-15 09:55:20 info: Get room started -2026-01-15 09:55:20 info: Get room executed successfully -2026-01-15 09:55:20 info: Added broadcaster into memory room -2026-01-15 09:55:20 info: Broadcaster created successfully -2026-01-15 09:55:20 info: Create room listner exceuted successfully -2026-01-15 09:55:20 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 09:55:20 info: Get room started -2026-01-15 09:55:20 info: Get room executed successfully -2026-01-15 09:55:20 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 09:55:20 info: Create broadcaster lister started -2026-01-15 09:55:20 info: Get room started -2026-01-15 09:55:20 info: Get room executed successfully -2026-01-15 09:55:20 info: Creation of webRTC transport started -2026-01-15 09:55:20 info: WebRTC Transport created : 8b74202a-ff97-496d-82c6-7d426df37f0d -2026-01-15 09:55:20 info: Save broadcaster transport executed successfully -2026-01-15 09:55:21 info: Connect broadcaster transport lister started -2026-01-15 09:55:21 info: Get room started -2026-01-15 09:55:21 info: Get room executed successfully -2026-01-15 09:55:21 info: Connect broadcaster transport executed successfully -2026-01-15 09:55:21 info: Producer listener started -2026-01-15 09:55:21 info: Get room started -2026-01-15 09:55:21 info: Get room executed successfully -2026-01-15 09:55:21 info: Producer listener executed successfully: -2026-01-15 09:55:21 info: Producer listener started -2026-01-15 09:55:21 info: Get room started -2026-01-15 09:55:21 info: Get room executed successfully -2026-01-15 09:55:21 info: Producer listener executed successfully: -2026-01-15 09:55:27 info: Join as viewer listner started -2026-01-15 09:55:27 info: Join as viewer started -2026-01-15 09:55:27 info: Get room started -2026-01-15 09:55:27 info: Get room executed successfully -2026-01-15 09:55:27 info: Join as viewer completed successfully -2026-01-15 09:55:27 info: Get room started -2026-01-15 09:55:27 info: Get room executed successfully -2026-01-15 09:55:27 info: Join viewer listner successfully executed -2026-01-15 09:55:27 info: Create viewer transport listner started -2026-01-15 09:55:27 info: Get room started -2026-01-15 09:55:27 info: Get room executed successfully -2026-01-15 09:55:27 info: Create viewer transport started -2026-01-15 09:55:27 info: Get room started -2026-01-15 09:55:27 info: Get room executed successfully -2026-01-15 09:55:27 info: Creation of webRTC transport started -2026-01-15 09:55:27 info: WebRTC Transport created : b49cc706-9104-4356-b2ba-7b87700e93cb -2026-01-15 09:55:27 info: Create viewer transport successfully executed -2026-01-15 09:55:27 info: Create viewer transport listner successfully executed -2026-01-15 09:55:27 info: Consume lister started -2026-01-15 09:55:27 info: Consume media started -2026-01-15 09:55:27 info: Get room started -2026-01-15 09:55:27 info: Get room executed successfully -2026-01-15 09:55:27 info: Get room started -2026-01-15 09:55:27 info: Get room executed successfully -2026-01-15 09:55:27 info: Get room started -2026-01-15 09:55:27 info: Get room executed successfully -2026-01-15 09:55:27 info: Viewer media consume successfully executed -2026-01-15 09:55:27 info: Consume lister executed successfully -2026-01-15 09:55:27 info: Connect consumer listner started -2026-01-15 09:55:27 info: Connect consumer started -2026-01-15 09:55:27 info: Get room started -2026-01-15 09:55:27 info: Get room executed successfully -2026-01-15 09:55:27 info: Connect consumer executed successfully -2026-01-15 09:55:27 info: Connect consumer listner executed successfully -2026-01-15 09:55:27 info: Resume consumer listner started -2026-01-15 09:55:27 info: Resume consumer started -2026-01-15 09:55:27 info: Resume consumer listner executed successfully -2026-01-15 09:55:27 info: Consumer resumed -2026-01-15 09:55:27 info: Consumer resumed -2026-01-15 09:57:08 info: User disconnected IypC_W5EGHt5ymjwAAAB beacuse of transport close -2026-01-15 09:57:08 info: Client connected: xV2n-PU9IzStdq1uAAAF -2026-01-15 09:57:08 info: User disconnected XAY3IzCCN5YlIGNXAAAD beacuse of transport close -2026-01-15 09:57:09 info: Client connected: u4t19dVD_7shlL4CAAAH -2026-01-15 10:00:32 info: Client connected: RczxD6YDVwW5rMusAAAB -2026-01-15 10:00:33 info: Client connected: 8ltIEwO-ZwBiYo1HAAAD -2026-01-15 10:00:36 info: User disconnected RczxD6YDVwW5rMusAAAB beacuse of transport close -2026-01-15 10:00:37 info: User disconnected 8ltIEwO-ZwBiYo1HAAAD beacuse of transport close -2026-01-15 10:00:41 info: Client connected: vOVajQVjvoNaXNKYAAAF -2026-01-15 10:00:50 info: Client connected: jVkeAn9zPKQES8IiAAAH -2026-01-15 10:00:51 info: Create room listner started -2026-01-15 10:00:51 info: Create room started -2026-01-15 10:00:51 info: Creating worker started -2026-01-15 10:00:51 info: Creation of worker successfully executed -2026-01-15 10:00:51 info: Creation of router started -2026-01-15 10:00:51 info: Router created for room: 29fa7ded-283d-4ec1-bf56-8c3f080f7eae -2026-01-15 10:00:51 info: Creation of webRtc server started -2026-01-15 10:00:51 info: WebRTC Server created successfully -2026-01-15 10:00:51 info: Creation of room successfully executed -2026-01-15 10:00:51 info: Add broadcaster started -2026-01-15 10:00:51 info: Get room started -2026-01-15 10:00:51 info: Get room executed successfully -2026-01-15 10:00:51 info: Added broadcaster into memory room -2026-01-15 10:00:51 info: Broadcaster created successfully -2026-01-15 10:00:51 info: Create room listner exceuted successfully -2026-01-15 10:00:51 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 10:00:51 info: Get room started -2026-01-15 10:00:51 info: Get room executed successfully -2026-01-15 10:00:51 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 10:00:51 info: Create broadcaster lister started -2026-01-15 10:00:51 info: Get room started -2026-01-15 10:00:51 info: Get room executed successfully -2026-01-15 10:00:51 info: Creation of webRTC transport started -2026-01-15 10:00:51 info: WebRTC Transport created : e8aefae2-76a6-4af2-977c-563def6d0d5e -2026-01-15 10:00:51 info: Save broadcaster transport executed successfully -2026-01-15 10:00:52 info: Connect broadcaster transport lister started -2026-01-15 10:00:52 info: Get room started -2026-01-15 10:00:52 info: Get room executed successfully -2026-01-15 10:00:52 info: Connect broadcaster transport executed successfully -2026-01-15 10:00:52 info: Producer listener started -2026-01-15 10:00:52 info: Get room started -2026-01-15 10:00:52 info: Get room executed successfully -2026-01-15 10:00:52 info: Producer listener executed successfully: -2026-01-15 10:00:52 info: Producer listener started -2026-01-15 10:00:52 info: Get room started -2026-01-15 10:00:52 info: Get room executed successfully -2026-01-15 10:00:52 info: Producer listener executed successfully: -2026-01-15 10:00:58 info: Join as viewer listner started -2026-01-15 10:00:58 info: Join as viewer started -2026-01-15 10:00:58 info: Get room started -2026-01-15 10:00:58 info: Get room executed successfully -2026-01-15 10:00:58 info: Join as viewer completed successfully -2026-01-15 10:00:58 info: Get room started -2026-01-15 10:00:58 info: Get room executed successfully -2026-01-15 10:00:58 info: Join viewer listner successfully executed -2026-01-15 10:00:58 info: Create viewer transport listner started -2026-01-15 10:00:58 info: Get room started -2026-01-15 10:00:58 info: Get room executed successfully -2026-01-15 10:00:58 info: Create viewer transport started -2026-01-15 10:00:58 info: Get room started -2026-01-15 10:00:58 info: Get room executed successfully -2026-01-15 10:00:58 info: Creation of webRTC transport started -2026-01-15 10:00:58 info: WebRTC Transport created : ef7f78f1-877f-4e4f-bd45-59c307cbb253 -2026-01-15 10:00:58 info: Create viewer transport successfully executed -2026-01-15 10:00:58 info: Create viewer transport listner successfully executed -2026-01-15 10:00:58 info: Consume lister started -2026-01-15 10:00:58 info: Consume media started -2026-01-15 10:00:58 info: Get room started -2026-01-15 10:00:58 info: Get room executed successfully -2026-01-15 10:00:58 info: Get room started -2026-01-15 10:00:58 info: Get room executed successfully -2026-01-15 10:00:58 info: Get room started -2026-01-15 10:00:58 info: Get room executed successfully -2026-01-15 10:00:58 info: Viewer media consume successfully executed -2026-01-15 10:00:58 info: Consume lister executed successfully -2026-01-15 10:00:58 info: Connect consumer listner started -2026-01-15 10:00:58 info: Connect consumer started -2026-01-15 10:00:58 info: Get room started -2026-01-15 10:00:58 info: Get room executed successfully -2026-01-15 10:00:58 info: Connect consumer executed successfully -2026-01-15 10:00:58 info: Connect consumer listner executed successfully -2026-01-15 10:00:58 info: Resume consumer listner started -2026-01-15 10:00:58 info: Resume consumer started -2026-01-15 10:00:58 info: Resume consumer listner executed successfully -2026-01-15 10:00:58 info: Consumer resumed -2026-01-15 10:00:58 info: Consumer resumed -2026-01-15 10:02:54 info: User disconnected vOVajQVjvoNaXNKYAAAF beacuse of transport close -2026-01-15 10:02:54 info: Client connected: oKpO5rdVJEVtnJOcAAAJ -2026-01-15 10:02:58 info: User disconnected jVkeAn9zPKQES8IiAAAH beacuse of transport close -2026-01-15 10:02:58 info: Client connected: GVG-A9JHzBTfcahGAAAL -2026-01-15 10:03:45 info: User disconnected GVG-A9JHzBTfcahGAAAL beacuse of transport close -2026-01-15 10:04:58 info: Client connected: pLOy1bk5Ec68ZXUZAAAB -2026-01-15 10:06:22 info: Client connected: Uz17WxdNc9iLNAY9AAAB -2026-01-15 10:06:45 info: User disconnected Uz17WxdNc9iLNAY9AAAB beacuse of transport close -2026-01-15 10:06:45 info: Client connected: FAzGUVxTX_vVYKKXAAAD -2026-01-15 10:06:51 info: User disconnected FAzGUVxTX_vVYKKXAAAD beacuse of transport close -2026-01-15 10:06:51 info: Client connected: Rlmh1skvQo68492DAAAF -2026-01-15 10:06:52 info: Create room listner started -2026-01-15 10:06:52 info: Create room started -2026-01-15 10:06:52 info: Creating worker started -2026-01-15 10:06:52 info: Creation of worker successfully executed -2026-01-15 10:06:52 info: Creation of router started -2026-01-15 10:06:52 info: Router created for room: ca283d5e-e714-41cb-b422-2eb621d32c86 -2026-01-15 10:06:52 info: Creation of webRtc server started -2026-01-15 10:06:52 info: WebRTC Server created successfully -2026-01-15 10:06:52 info: Creation of room successfully executed -2026-01-15 10:06:52 info: Add broadcaster started -2026-01-15 10:06:52 info: Get room started -2026-01-15 10:06:52 info: Get room executed successfully -2026-01-15 10:06:52 info: Added broadcaster into memory room -2026-01-15 10:06:52 info: Broadcaster created successfully -2026-01-15 10:06:52 info: Create room listner exceuted successfully -2026-01-15 10:06:52 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 10:06:52 info: Get room started -2026-01-15 10:06:52 info: Get room executed successfully -2026-01-15 10:06:52 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 10:06:52 info: Create broadcaster lister started -2026-01-15 10:06:52 info: Get room started -2026-01-15 10:06:52 info: Get room executed successfully -2026-01-15 10:06:52 info: Creation of webRTC transport started -2026-01-15 10:06:52 info: WebRTC Transport created : c11f0f0e-ae71-459d-8bf7-e974f8a7e9f5 -2026-01-15 10:06:52 info: Save broadcaster transport executed successfully -2026-01-15 10:06:53 info: Connect broadcaster transport lister started -2026-01-15 10:06:53 info: Get room started -2026-01-15 10:06:53 info: Get room executed successfully -2026-01-15 10:06:53 info: Connect broadcaster transport executed successfully -2026-01-15 10:06:53 info: Producer listener started -2026-01-15 10:06:53 info: Get room started -2026-01-15 10:06:53 info: Get room executed successfully -2026-01-15 10:06:53 info: Producer listener executed successfully: -2026-01-15 10:06:53 info: Producer listener started -2026-01-15 10:06:53 info: Get room started -2026-01-15 10:06:53 info: Get room executed successfully -2026-01-15 10:06:53 info: Producer listener executed successfully: -2026-01-15 10:06:57 info: Client connected: SHx2iY_oppGJnXzLAAAH -2026-01-15 10:07:02 info: Join as viewer listner started -2026-01-15 10:07:02 info: Join as viewer started -2026-01-15 10:07:02 info: Get room started -2026-01-15 10:07:02 info: Get room executed successfully -2026-01-15 10:07:02 info: Join as viewer completed successfully -2026-01-15 10:07:02 info: Get room started -2026-01-15 10:07:02 info: Get room executed successfully -2026-01-15 10:07:02 info: Join viewer listner successfully executed -2026-01-15 10:07:02 info: Create viewer transport listner started -2026-01-15 10:07:02 info: Get room started -2026-01-15 10:07:02 info: Get room executed successfully -2026-01-15 10:07:02 info: Create viewer transport started -2026-01-15 10:07:02 info: Get room started -2026-01-15 10:07:02 info: Get room executed successfully -2026-01-15 10:07:02 info: Creation of webRTC transport started -2026-01-15 10:07:02 info: WebRTC Transport created : 075dbce1-87fd-4c94-9030-891ede98047c -2026-01-15 10:07:02 info: Create viewer transport successfully executed -2026-01-15 10:07:02 info: Create viewer transport listner successfully executed -2026-01-15 10:07:02 info: Consume lister started -2026-01-15 10:07:02 info: Consume media started -2026-01-15 10:07:02 info: Get room started -2026-01-15 10:07:02 info: Get room executed successfully -2026-01-15 10:07:02 info: Get room started -2026-01-15 10:07:02 info: Get room executed successfully -2026-01-15 10:07:02 info: Get room started -2026-01-15 10:07:02 info: Get room executed successfully -2026-01-15 10:07:02 info: Viewer media consume successfully executed -2026-01-15 10:07:02 info: Consume lister executed successfully -2026-01-15 10:07:02 info: Connect consumer listner started -2026-01-15 10:07:02 info: Connect consumer started -2026-01-15 10:07:02 info: Get room started -2026-01-15 10:07:02 info: Get room executed successfully -2026-01-15 10:07:02 info: Connect consumer executed successfully -2026-01-15 10:07:02 info: Connect consumer listner executed successfully -2026-01-15 10:07:02 info: Resume consumer listner started -2026-01-15 10:07:02 info: Resume consumer started -2026-01-15 10:07:02 info: Resume consumer listner executed successfully -2026-01-15 10:07:02 info: Consumer resumed -2026-01-15 10:07:02 info: Consumer resumed -2026-01-15 10:07:49 info: User disconnected Rlmh1skvQo68492DAAAF beacuse of transport close -2026-01-15 10:07:49 info: Client connected: SvRIMoRuZL_ulnxbAAAJ -2026-01-15 10:10:46 info: Client connected: udYlDdNE2lm1JlMMAAAB -2026-01-15 10:10:48 info: Client connected: wAEqrRJIkFk2UQ0TAAAD -2026-01-15 10:11:19 info: Client connected: SQoTK1klnt5FkcOHAAAC -2026-01-15 10:11:19 info: Client connected: FJxIyRCp-aEz6TSJAAAD -2026-01-15 10:25:03 info: Client connected: LSB1dypSck_mX6H2AAAB -2026-01-15 10:25:06 info: Client connected: 13xL9qYurclCjvjsAAAD -2026-01-15 10:25:09 info: Create room listner started -2026-01-15 10:25:09 info: Create room started -2026-01-15 10:25:09 info: Creating worker started -2026-01-15 10:25:09 info: Creation of worker successfully executed -2026-01-15 10:25:09 info: Creation of router started -2026-01-15 10:25:09 info: Router created for room: 785b7d95-1402-473b-9d3e-ca9afdeb19cd -2026-01-15 10:25:09 info: Creation of webRtc server started -2026-01-15 10:25:09 info: WebRTC Server created successfully -2026-01-15 10:25:09 info: Creation of room successfully executed -2026-01-15 10:25:09 info: Add broadcaster started -2026-01-15 10:25:09 info: Get room started -2026-01-15 10:25:09 info: Get room executed successfully -2026-01-15 10:25:09 info: Added broadcaster into memory room -2026-01-15 10:25:09 info: Broadcaster created successfully -2026-01-15 10:25:09 info: Create room listner exceuted successfully -2026-01-15 10:25:09 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 10:25:09 info: Get room started -2026-01-15 10:25:09 info: Get room executed successfully -2026-01-15 10:25:09 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 10:25:09 info: Create broadcaster lister started -2026-01-15 10:25:09 info: Get room started -2026-01-15 10:25:09 info: Get room executed successfully -2026-01-15 10:25:09 info: Creation of webRTC transport started -2026-01-15 10:25:09 info: WebRTC Transport created : 94a0cb0a-f924-4e96-8456-dc35f7c64941 -2026-01-15 10:25:09 info: Save broadcaster transport executed successfully -2026-01-15 10:25:09 info: Connect broadcaster transport lister started -2026-01-15 10:25:09 info: Get room started -2026-01-15 10:25:09 info: Get room executed successfully -2026-01-15 10:25:09 info: Connect broadcaster transport executed successfully -2026-01-15 10:25:09 info: Producer listener started -2026-01-15 10:25:09 info: Get room started -2026-01-15 10:25:09 info: Get room executed successfully -2026-01-15 10:25:09 info: Producer listener executed successfully: -2026-01-15 10:25:09 info: Producer listener started -2026-01-15 10:25:09 info: Get room started -2026-01-15 10:25:09 info: Get room executed successfully -2026-01-15 10:25:09 info: Producer listener executed successfully: -2026-01-15 10:25:29 info: Join as viewer listner started -2026-01-15 10:25:29 info: Join as viewer started -2026-01-15 10:25:29 info: Get room started -2026-01-15 10:25:29 info: Get room executed successfully -2026-01-15 10:25:29 info: Join as viewer completed successfully -2026-01-15 10:25:29 info: Get room started -2026-01-15 10:25:29 info: Get room executed successfully -2026-01-15 10:25:29 info: Join viewer listner successfully executed -2026-01-15 10:25:29 info: Create viewer transport listner started -2026-01-15 10:25:29 info: Get room started -2026-01-15 10:25:29 info: Get room executed successfully -2026-01-15 10:25:29 info: Create viewer transport started -2026-01-15 10:25:29 info: Get room started -2026-01-15 10:25:29 info: Get room executed successfully -2026-01-15 10:25:29 info: Creation of webRTC transport started -2026-01-15 10:25:29 info: WebRTC Transport created : e5cd77fa-171f-4202-a591-7c6d992eb9cd -2026-01-15 10:25:29 info: Create viewer transport successfully executed -2026-01-15 10:25:29 info: Create viewer transport listner successfully executed -2026-01-15 10:25:29 info: Consume lister started -2026-01-15 10:25:29 info: Consume media started -2026-01-15 10:25:29 info: Get room started -2026-01-15 10:25:29 info: Get room executed successfully -2026-01-15 10:25:29 info: Get room started -2026-01-15 10:25:29 info: Get room executed successfully -2026-01-15 10:25:29 info: Get room started -2026-01-15 10:25:29 info: Get room executed successfully -2026-01-15 10:25:29 info: Viewer media consume successfully executed -2026-01-15 10:25:29 info: Consume lister executed successfully -2026-01-15 10:25:29 info: Connect consumer listner started -2026-01-15 10:25:29 info: Connect consumer started -2026-01-15 10:25:29 info: Get room started -2026-01-15 10:25:29 info: Get room executed successfully -2026-01-15 10:25:29 info: Connect consumer executed successfully -2026-01-15 10:25:29 info: Connect consumer listner executed successfully -2026-01-15 10:25:29 info: Resume consumer listner started -2026-01-15 10:25:29 info: Resume consumer started -2026-01-15 10:25:29 info: Resume consumer listner executed successfully -2026-01-15 10:25:29 info: Consumer resumed -2026-01-15 10:25:29 info: Consumer resumed -2026-01-15 10:26:26 info: User disconnected LSB1dypSck_mX6H2AAAB beacuse of transport close -2026-01-15 10:26:26 info: Client connected: 4jtqe7HYKzHrcQAQAAAF -2026-01-15 10:26:26 info: User disconnected 13xL9qYurclCjvjsAAAD beacuse of transport close -2026-01-15 10:26:26 info: Client connected: QMtzQrSdulGPoJfPAAAH -2026-01-15 10:35:57 info: Client connected: 4tEx7VQdQocIbhyEAAAB -2026-01-15 10:36:00 info: Client connected: K4vAIm1PgsgNaabiAAAD -2026-01-15 10:36:03 info: Create room listner started -2026-01-15 10:36:03 info: Create room started -2026-01-15 10:36:03 info: Creating worker started -2026-01-15 10:36:03 info: Creation of worker successfully executed -2026-01-15 10:36:03 info: Creation of webRtc server started -2026-01-15 10:36:03 info: WebRTC Server created successfully -2026-01-15 10:36:03 info: Creation of router started -2026-01-15 10:36:03 info: Router created for room: dc5bee2e-4470-451e-b5c1-8a4c07ca945c -2026-01-15 10:36:03 info: Creation of room successfully executed -2026-01-15 10:36:03 info: Add broadcaster started -2026-01-15 10:36:03 info: Get room started -2026-01-15 10:36:03 info: Get room executed successfully -2026-01-15 10:36:03 info: Added broadcaster into memory room -2026-01-15 10:36:03 info: Broadcaster created successfully -2026-01-15 10:36:03 info: Create room listner exceuted successfully -2026-01-15 10:36:03 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 10:36:03 info: Get room started -2026-01-15 10:36:03 info: Get room executed successfully -2026-01-15 10:36:03 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 10:36:03 info: Create broadcaster lister started -2026-01-15 10:36:03 info: Get room started -2026-01-15 10:36:03 info: Get room executed successfully -2026-01-15 10:36:03 info: Creation of webRTC transport started -2026-01-15 10:36:03 info: WebRTC Transport created : 03c72eb0-dbde-4cd0-ada3-ab9dca01eee0 -2026-01-15 10:36:03 info: Save broadcaster transport executed successfully -2026-01-15 10:36:04 info: Connect broadcaster transport lister started -2026-01-15 10:36:04 info: Get room started -2026-01-15 10:36:04 info: Get room executed successfully -2026-01-15 10:36:04 info: Connect broadcaster transport executed successfully -2026-01-15 10:36:04 info: Producer listener started -2026-01-15 10:36:04 info: Get room started -2026-01-15 10:36:04 info: Get room executed successfully -2026-01-15 10:36:04 info: Producer listener executed successfully: -2026-01-15 10:36:04 info: Producer listener started -2026-01-15 10:36:04 info: Get room started -2026-01-15 10:36:04 info: Get room executed successfully -2026-01-15 10:36:04 info: Producer listener executed successfully: -2026-01-15 10:36:08 info: Join as viewer listner started -2026-01-15 10:36:08 info: Join as viewer started -2026-01-15 10:36:08 info: Get room started -2026-01-15 10:36:08 info: Get room executed successfully -2026-01-15 10:36:08 info: Join as viewer completed successfully -2026-01-15 10:36:08 info: Get room started -2026-01-15 10:36:08 info: Get room executed successfully -2026-01-15 10:36:08 info: Join viewer listner successfully executed -2026-01-15 10:36:08 info: Create viewer transport listner started -2026-01-15 10:36:08 info: Get room started -2026-01-15 10:36:08 info: Get room executed successfully -2026-01-15 10:36:08 info: Create viewer transport started -2026-01-15 10:36:08 info: Get room started -2026-01-15 10:36:08 info: Get room executed successfully -2026-01-15 10:36:08 info: Creation of webRTC transport started -2026-01-15 10:36:08 info: WebRTC Transport created : 3d1b8b15-cfb9-4e4a-9e7e-2f4faa49ea59 -2026-01-15 10:36:08 info: Create viewer transport successfully executed -2026-01-15 10:36:08 info: Create viewer transport listner successfully executed -2026-01-15 10:36:08 info: Consume lister started -2026-01-15 10:36:08 info: Consume media started -2026-01-15 10:36:08 info: Get room started -2026-01-15 10:36:08 info: Get room executed successfully -2026-01-15 10:36:08 info: Get room started -2026-01-15 10:36:08 info: Get room executed successfully -2026-01-15 10:36:08 info: Get room started -2026-01-15 10:36:08 info: Get room executed successfully -2026-01-15 10:36:08 info: Viewer media consume successfully executed -2026-01-15 10:36:08 info: Consume lister executed successfully -2026-01-15 10:36:08 info: Connect consumer listner started -2026-01-15 10:36:08 info: Connect consumer started -2026-01-15 10:36:08 info: Get room started -2026-01-15 10:36:08 info: Get room executed successfully -2026-01-15 10:36:08 info: Connect consumer executed successfully -2026-01-15 10:36:08 info: Connect consumer listner executed successfully -2026-01-15 10:36:08 info: Resume consumer listner started -2026-01-15 10:36:08 info: Resume consumer started -2026-01-15 10:36:08 info: Resume consumer listner executed successfully -2026-01-15 10:36:08 info: Consumer resumed -2026-01-15 10:36:08 info: Consumer resumed -2026-01-15 10:36:55 info: User disconnected 4tEx7VQdQocIbhyEAAAB beacuse of transport close -2026-01-15 10:36:55 info: Client connected: DXZqN6v2sxVMhZ78AAAF -2026-01-15 10:36:55 info: User disconnected K4vAIm1PgsgNaabiAAAD beacuse of transport close -2026-01-15 10:36:55 info: Client connected: ScXqAIrF5TwChOV2AAAH -2026-01-15 10:38:59 info: Client connected: OxTfYGip7XhqdEgrAAAC -2026-01-15 10:38:59 info: Client connected: G2t-4l8-Ruu2nG-8AAAD -2026-01-15 10:40:11 info: User disconnected OxTfYGip7XhqdEgrAAAC beacuse of transport close -2026-01-15 10:40:12 info: User disconnected G2t-4l8-Ruu2nG-8AAAD beacuse of transport close -2026-01-15 11:15:10 info: Client connected: 54AFJ0m0BSc0r30jAAAB -2026-01-15 11:15:12 info: Client connected: a5GMutTHnKEQxGi1AAAD -2026-01-15 11:15:15 info: Create room listner started -2026-01-15 11:15:15 info: Create room started -2026-01-15 11:15:15 info: Creating worker started -2026-01-15 11:15:15 info: Creation of worker successfully executed -2026-01-15 11:15:15 info: Creation of webRtc server started -2026-01-15 11:15:15 info: WebRTC Server created successfully -2026-01-15 11:15:15 info: Creation of router started -2026-01-15 11:15:15 info: Router created for room: 6d4400cd-9c15-446c-a6ab-d73083d9a520 -2026-01-15 11:15:15 info: Creation of room successfully executed -2026-01-15 11:15:15 info: Add broadcaster started -2026-01-15 11:15:15 info: Get room started -2026-01-15 11:15:15 info: Get room executed successfully -2026-01-15 11:15:15 info: Added broadcaster into memory room -2026-01-15 11:15:15 info: Broadcaster created successfully -2026-01-15 11:15:15 info: Create room listner exceuted successfully -2026-01-15 11:15:15 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 11:15:15 info: Get room started -2026-01-15 11:15:15 info: Get room executed successfully -2026-01-15 11:15:15 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 11:15:15 info: Create broadcaster lister started -2026-01-15 11:15:15 info: Get room started -2026-01-15 11:15:15 info: Get room executed successfully -2026-01-15 11:15:15 info: Creation of webRTC transport started -2026-01-15 11:15:15 info: WebRTC Transport created : a773b2a3-e6c2-4df9-9de3-6a7245749544 -2026-01-15 11:15:15 info: Save broadcaster transport executed successfully -2026-01-15 11:15:16 info: Connect broadcaster transport lister started -2026-01-15 11:15:16 info: Get room started -2026-01-15 11:15:16 info: Get room executed successfully -2026-01-15 11:15:16 info: Connect broadcaster transport executed successfully -2026-01-15 11:15:16 info: Producer listener started -2026-01-15 11:15:16 info: Get room started -2026-01-15 11:15:16 info: Get room executed successfully -2026-01-15 11:15:16 info: Producer listener executed successfully: -2026-01-15 11:15:16 info: Producer listener started -2026-01-15 11:15:16 info: Get room started -2026-01-15 11:15:16 info: Get room executed successfully -2026-01-15 11:15:16 info: Producer listener executed successfully: -2026-01-15 11:15:20 info: Join as viewer listner started -2026-01-15 11:15:20 info: Join as viewer started -2026-01-15 11:15:20 info: Get room started -2026-01-15 11:15:20 info: Get room executed successfully -2026-01-15 11:15:20 info: Join as viewer completed successfully -2026-01-15 11:15:20 info: Get room started -2026-01-15 11:15:20 info: Get room executed successfully -2026-01-15 11:15:20 info: Join viewer listner successfully executed -2026-01-15 11:15:21 info: Create viewer transport listner started -2026-01-15 11:15:21 info: Get room started -2026-01-15 11:15:21 info: Get room executed successfully -2026-01-15 11:15:21 info: Create viewer transport started -2026-01-15 11:15:21 info: Get room started -2026-01-15 11:15:21 info: Get room executed successfully -2026-01-15 11:15:21 info: Creation of webRTC transport started -2026-01-15 11:15:21 info: WebRTC Transport created : 08637b81-0d90-4745-90e1-1b1dfc8e21bd -2026-01-15 11:15:21 info: Create viewer transport successfully executed -2026-01-15 11:15:21 info: Create viewer transport listner successfully executed -2026-01-15 11:15:21 info: Consume lister started -2026-01-15 11:15:21 info: Consume media started -2026-01-15 11:15:21 info: Get room started -2026-01-15 11:15:21 info: Get room executed successfully -2026-01-15 11:15:21 info: Get room started -2026-01-15 11:15:21 info: Get room executed successfully -2026-01-15 11:15:21 info: Get room started -2026-01-15 11:15:21 info: Get room executed successfully -2026-01-15 11:15:21 info: Viewer media consume successfully executed -2026-01-15 11:15:21 info: Consume lister executed successfully -2026-01-15 11:15:21 info: Connect consumer listner started -2026-01-15 11:15:21 info: Connect consumer started -2026-01-15 11:15:21 info: Get room started -2026-01-15 11:15:21 info: Get room executed successfully -2026-01-15 11:15:21 info: Connect consumer executed successfully -2026-01-15 11:15:21 info: Connect consumer listner executed successfully -2026-01-15 11:15:21 info: Resume consumer listner started -2026-01-15 11:15:21 info: Resume consumer started -2026-01-15 11:15:21 info: Resume consumer listner executed successfully -2026-01-15 11:15:21 info: Consumer resumed -2026-01-15 11:15:21 info: Consumer resumed -2026-01-15 11:16:28 info: User disconnected 54AFJ0m0BSc0r30jAAAB beacuse of transport close -2026-01-15 11:16:29 info: User disconnected a5GMutTHnKEQxGi1AAAD beacuse of transport close -2026-01-15 11:23:27 info: Client connected: dMW1DKvrxf0Rsp3dAAAB -2026-01-15 11:23:30 info: Client connected: KgzIgsw7FT1HULZaAAAD -2026-01-15 11:23:32 info: Create room listner started -2026-01-15 11:23:32 info: Create room started -2026-01-15 11:23:32 info: Creating worker started -2026-01-15 11:23:33 info: Creation of worker successfully executed -2026-01-15 11:23:33 info: Creation of webRtc server started -2026-01-15 11:23:33 info: WebRTC Server created successfully -2026-01-15 11:23:33 info: Creation of router started -2026-01-15 11:23:33 info: Router created for room: 67e9b29c-abc5-4518-8b0f-c3921ce7c8d7 -2026-01-15 11:23:33 info: Creation of room successfully executed -2026-01-15 11:23:33 info: Add broadcaster started -2026-01-15 11:23:33 info: Get room started -2026-01-15 11:23:33 info: Get room executed successfully -2026-01-15 11:23:33 info: Added broadcaster into memory room -2026-01-15 11:23:33 info: Broadcaster created successfully -2026-01-15 11:23:33 info: Create room listner exceuted successfully -2026-01-15 11:23:33 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 11:23:33 info: Get room started -2026-01-15 11:23:33 info: Get room executed successfully -2026-01-15 11:23:33 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 11:23:33 info: Create broadcaster lister started -2026-01-15 11:23:33 info: Get room started -2026-01-15 11:23:33 info: Get room executed successfully -2026-01-15 11:23:33 info: Creation of webRTC transport started -2026-01-15 11:23:33 info: WebRTC Transport created : 6d804143-3aa8-4ff1-a510-e68107a5f091 -2026-01-15 11:23:33 info: Save broadcaster transport executed successfully -2026-01-15 11:23:33 info: Connect broadcaster transport lister started -2026-01-15 11:23:33 info: Get room started -2026-01-15 11:23:33 info: Get room executed successfully -2026-01-15 11:23:33 info: Connect broadcaster transport executed successfully -2026-01-15 11:23:33 info: Producer listener started -2026-01-15 11:23:33 info: Get room started -2026-01-15 11:23:33 info: Get room executed successfully -2026-01-15 11:23:33 info: Producer listener executed successfully: -2026-01-15 11:23:33 info: Producer listener started -2026-01-15 11:23:33 info: Get room started -2026-01-15 11:23:33 info: Get room executed successfully -2026-01-15 11:23:33 info: Producer listener executed successfully: -2026-01-15 11:23:37 info: Join as viewer listner started -2026-01-15 11:23:37 info: Join as viewer started -2026-01-15 11:23:37 info: Get room started -2026-01-15 11:23:37 info: Get room executed successfully -2026-01-15 11:23:37 info: Join as viewer completed successfully -2026-01-15 11:23:37 info: Get room started -2026-01-15 11:23:37 info: Get room executed successfully -2026-01-15 11:23:37 info: Join viewer listner successfully executed -2026-01-15 11:23:37 info: Create viewer transport listner started -2026-01-15 11:23:37 info: Get room started -2026-01-15 11:23:37 info: Get room executed successfully -2026-01-15 11:23:37 info: Create viewer transport started -2026-01-15 11:23:37 info: Get room started -2026-01-15 11:23:37 info: Get room executed successfully -2026-01-15 11:23:37 info: Creation of webRTC transport started -2026-01-15 11:23:37 info: WebRTC Transport created : 5df7018d-7b34-4f00-a778-36fd867a8320 -2026-01-15 11:23:37 info: Create viewer transport successfully executed -2026-01-15 11:23:37 info: Create viewer transport listner successfully executed -2026-01-15 11:23:37 info: Consume lister started -2026-01-15 11:23:37 info: Consume media started -2026-01-15 11:23:37 info: Get room started -2026-01-15 11:23:37 info: Get room executed successfully -2026-01-15 11:23:37 info: Get room started -2026-01-15 11:23:37 info: Get room executed successfully -2026-01-15 11:23:37 info: Get room started -2026-01-15 11:23:37 info: Get room executed successfully -2026-01-15 11:23:37 info: Viewer media consume successfully executed -2026-01-15 11:23:37 info: Consume lister executed successfully -2026-01-15 11:23:37 info: Connect consumer listner started -2026-01-15 11:23:37 info: Connect consumer started -2026-01-15 11:23:37 info: Get room started -2026-01-15 11:23:37 info: Get room executed successfully -2026-01-15 11:23:37 info: Connect consumer executed successfully -2026-01-15 11:23:37 info: Connect consumer listner executed successfully -2026-01-15 11:23:37 info: Resume consumer listner started -2026-01-15 11:23:37 info: Resume consumer started -2026-01-15 11:23:37 info: Resume consumer listner executed successfully -2026-01-15 11:23:37 info: Consumer resumed -2026-01-15 11:23:37 info: Consumer resumed -2026-01-15 11:24:27 info: User disconnected dMW1DKvrxf0Rsp3dAAAB beacuse of transport close -2026-01-15 11:24:27 info: Client connected: tXRHI7JlcsMHMGoHAAAF -2026-01-15 11:24:28 info: User disconnected KgzIgsw7FT1HULZaAAAD beacuse of transport close -2026-01-15 11:24:28 info: Client connected: -aKaHWsM8-2o5Yv9AAAH -2026-01-15 11:27:53 info: Client connected: GGS384PZv96AXuM-AAAB -2026-01-15 11:27:55 info: Client connected: 3u1ewMFjV8Cul65-AAAD -2026-01-15 11:28:01 info: Create room listner started -2026-01-15 11:28:01 info: Create room started -2026-01-15 11:28:01 info: Creating worker started -2026-01-15 11:28:01 info: Creation of worker successfully executed -2026-01-15 11:28:01 info: Creation of webRtc server started -2026-01-15 11:28:01 info: WebRTC Server created successfully -2026-01-15 11:28:01 info: Creation of router started -2026-01-15 11:28:01 info: Router created for room: 156ada5c-2611-445f-a675-a0cab9b501ce -2026-01-15 11:28:01 info: Creation of room successfully executed -2026-01-15 11:28:01 info: Add broadcaster started -2026-01-15 11:28:01 info: Get room started -2026-01-15 11:28:01 info: Get room executed successfully -2026-01-15 11:28:01 info: Added broadcaster into memory room -2026-01-15 11:28:01 info: Broadcaster created successfully -2026-01-15 11:28:01 info: Create room listner exceuted successfully -2026-01-15 11:28:01 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 11:28:01 info: Get room started -2026-01-15 11:28:01 info: Get room executed successfully -2026-01-15 11:28:01 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 11:28:01 info: Create broadcaster lister started -2026-01-15 11:28:01 info: Get room started -2026-01-15 11:28:01 info: Get room executed successfully -2026-01-15 11:28:01 info: Creation of webRTC transport started -2026-01-15 11:28:01 info: WebRTC Transport created : 29427b92-d27f-4e5a-9d5c-36c2e0ce7eb0 -2026-01-15 11:28:01 info: Save broadcaster transport executed successfully -2026-01-15 11:28:01 info: Connect broadcaster transport lister started -2026-01-15 11:28:01 info: Get room started -2026-01-15 11:28:01 info: Get room executed successfully -2026-01-15 11:28:01 info: Connect broadcaster transport executed successfully -2026-01-15 11:28:01 info: Producer listener started -2026-01-15 11:28:01 info: Get room started -2026-01-15 11:28:01 info: Get room executed successfully -2026-01-15 11:28:01 info: Producer listener executed successfully: -2026-01-15 11:28:01 info: Producer listener started -2026-01-15 11:28:01 info: Get room started -2026-01-15 11:28:01 info: Get room executed successfully -2026-01-15 11:28:01 info: Producer listener executed successfully: -2026-01-15 11:28:07 info: Join as viewer listner started -2026-01-15 11:28:07 info: Join as viewer started -2026-01-15 11:28:07 info: Get room started -2026-01-15 11:28:07 info: Get room executed successfully -2026-01-15 11:28:07 info: Join as viewer completed successfully -2026-01-15 11:28:07 info: Get room started -2026-01-15 11:28:07 info: Get room executed successfully -2026-01-15 11:28:07 info: Join viewer listner successfully executed -2026-01-15 11:28:07 info: Create viewer transport listner started -2026-01-15 11:28:07 info: Get room started -2026-01-15 11:28:07 info: Get room executed successfully -2026-01-15 11:28:07 info: Create viewer transport started -2026-01-15 11:28:07 info: Get room started -2026-01-15 11:28:07 info: Get room executed successfully -2026-01-15 11:28:07 info: Creation of webRTC transport started -2026-01-15 11:28:07 info: WebRTC Transport created : 2faf30cb-0d30-4a3a-8711-fe516c448d36 -2026-01-15 11:28:07 info: Create viewer transport successfully executed -2026-01-15 11:28:07 info: Create viewer transport listner successfully executed -2026-01-15 11:28:07 info: Consume lister started -2026-01-15 11:28:07 info: Consume media started -2026-01-15 11:28:07 info: Get room started -2026-01-15 11:28:07 info: Get room executed successfully -2026-01-15 11:28:07 info: Get room started -2026-01-15 11:28:07 info: Get room executed successfully -2026-01-15 11:28:07 info: Get room started -2026-01-15 11:28:07 info: Get room executed successfully -2026-01-15 11:28:07 info: Viewer media consume successfully executed -2026-01-15 11:28:07 info: Consume lister executed successfully -2026-01-15 11:28:07 info: Connect consumer listner started -2026-01-15 11:28:07 info: Connect consumer started -2026-01-15 11:28:07 info: Get room started -2026-01-15 11:28:07 info: Get room executed successfully -2026-01-15 11:28:07 info: Connect consumer executed successfully -2026-01-15 11:28:07 info: Connect consumer listner executed successfully -2026-01-15 11:28:07 info: Resume consumer listner started -2026-01-15 11:28:07 info: Resume consumer started -2026-01-15 11:28:07 info: Resume consumer listner executed successfully -2026-01-15 11:28:07 info: Consumer resumed -2026-01-15 11:28:07 info: Consumer resumed -2026-01-15 11:29:38 info: Client connected: coww2sNf7TzlySOJAAAB -2026-01-15 11:29:38 info: Client connected: QboBKCK46AZgmY-oAAAD -2026-01-15 11:29:39 info: User disconnected coww2sNf7TzlySOJAAAB beacuse of transport close -2026-01-15 11:29:40 info: User disconnected QboBKCK46AZgmY-oAAAD beacuse of transport close -2026-01-15 11:32:53 info: Client connected: bu1otNaRD9lkA91rAAAB -2026-01-15 11:32:55 info: Client connected: N1qaDKIVgYyeTIoSAAAD -2026-01-15 11:33:18 info: Create room listner started -2026-01-15 11:33:18 info: Create room started -2026-01-15 11:33:18 info: Creating worker started -2026-01-15 11:33:18 info: Creation of worker successfully executed -2026-01-15 11:33:18 info: Creation of webRtc server started -2026-01-15 11:33:18 info: WebRTC Server created successfully -2026-01-15 11:33:18 info: Creation of router started -2026-01-15 11:33:18 info: Router created for room: d23a1a9c-5484-4207-87b5-56e0fa6358e9 -2026-01-15 11:33:18 info: Creation of room successfully executed -2026-01-15 11:33:18 info: Add broadcaster started -2026-01-15 11:33:18 info: Get room started -2026-01-15 11:33:18 info: Get room executed successfully -2026-01-15 11:33:18 info: Added broadcaster into memory room -2026-01-15 11:33:18 info: Broadcaster created successfully -2026-01-15 11:33:18 info: Create room listner exceuted successfully -2026-01-15 11:33:18 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 11:33:18 info: Get room started -2026-01-15 11:33:18 info: Get room executed successfully -2026-01-15 11:33:18 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 11:34:10 info: User disconnected bu1otNaRD9lkA91rAAAB beacuse of transport close -2026-01-15 11:34:12 info: User disconnected N1qaDKIVgYyeTIoSAAAD beacuse of transport close -2026-01-15 11:36:11 info: Client connected: bl6rcfl4lFf3ZnQdAAAB -2026-01-15 11:36:14 info: Client connected: P3Jt1avu--1yd1X3AAAD -2026-01-15 11:36:17 info: Create room listner started -2026-01-15 11:36:17 info: Create room started -2026-01-15 11:36:17 info: Creating worker started -2026-01-15 11:36:17 info: Creation of worker successfully executed -2026-01-15 11:36:17 info: Creation of webRtc server started -2026-01-15 11:36:17 info: WebRTC Server created successfully -2026-01-15 11:36:17 info: Creation of router started -2026-01-15 11:36:17 info: Router created for room: 0c444554-454c-4ff5-8e79-c265ee6c0136 -2026-01-15 11:36:17 info: Creation of room successfully executed -2026-01-15 11:36:17 info: Add broadcaster started -2026-01-15 11:36:17 info: Get room started -2026-01-15 11:36:17 info: Get room executed successfully -2026-01-15 11:36:17 info: Added broadcaster into memory room -2026-01-15 11:36:17 info: Broadcaster created successfully -2026-01-15 11:36:17 info: Create room listner exceuted successfully -2026-01-15 11:36:17 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 11:36:17 info: Get room started -2026-01-15 11:36:17 info: Get room executed successfully -2026-01-15 11:36:17 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 11:36:17 info: Create broadcaster lister started -2026-01-15 11:36:17 info: Get room started -2026-01-15 11:36:17 info: Get room executed successfully -2026-01-15 11:36:17 info: Creation of webRTC transport started -2026-01-15 11:36:17 info: WebRTC Transport created : cb10322d-41bf-4b7c-8e49-84b11028fd20 -2026-01-15 11:36:17 info: Save broadcaster transport executed successfully -2026-01-15 11:36:18 info: Connect broadcaster transport lister started -2026-01-15 11:36:18 info: Get room started -2026-01-15 11:36:18 info: Get room executed successfully -2026-01-15 11:36:18 info: Connect broadcaster transport executed successfully -2026-01-15 11:36:18 info: Producer listener started -2026-01-15 11:36:18 info: Get room started -2026-01-15 11:36:18 info: Get room executed successfully -2026-01-15 11:36:18 info: Producer listener executed successfully: -2026-01-15 11:36:18 info: Producer listener started -2026-01-15 11:36:18 info: Get room started -2026-01-15 11:36:18 info: Get room executed successfully -2026-01-15 11:36:18 info: Producer listener executed successfully: -2026-01-15 11:36:24 info: Join as viewer listner started -2026-01-15 11:36:24 info: Join as viewer started -2026-01-15 11:36:24 info: Get room started -2026-01-15 11:36:24 info: Get room executed successfully -2026-01-15 11:36:24 info: Join as viewer completed successfully -2026-01-15 11:36:24 info: Get room started -2026-01-15 11:36:24 info: Get room executed successfully -2026-01-15 11:36:24 info: Join viewer listner successfully executed -2026-01-15 11:36:24 info: Create viewer transport listner started -2026-01-15 11:36:24 info: Get room started -2026-01-15 11:36:24 info: Get room executed successfully -2026-01-15 11:36:24 info: Create viewer transport started -2026-01-15 11:36:24 info: Get room started -2026-01-15 11:36:24 info: Get room executed successfully -2026-01-15 11:36:24 info: Creation of webRTC transport started -2026-01-15 11:36:24 info: WebRTC Transport created : f6ef1098-bdcc-4e9a-ab7d-0ce883cc5833 -2026-01-15 11:36:24 info: Create viewer transport successfully executed -2026-01-15 11:36:24 info: Create viewer transport listner successfully executed -2026-01-15 11:36:24 info: Consume lister started -2026-01-15 11:36:24 info: Consume media started -2026-01-15 11:36:24 info: Get room started -2026-01-15 11:36:24 info: Get room executed successfully -2026-01-15 11:36:24 info: Get room started -2026-01-15 11:36:24 info: Get room executed successfully -2026-01-15 11:36:24 info: Get room started -2026-01-15 11:36:24 info: Get room executed successfully -2026-01-15 11:36:24 info: Viewer media consume successfully executed -2026-01-15 11:36:24 info: Consume lister executed successfully -2026-01-15 11:36:24 info: Connect consumer listner started -2026-01-15 11:36:24 info: Connect consumer started -2026-01-15 11:36:24 info: Get room started -2026-01-15 11:36:24 info: Get room executed successfully -2026-01-15 11:36:24 info: Connect consumer executed successfully -2026-01-15 11:36:24 info: Connect consumer listner executed successfully -2026-01-15 11:36:24 info: Resume consumer listner started -2026-01-15 11:36:24 info: Resume consumer started -2026-01-15 11:36:24 info: Resume consumer listner executed successfully -2026-01-15 11:36:24 info: Consumer resumed -2026-01-15 11:36:24 info: Consumer resumed -2026-01-15 11:38:17 info: User disconnected P3Jt1avu--1yd1X3AAAD beacuse of transport close -2026-01-15 11:38:18 info: User disconnected bl6rcfl4lFf3ZnQdAAAB beacuse of transport close -2026-01-15 14:43:15 info: Client connected: WUJ9LlNRzCRynYBKAAAB -2026-01-15 14:43:18 info: Client connected: TmM5P6X-1HxzYKSkAAAD -2026-01-15 14:43:27 info: Create room listner started -2026-01-15 14:43:27 info: Create room started -2026-01-15 14:43:27 info: Creating worker started -2026-01-15 14:43:27 info: Creation of worker successfully executed -2026-01-15 14:43:27 info: Creation of webRtc server started -2026-01-15 14:43:27 info: WebRTC Server created successfully -2026-01-15 14:43:27 info: Creation of router started -2026-01-15 14:43:27 info: Router created for room: 2fe6276e-a29c-4d1d-b99e-1e4b41eb2e72 -2026-01-15 14:43:27 info: Creation of room successfully executed -2026-01-15 14:43:27 info: Add broadcaster started -2026-01-15 14:43:27 info: Get room started -2026-01-15 14:43:27 info: Get room executed successfully -2026-01-15 14:43:27 info: Added broadcaster into memory room -2026-01-15 14:43:27 info: Broadcaster created successfully -2026-01-15 14:43:27 info: Create room listner exceuted successfully -2026-01-15 14:43:27 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 14:43:27 info: Get room started -2026-01-15 14:43:27 info: Get room executed successfully -2026-01-15 14:43:27 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 14:43:27 info: Create broadcaster lister started -2026-01-15 14:43:27 info: Get room started -2026-01-15 14:43:27 info: Get room executed successfully -2026-01-15 14:43:27 info: Creation of webRTC transport started -2026-01-15 14:43:27 info: WebRTC Transport created : 025e4f09-445b-473b-9909-ddf81fa3c915 -2026-01-15 14:43:27 info: Save broadcaster transport executed successfully -2026-01-15 14:43:28 info: Connect broadcaster transport lister started -2026-01-15 14:43:28 info: Get room started -2026-01-15 14:43:28 info: Get room executed successfully -2026-01-15 14:43:28 info: Connect broadcaster transport executed successfully -2026-01-15 14:43:28 info: Producer listener started -2026-01-15 14:43:28 info: Get room started -2026-01-15 14:43:28 info: Get room executed successfully -2026-01-15 14:43:28 info: Producer listener executed successfully: -2026-01-15 14:43:28 info: Producer listener started -2026-01-15 14:43:28 info: Get room started -2026-01-15 14:43:28 info: Get room executed successfully -2026-01-15 14:43:28 info: Producer listener executed successfully: -2026-01-15 14:43:32 info: Join as viewer listner started -2026-01-15 14:43:32 info: Join as viewer started -2026-01-15 14:43:32 info: Get room started -2026-01-15 14:43:32 info: Get room executed successfully -2026-01-15 14:43:32 info: Join as viewer completed successfully -2026-01-15 14:43:32 info: Get room started -2026-01-15 14:43:32 info: Get room executed successfully -2026-01-15 14:43:32 info: Join viewer listner successfully executed -2026-01-15 14:43:32 info: Create viewer transport listner started -2026-01-15 14:43:32 info: Get room started -2026-01-15 14:43:32 info: Get room executed successfully -2026-01-15 14:43:32 info: Create viewer transport started -2026-01-15 14:43:32 info: Get room started -2026-01-15 14:43:32 info: Get room executed successfully -2026-01-15 14:43:32 info: Creation of webRTC transport started -2026-01-15 14:43:32 info: WebRTC Transport created : c5e1d7b3-040f-4304-a142-1cf845c717a9 -2026-01-15 14:43:32 info: Create viewer transport successfully executed -2026-01-15 14:43:32 info: Create viewer transport listner successfully executed -2026-01-15 14:43:32 info: Consume lister started -2026-01-15 14:43:32 info: Consume media started -2026-01-15 14:43:32 info: Get room started -2026-01-15 14:43:32 info: Get room executed successfully -2026-01-15 14:43:32 info: Get room started -2026-01-15 14:43:32 info: Get room executed successfully -2026-01-15 14:43:32 info: Get room started -2026-01-15 14:43:32 info: Get room executed successfully -2026-01-15 14:43:32 info: Viewer media consume successfully executed -2026-01-15 14:43:32 info: Consume lister executed successfully -2026-01-15 14:43:32 info: Connect consumer listner started -2026-01-15 14:43:32 info: Connect consumer started -2026-01-15 14:43:32 info: Get room started -2026-01-15 14:43:32 info: Get room executed successfully -2026-01-15 14:43:32 info: Connect consumer executed successfully -2026-01-15 14:43:32 info: Connect consumer listner executed successfully -2026-01-15 14:43:32 info: Resume consumer listner started -2026-01-15 14:43:32 info: Resume consumer started -2026-01-15 14:43:32 info: Resume consumer listner executed successfully -2026-01-15 14:43:32 info: Consumer resumed -2026-01-15 14:43:32 info: Consumer resumed -2026-01-15 14:47:11 info: User disconnected WUJ9LlNRzCRynYBKAAAB beacuse of transport close -2026-01-15 14:47:11 info: Client connected: aSlzUQHUjq0Zoy-BAAAF -2026-01-15 14:47:11 info: User disconnected aSlzUQHUjq0Zoy-BAAAF beacuse of transport close -2026-01-15 14:47:11 info: User disconnected TmM5P6X-1HxzYKSkAAAD beacuse of transport close -2026-01-15 14:47:12 info: Client connected: il4q5C0dHXQpdUppAAAH -2026-01-15 14:47:12 info: Client connected: 7PVgE_1KzpbATLhzAAAJ -2026-01-15 14:47:13 info: User disconnected 7PVgE_1KzpbATLhzAAAJ beacuse of transport close -2026-01-15 14:47:15 info: User disconnected il4q5C0dHXQpdUppAAAH beacuse of transport close -2026-01-15 14:58:28 info: Client connected: n6Koc02snBiFnCmbAAAB -2026-01-15 14:58:30 info: Client connected: 15hYThMExNZ1tuFgAAAD -2026-01-15 14:58:35 info: Create room listner started -2026-01-15 14:58:35 info: Create room started -2026-01-15 14:58:35 info: Creating worker started -2026-01-15 14:58:35 info: Creation of worker successfully executed -2026-01-15 14:58:35 info: Creation of router started -2026-01-15 14:58:35 info: Router created for room: badd9ec9-1bc1-4719-b307-df159dd9cddf -2026-01-15 14:58:35 info: Creation of room successfully executed -2026-01-15 14:58:35 info: Add broadcaster started -2026-01-15 14:58:35 info: Get room started -2026-01-15 14:58:35 info: Get room executed successfully -2026-01-15 14:58:35 info: Added broadcaster into memory room -2026-01-15 14:58:35 info: Broadcaster created successfully -2026-01-15 14:58:35 info: Create room listner exceuted successfully -2026-01-15 14:58:35 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 14:58:35 info: Get room started -2026-01-15 14:58:35 info: Get room executed successfully -2026-01-15 14:58:35 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 14:58:35 info: Create broadcaster lister started -2026-01-15 14:58:35 info: Get room started -2026-01-15 14:58:35 info: Get room executed successfully -2026-01-15 14:58:35 info: Creation of webRTC transport started -2026-01-15 14:58:35 info: WebRTC Transport created : 3f398154-a610-47a5-8b97-d1fed941f3d7 -2026-01-15 14:58:35 info: Save broadcaster transport executed successfully -2026-01-15 14:58:36 info: Connect broadcaster transport lister started -2026-01-15 14:58:36 info: Get room started -2026-01-15 14:58:36 info: Get room executed successfully -2026-01-15 14:58:36 info: Connect broadcaster transport executed successfully -2026-01-15 14:58:36 info: Producer listener started -2026-01-15 14:58:36 info: Get room started -2026-01-15 14:58:36 info: Get room executed successfully -2026-01-15 14:58:36 info: Producer listener executed successfully: -2026-01-15 14:58:36 info: Producer listener started -2026-01-15 14:58:36 info: Get room started -2026-01-15 14:58:36 info: Get room executed successfully -2026-01-15 14:58:36 info: Producer listener executed successfully: -2026-01-15 14:58:41 info: Join as viewer listner started -2026-01-15 14:58:41 info: Join as viewer started -2026-01-15 14:58:41 info: Get room started -2026-01-15 14:58:41 info: Get room executed successfully -2026-01-15 14:58:41 info: Join as viewer completed successfully -2026-01-15 14:58:41 info: Get room started -2026-01-15 14:58:41 info: Get room executed successfully -2026-01-15 14:58:41 info: Join viewer listner successfully executed -2026-01-15 14:58:41 info: Create viewer transport listner started -2026-01-15 14:58:41 info: Get room started -2026-01-15 14:58:41 info: Get room executed successfully -2026-01-15 14:58:41 info: Create viewer transport started -2026-01-15 14:58:41 info: Get room started -2026-01-15 14:58:41 info: Get room executed successfully -2026-01-15 14:58:41 info: Creation of webRTC transport started -2026-01-15 14:58:41 error: Error: uv_udp_bind() failed [protocol:udp, ip:'127.0.0.1', port:3478]: address already in use [method:router.createWebRtcTransport] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-15 14:58:41 info: Create viewer transport successfully executed -2026-01-15 14:58:41 info: Create viewer transport listner successfully executed -2026-01-15 14:58:52 info: Join as viewer listner started -2026-01-15 14:58:52 info: Join as viewer started -2026-01-15 14:58:52 info: Get room started -2026-01-15 14:58:52 info: Get room executed successfully -2026-01-15 14:58:52 info: Join as viewer completed successfully -2026-01-15 14:58:52 info: Get room started -2026-01-15 14:58:52 info: Get room executed successfully -2026-01-15 14:58:52 info: Join viewer listner successfully executed -2026-01-15 14:58:52 info: Create viewer transport listner started -2026-01-15 14:58:52 info: Get room started -2026-01-15 14:58:52 info: Get room executed successfully -2026-01-15 14:58:52 info: Create viewer transport started -2026-01-15 14:58:52 info: Get room started -2026-01-15 14:58:52 info: Get room executed successfully -2026-01-15 14:58:52 info: Creation of webRTC transport started -2026-01-15 14:58:52 error: Error: uv_udp_bind() failed [protocol:udp, ip:'127.0.0.1', port:3478]: address already in use [method:router.createWebRtcTransport] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-15 14:58:52 info: Create viewer transport successfully executed -2026-01-15 14:58:52 info: Create viewer transport listner successfully executed -2026-01-15 18:41:55 info: Client connected: nyCPhNjUpt-PkfGLAAAB -2026-01-15 18:41:56 info: Create room listner started -2026-01-15 18:41:56 info: Create room started -2026-01-15 18:41:56 info: Creating worker started -2026-01-15 18:41:56 info: Creation of worker successfully executed -2026-01-15 18:41:56 info: Creation of router started -2026-01-15 18:41:56 info: Router created for room: 431e2771-a978-4b07-9dc1-5a9be2a4f873 -2026-01-15 18:41:56 info: Creation of room successfully executed -2026-01-15 18:41:56 info: Add broadcaster started -2026-01-15 18:41:56 info: Get room started -2026-01-15 18:41:56 info: Get room executed successfully -2026-01-15 18:41:56 info: Added broadcaster into memory room -2026-01-15 18:41:56 info: Broadcaster created successfully -2026-01-15 18:41:56 info: Create room listner exceuted successfully -2026-01-15 18:41:56 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 18:41:56 info: Get room started -2026-01-15 18:41:56 info: Get room executed successfully -2026-01-15 18:41:56 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 18:41:56 info: Create broadcaster lister started -2026-01-15 18:41:56 info: Get room started -2026-01-15 18:41:56 info: Get room executed successfully -2026-01-15 18:41:56 info: Creation of webRTC transport started -2026-01-15 18:41:57 info: WebRTC Transport created : b428fcf1-4bd4-4a9c-905a-aea56c1208f0 -2026-01-15 18:41:57 info: Connect broadcaster transport lister started -2026-01-15 18:41:57 info: Get room started -2026-01-15 18:41:57 info: Get room executed successfully -2026-01-15 18:41:57 error: Error finding transport with b428fcf1-4bd4-4a9c-905a-aea56c1208f0 -2026-01-15 18:42:00 info: Client connected: EUEK8ERPlin2hAb-AAAD -2026-01-15 18:42:08 info: Join as viewer listner started -2026-01-15 18:42:08 info: Join as viewer started -2026-01-15 18:42:08 info: Get room started -2026-01-15 18:42:08 info: Get room executed successfully -2026-01-15 18:42:08 info: Join as viewer completed successfully -2026-01-15 18:42:08 info: Get room started -2026-01-15 18:42:08 info: Get room executed successfully -2026-01-15 18:42:08 info: Join viewer listner successfully executed -2026-01-15 18:42:08 info: Create viewer transport listner started -2026-01-15 18:42:08 info: Get room started -2026-01-15 18:42:08 info: Get room executed successfully -2026-01-15 18:42:08 info: Create viewer transport started -2026-01-15 18:42:08 info: Get room started -2026-01-15 18:42:08 info: Get room executed successfully -2026-01-15 18:42:08 info: Creation of webRTC transport started -2026-01-15 18:42:08 info: WebRTC Transport created : 3a292c94-510a-4c9f-86cc-cc1fe24ef24d -2026-01-15 18:42:08 info: Create viewer transport successfully executed -2026-01-15 18:42:08 info: Create viewer transport listner successfully executed -2026-01-15 18:42:08 info: Consume lister started -2026-01-15 18:42:08 info: Consume media started -2026-01-15 18:42:08 info: Get room started -2026-01-15 18:42:08 info: Get room executed successfully -2026-01-15 18:42:08 info: Viewer media consume successfully executed -2026-01-15 18:42:08 info: Consume lister executed successfully -2026-01-15 18:43:53 info: User disconnected EUEK8ERPlin2hAb-AAAD beacuse of transport close -2026-01-15 18:43:53 info: Client connected: P45nhRDitg8MpYJJAAAF -2026-01-15 18:44:06 info: Join as viewer listner started -2026-01-15 18:44:06 info: Join as viewer started -2026-01-15 18:44:06 info: Get room started -2026-01-15 18:44:06 info: Get room executed successfully -2026-01-15 18:44:06 info: Join as viewer completed successfully -2026-01-15 18:44:06 info: Get room started -2026-01-15 18:44:06 info: Get room executed successfully -2026-01-15 18:44:06 info: Join viewer listner successfully executed -2026-01-15 18:44:06 info: Create viewer transport listner started -2026-01-15 18:44:06 info: Get room started -2026-01-15 18:44:06 info: Get room executed successfully -2026-01-15 18:44:06 info: Create viewer transport started -2026-01-15 18:44:06 info: Get room started -2026-01-15 18:44:06 info: Get room executed successfully -2026-01-15 18:44:06 info: Creation of webRTC transport started -2026-01-15 18:44:06 info: WebRTC Transport created : 20b85e9a-5c29-43a9-81a5-c3b4733961f2 -2026-01-15 18:44:06 info: Create viewer transport successfully executed -2026-01-15 18:44:06 info: Create viewer transport listner successfully executed -2026-01-15 18:44:06 info: Consume lister started -2026-01-15 18:44:06 info: Consume media started -2026-01-15 18:44:06 info: Get room started -2026-01-15 18:44:06 info: Get room executed successfully -2026-01-15 18:44:06 info: Viewer media consume successfully executed -2026-01-15 18:44:06 info: Consume lister executed successfully -2026-01-15 18:44:47 info: User disconnected nyCPhNjUpt-PkfGLAAAB beacuse of transport close -2026-01-15 18:44:47 info: Client connected: ggTxbhzCI0njI-88AAAH -2026-01-15 18:44:48 info: User disconnected P45nhRDitg8MpYJJAAAF beacuse of transport close -2026-01-15 18:44:48 info: Client connected: g-tqU83QUd7xf5j0AAAJ -2026-01-15 18:46:04 info: Client connected: 9Og8pRwwO48csGdqAAAB -2026-01-15 18:46:05 info: Client connected: ROU_Et29ifsXpWtrAAAD -2026-01-15 18:46:20 info: Client connected: uWCJ7kDhv65PLs3CAAAB -2026-01-15 18:46:23 info: Client connected: 9l9gwDq5pDRNGMy6AAAD -2026-01-15 18:46:35 info: Client connected: Fol49Redy1It14jMAAAB -2026-01-15 18:46:39 info: Client connected: 80xbcast4oP3T7Q4AAAD -2026-01-15 18:47:16 info: Client connected: 25hAJ-CjKBmGLNdMAAAB -2026-01-15 18:47:16 info: Client connected: FVREr8xOdFXjiAyHAAAD -2026-01-15 18:47:17 info: User disconnected FVREr8xOdFXjiAyHAAAD beacuse of transport close -2026-01-15 18:47:17 info: Client connected: MTeq1kNVa8BjsTI6AAAF -2026-01-15 18:47:19 info: Create room listner started -2026-01-15 18:47:19 info: Create room started -2026-01-15 18:47:19 info: Creating worker started -2026-01-15 18:47:19 info: Creation of worker successfully executed -2026-01-15 18:47:19 info: Creation of router started -2026-01-15 18:47:19 info: Router created for room: ade12f17-2cde-43d3-aace-0b39d5754a16 -2026-01-15 18:47:19 info: Creation of room successfully executed -2026-01-15 18:47:19 info: Add broadcaster started -2026-01-15 18:47:19 info: Get room started -2026-01-15 18:47:19 info: Get room executed successfully -2026-01-15 18:47:19 info: Added broadcaster into memory room -2026-01-15 18:47:19 info: Broadcaster created successfully -2026-01-15 18:47:19 info: Create room listner exceuted successfully -2026-01-15 18:47:19 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 18:47:19 info: Get room started -2026-01-15 18:47:19 info: Get room executed successfully -2026-01-15 18:47:19 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 18:47:19 info: Create broadcaster lister started -2026-01-15 18:47:19 info: Get room started -2026-01-15 18:47:19 info: Get room executed successfully -2026-01-15 18:47:19 info: Creation of webRTC transport started -2026-01-15 18:47:19 info: WebRTC Transport created : 212c79f4-973d-4314-a20f-23cd669dca68 -2026-01-15 18:47:20 info: Connect broadcaster transport lister started -2026-01-15 18:47:20 info: Get room started -2026-01-15 18:47:20 info: Get room executed successfully -2026-01-15 18:47:20 error: Error finding transport with 212c79f4-973d-4314-a20f-23cd669dca68 -2026-01-15 18:48:16 info: Join as viewer listner started -2026-01-15 18:48:16 info: Join as viewer started -2026-01-15 18:48:16 info: Get room started -2026-01-15 18:48:16 info: Get room executed successfully -2026-01-15 18:48:16 info: Join as viewer completed successfully -2026-01-15 18:48:16 info: Get room started -2026-01-15 18:48:16 info: Get room executed successfully -2026-01-15 18:48:16 info: Join viewer listner successfully executed -2026-01-15 18:48:16 info: Create viewer transport listner started -2026-01-15 18:48:16 info: Get room started -2026-01-15 18:48:16 info: Get room executed successfully -2026-01-15 18:48:16 info: Create viewer transport started -2026-01-15 18:48:16 info: Get room started -2026-01-15 18:48:16 info: Get room executed successfully -2026-01-15 18:48:16 info: Creation of webRTC transport started -2026-01-15 18:48:16 info: WebRTC Transport created : 441b697f-5387-4ec7-a9d3-4b099050ff03 -2026-01-15 18:48:16 info: Create viewer transport successfully executed -2026-01-15 18:48:16 info: Create viewer transport listner successfully executed -2026-01-15 18:48:16 info: Consume lister started -2026-01-15 18:48:16 info: Consume media started -2026-01-15 18:48:16 info: Get room started -2026-01-15 18:48:16 info: Get room executed successfully -2026-01-15 18:48:16 info: Viewer media consume successfully executed -2026-01-15 18:48:16 info: Get room started -2026-01-15 18:48:16 info: Get room executed successfully -2026-01-15 18:48:16 info: Consume lister executed successfully -2026-01-15 18:48:47 info: Client connected: 3cB_cYx3-tVFAZi3AAAB -2026-01-15 18:48:48 info: Client connected: G4bJAicveNIWP-xwAAAD -2026-01-15 18:48:48 info: User disconnected G4bJAicveNIWP-xwAAAD beacuse of transport close -2026-01-15 18:48:48 info: Client connected: YUwvGuJFuBtJRwMqAAAF -2026-01-15 18:48:49 info: User disconnected 3cB_cYx3-tVFAZi3AAAB beacuse of transport close -2026-01-15 18:48:49 info: Client connected: 0_w3NVRfzx2TcJUYAAAH -2026-01-15 18:48:51 info: Create room listner started -2026-01-15 18:48:51 info: Create room started -2026-01-15 18:48:51 info: Creating worker started -2026-01-15 18:48:51 info: Creation of worker successfully executed -2026-01-15 18:48:51 info: Creation of router started -2026-01-15 18:48:51 info: Router created for room: 803efe7c-6d02-470b-a8b0-fbfabbbe1a82 -2026-01-15 18:48:51 info: Creation of room successfully executed -2026-01-15 18:48:51 info: Add broadcaster started -2026-01-15 18:48:51 info: Get room started -2026-01-15 18:48:51 info: Get room executed successfully -2026-01-15 18:48:51 info: Added broadcaster into memory room -2026-01-15 18:48:51 info: Broadcaster created successfully -2026-01-15 18:48:51 info: Create room listner exceuted successfully -2026-01-15 18:48:51 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 18:48:51 info: Get room started -2026-01-15 18:48:51 info: Get room executed successfully -2026-01-15 18:48:51 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 18:48:51 info: Create broadcaster lister started -2026-01-15 18:48:51 info: Get room started -2026-01-15 18:48:51 info: Get room executed successfully -2026-01-15 18:48:51 info: Creation of webRTC transport started -2026-01-15 18:48:51 info: WebRTC Transport created : 77e5ea92-5d07-4504-8989-83f234d30cf8 -2026-01-15 18:48:56 info: Join as viewer listner started -2026-01-15 18:48:56 info: Join as viewer started -2026-01-15 18:48:56 info: Get room started -2026-01-15 18:48:56 info: Get room executed successfully -2026-01-15 18:48:56 info: Join as viewer completed successfully -2026-01-15 18:48:56 info: Get room started -2026-01-15 18:48:56 info: Get room executed successfully -2026-01-15 18:48:56 info: Join viewer listner successfully executed -2026-01-15 18:48:56 info: Create viewer transport listner started -2026-01-15 18:48:56 info: Get room started -2026-01-15 18:48:56 info: Get room executed successfully -2026-01-15 18:48:56 info: Create viewer transport started -2026-01-15 18:48:56 info: Get room started -2026-01-15 18:48:56 info: Get room executed successfully -2026-01-15 18:48:56 info: Creation of webRTC transport started -2026-01-15 18:48:56 info: WebRTC Transport created : 8d0aa737-fa48-4a20-8c5f-cb1ef3e14116 -2026-01-15 18:48:56 info: Create viewer transport successfully executed -2026-01-15 18:48:56 info: Create viewer transport listner successfully executed -2026-01-15 18:48:56 info: Consume lister started -2026-01-15 18:48:56 info: Consume media started -2026-01-15 18:48:56 info: Get room started -2026-01-15 18:48:56 info: Get room executed successfully -2026-01-15 18:48:56 info: Viewer media consume successfully executed -2026-01-15 18:48:56 info: Get room started -2026-01-15 18:48:56 info: Get room executed successfully -2026-01-15 18:48:56 info: Consume lister executed successfully -2026-01-15 18:49:25 info: Client connected: NjSyDNAo8UbF8QyFAAAB -2026-01-15 18:49:27 info: Client connected: VC7ZS1Wog2CzcdzsAAAD -2026-01-15 18:49:28 info: User disconnected NjSyDNAo8UbF8QyFAAAB beacuse of transport close -2026-01-15 18:49:28 info: Client connected: NAXhsvqkuvvgYBfLAAAF -2026-01-15 18:49:29 info: User disconnected NAXhsvqkuvvgYBfLAAAF beacuse of transport close -2026-01-15 18:49:29 info: Client connected: vETzbQje_WT6Ig1AAAAH -2026-01-15 18:50:01 info: Client connected: Y-lPOVkWl9rzB0jQAAAB -2026-01-15 18:50:03 info: Client connected: dl10Zseo-2F31vrRAAAD -2026-01-15 18:50:06 info: User disconnected dl10Zseo-2F31vrRAAAD beacuse of transport close -2026-01-15 18:50:06 info: User disconnected Y-lPOVkWl9rzB0jQAAAB beacuse of transport close -2026-01-15 18:50:07 info: Client connected: VAHqqwlM1s5A4EslAAAF -2026-01-15 18:50:07 info: Client connected: mepMqzLFGYe8rwRXAAAH -2026-01-15 18:50:07 info: User disconnected VAHqqwlM1s5A4EslAAAF beacuse of transport close -2026-01-15 18:50:07 info: Client connected: 9VD_U_MUQsFUN0rAAAAJ -2026-01-15 18:50:09 info: Create room listner started -2026-01-15 18:50:09 info: Create room started -2026-01-15 18:50:09 info: Creating worker started -2026-01-15 18:50:09 info: Creation of worker successfully executed -2026-01-15 18:50:09 info: Creation of router started -2026-01-15 18:50:09 info: Router created for room: 2895fc0f-fa15-4c22-ab18-58552293d0ac -2026-01-15 18:50:09 info: Creation of room successfully executed -2026-01-15 18:50:09 info: Add broadcaster started -2026-01-15 18:50:09 info: Get room started -2026-01-15 18:50:09 info: Get room executed successfully -2026-01-15 18:50:09 info: Added broadcaster into memory room -2026-01-15 18:50:09 info: Broadcaster created successfully -2026-01-15 18:50:09 info: Create room listner exceuted successfully -2026-01-15 18:50:09 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 18:50:09 info: Get room started -2026-01-15 18:50:09 info: Get room executed successfully -2026-01-15 18:50:09 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 18:50:09 info: Create broadcaster lister started -2026-01-15 18:50:09 info: Get room started -2026-01-15 18:50:09 info: Get room executed successfully -2026-01-15 18:50:09 info: Creation of webRTC transport started -2026-01-15 18:50:09 info: WebRTC Transport created : 7005665e-e1bf-4cc6-8e6f-8ff0b823f6f0 -2026-01-15 18:50:15 info: User disconnected 9VD_U_MUQsFUN0rAAAAJ beacuse of transport close -2026-01-15 18:50:15 info: Client connected: L_veQN4pvdMEnY0qAAAL -2026-01-15 18:50:17 info: Create room listner started -2026-01-15 18:50:17 info: Create room started -2026-01-15 18:50:17 info: Creating worker started -2026-01-15 18:50:17 info: Creation of worker successfully executed -2026-01-15 18:50:17 info: Creation of router started -2026-01-15 18:50:17 info: Router created for room: 54d5d894-b298-4f3f-8b7c-004c71a83fde -2026-01-15 18:50:17 info: Creation of room successfully executed -2026-01-15 18:50:17 info: Add broadcaster started -2026-01-15 18:50:17 info: Get room started -2026-01-15 18:50:17 info: Get room executed successfully -2026-01-15 18:50:17 info: Added broadcaster into memory room -2026-01-15 18:50:17 info: Broadcaster created successfully -2026-01-15 18:50:17 info: Create room listner exceuted successfully -2026-01-15 18:50:17 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 18:50:17 info: Get room started -2026-01-15 18:50:17 info: Get room executed successfully -2026-01-15 18:50:17 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 18:50:17 info: Create broadcaster lister started -2026-01-15 18:50:17 info: Get room started -2026-01-15 18:50:17 info: Get room executed successfully -2026-01-15 18:50:17 info: Creation of webRTC transport started -2026-01-15 18:50:17 info: WebRTC Transport created : ddab3f54-3547-470a-82a6-11287deb4c75 -2026-01-15 18:50:22 info: User disconnected L_veQN4pvdMEnY0qAAAL beacuse of transport close -2026-01-15 18:50:22 info: Client connected: sXxZ7OZ10em3Av9mAAAN -2026-01-15 18:50:23 info: Create room listner started -2026-01-15 18:50:23 info: Create room started -2026-01-15 18:50:23 info: Creating worker started -2026-01-15 18:50:23 info: Creation of worker successfully executed -2026-01-15 18:50:23 info: Creation of router started -2026-01-15 18:50:23 info: Router created for room: 9f979846-465f-48a4-a38b-e1fc992f2173 -2026-01-15 18:50:23 info: Creation of room successfully executed -2026-01-15 18:50:23 info: Add broadcaster started -2026-01-15 18:50:23 info: Get room started -2026-01-15 18:50:23 info: Get room executed successfully -2026-01-15 18:50:23 info: Added broadcaster into memory room -2026-01-15 18:50:23 info: Broadcaster created successfully -2026-01-15 18:50:23 info: Create room listner exceuted successfully -2026-01-15 18:50:23 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 18:50:23 info: Get room started -2026-01-15 18:50:23 info: Get room executed successfully -2026-01-15 18:50:23 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 18:50:23 info: Create broadcaster lister started -2026-01-15 18:50:23 info: Get room started -2026-01-15 18:50:23 info: Get room executed successfully -2026-01-15 18:50:23 info: Creation of webRTC transport started -2026-01-15 18:50:23 info: WebRTC Transport created : a4484574-c84e-4b1a-9822-b946278cd4f0 -2026-01-15 18:50:26 info: Connect broadcaster transport lister started -2026-01-15 18:50:26 info: Get room started -2026-01-15 18:50:26 info: Get room executed successfully -2026-01-15 18:50:26 error: Error finding transport with a4484574-c84e-4b1a-9822-b946278cd4f0 -2026-01-15 18:50:27 info: User disconnected sXxZ7OZ10em3Av9mAAAN beacuse of transport close -2026-01-15 18:50:27 info: Client connected: wnvlLQFJCKpCAY_-AAAP -2026-01-15 18:50:28 info: Create room listner started -2026-01-15 18:50:28 info: Create room started -2026-01-15 18:50:28 info: Creating worker started -2026-01-15 18:50:28 info: Creation of worker successfully executed -2026-01-15 18:50:28 info: Creation of router started -2026-01-15 18:50:28 info: Router created for room: 4c3dfd78-f7d7-4d7b-85df-6599b434fff0 -2026-01-15 18:50:28 info: Creation of room successfully executed -2026-01-15 18:50:28 info: Add broadcaster started -2026-01-15 18:50:28 info: Get room started -2026-01-15 18:50:28 info: Get room executed successfully -2026-01-15 18:50:28 info: Added broadcaster into memory room -2026-01-15 18:50:28 info: Broadcaster created successfully -2026-01-15 18:50:28 info: Create room listner exceuted successfully -2026-01-15 18:50:28 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 18:50:28 info: Get room started -2026-01-15 18:50:28 info: Get room executed successfully -2026-01-15 18:50:28 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 18:50:28 info: Create broadcaster lister started -2026-01-15 18:50:28 info: Get room started -2026-01-15 18:50:28 info: Get room executed successfully -2026-01-15 18:50:28 info: Creation of webRTC transport started -2026-01-15 18:50:28 info: WebRTC Transport created : 6dbd58fe-3923-4bec-a982-e2ce84c73213 -2026-01-15 18:50:29 info: Connect broadcaster transport lister started -2026-01-15 18:50:29 info: Get room started -2026-01-15 18:50:29 info: Get room executed successfully -2026-01-15 18:50:29 error: Error finding transport with 6dbd58fe-3923-4bec-a982-e2ce84c73213 -2026-01-15 18:53:58 info: User disconnected wnvlLQFJCKpCAY_-AAAP beacuse of transport close -2026-01-15 18:53:58 info: Client connected: SfPIV_nYJlcCMSDCAAAR -2026-01-15 18:53:58 info: User disconnected mepMqzLFGYe8rwRXAAAH beacuse of transport close -2026-01-15 18:53:59 info: Client connected: WcumMDXDhH2U5J02AAAT -2026-01-15 18:55:01 info: Client connected: G1KuhSKm8ouE4NEPAAAB -2026-01-15 18:55:06 info: Client connected: WmnfHAiqT-Md5RzoAAAD -2026-01-15 18:58:34 info: Client connected: MRoMwW7El15IuSBgAAAC -2026-01-15 18:58:34 info: Client connected: hb3TpAz8JQhchO9aAAAD -2026-01-15 18:58:37 info: User disconnected MRoMwW7El15IuSBgAAAC beacuse of transport close -2026-01-15 18:58:38 info: User disconnected hb3TpAz8JQhchO9aAAAD beacuse of transport close -2026-01-15 18:58:38 info: Client connected: _C8JNLYcF9w3J5kYAAAF -2026-01-15 18:58:39 info: Client connected: z6M2aXzkLL3ESHeVAAAH -2026-01-15 18:58:39 info: Client connected: gKu1K_ibYO3y4rKoAAAJ -2026-01-15 18:58:40 info: User disconnected _C8JNLYcF9w3J5kYAAAF beacuse of transport close -2026-01-15 18:58:40 info: Client connected: Up2vR7TpGRWHZDz8AAAL -2026-01-15 18:58:44 info: Create room listner started -2026-01-15 18:58:44 info: Create room started -2026-01-15 18:58:44 info: Creating worker started -2026-01-15 18:58:44 info: Creation of worker successfully executed -2026-01-15 18:58:44 info: Creation of router started -2026-01-15 18:58:44 info: Router created for room: ee46b556-62a5-4c9b-84a1-4a3eaccc395d -2026-01-15 18:58:44 info: Creation of room successfully executed -2026-01-15 18:58:44 info: Add broadcaster started -2026-01-15 18:58:44 info: Get room started -2026-01-15 18:58:44 info: Get room executed successfully -2026-01-15 18:58:44 info: Added broadcaster into memory room -2026-01-15 18:58:44 info: Broadcaster created successfully -2026-01-15 18:58:44 info: Create room listner exceuted successfully -2026-01-15 18:58:44 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 18:58:44 info: Get room started -2026-01-15 18:58:44 info: Get room executed successfully -2026-01-15 18:58:44 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 18:58:45 info: Create broadcaster lister started -2026-01-15 18:58:45 info: Get room started -2026-01-15 18:58:45 info: Get room executed successfully -2026-01-15 18:58:45 info: Creation of webRTC transport started -2026-01-15 18:58:45 info: WebRTC Transport created : 8b6e7186-9c7f-4c1f-af46-c6e7ed79bfbe -2026-01-15 18:58:45 info: Save broadcaster transport executed successfully -2026-01-15 18:58:45 info: Connect broadcaster transport lister started -2026-01-15 18:58:45 info: Get room started -2026-01-15 18:58:45 info: Get room executed successfully -2026-01-15 18:58:45 info: Connect broadcaster transport executed successfully -2026-01-15 18:58:45 info: Producer listener started -2026-01-15 18:58:45 info: Get room started -2026-01-15 18:58:45 info: Get room executed successfully -2026-01-15 18:58:45 info: Producer listener executed successfully: -2026-01-15 18:58:45 info: Producer listener started -2026-01-15 18:58:45 info: Get room started -2026-01-15 18:58:45 info: Get room executed successfully -2026-01-15 18:58:45 info: Producer listener executed successfully: -2026-01-15 18:58:54 info: Join as viewer listner started -2026-01-15 18:58:54 info: Join as viewer started -2026-01-15 18:58:54 info: Get room started -2026-01-15 18:58:54 info: Get room executed successfully -2026-01-15 18:58:54 info: Join as viewer completed successfully -2026-01-15 18:58:54 info: Get room started -2026-01-15 18:58:54 info: Get room executed successfully -2026-01-15 18:58:54 info: Join viewer listner successfully executed -2026-01-15 18:58:54 info: Create viewer transport listner started -2026-01-15 18:58:54 info: Get room started -2026-01-15 18:58:54 info: Get room executed successfully -2026-01-15 18:58:54 info: Create viewer transport started -2026-01-15 18:58:54 info: Get room started -2026-01-15 18:58:54 info: Get room executed successfully -2026-01-15 18:58:54 info: Creation of webRTC transport started -2026-01-15 18:58:54 info: WebRTC Transport created : a923a861-dfd1-4b64-941d-0f16acc8e58f -2026-01-15 18:58:54 info: Create viewer transport successfully executed -2026-01-15 18:58:54 info: Create viewer transport listner successfully executed -2026-01-15 18:58:54 info: Consume lister started -2026-01-15 18:58:54 info: Consume media started -2026-01-15 18:58:54 info: Get room started -2026-01-15 18:58:54 info: Get room executed successfully -2026-01-15 18:58:54 info: Get room started -2026-01-15 18:58:54 info: Get room executed successfully -2026-01-15 18:58:54 info: Get room started -2026-01-15 18:58:54 info: Get room executed successfully -2026-01-15 18:58:54 info: Viewer media consume successfully executed -2026-01-15 18:58:54 info: Get room started -2026-01-15 18:58:54 info: Get room executed successfully -2026-01-15 18:58:54 info: Consume lister executed successfully -2026-01-15 18:58:54 info: Connect consumer listner started -2026-01-15 18:58:54 info: Connect consumer started -2026-01-15 18:58:54 info: Get room started -2026-01-15 18:58:54 info: Get room executed successfully -2026-01-15 18:58:54 info: Connect consumer executed successfully -2026-01-15 18:58:54 info: Connect consumer listner executed successfully -2026-01-15 18:58:54 info: Resume consumer listner started -2026-01-15 18:58:54 info: Resume consumer started -2026-01-15 18:58:54 info: Resume consumer listner executed successfully -2026-01-15 18:58:54 info: Consumer resumed -2026-01-15 18:58:54 info: Consumer resumed -2026-01-15 18:59:24 info: User disconnected z6M2aXzkLL3ESHeVAAAH beacuse of ping timeout -2026-01-15 19:00:10 info: User disconnected gKu1K_ibYO3y4rKoAAAJ beacuse of transport close -2026-01-15 19:00:11 info: User disconnected Up2vR7TpGRWHZDz8AAAL beacuse of transport close -2026-01-15 19:43:06 info: Client connected: gEO_FMtvKs_oGssnAAAB -2026-01-15 19:43:08 info: Create room listner started -2026-01-15 19:43:08 info: Create room started -2026-01-15 19:43:08 info: Creating worker started -2026-01-15 19:43:08 info: Creation of worker successfully executed -2026-01-15 19:43:08 info: Creation of router started -2026-01-15 19:43:08 info: Router created for room: 2a341568-6b87-4298-96ed-45fd90afc51c -2026-01-15 19:43:08 info: Creation of room successfully executed -2026-01-15 19:43:08 info: Add broadcaster started -2026-01-15 19:43:08 info: Get room started -2026-01-15 19:43:08 info: Get room executed successfully -2026-01-15 19:43:08 info: Added broadcaster into memory room -2026-01-15 19:43:08 info: Broadcaster created successfully -2026-01-15 19:43:08 info: Create room listner exceuted successfully -2026-01-15 19:43:08 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 19:43:08 info: Get room started -2026-01-15 19:43:08 info: Get room executed successfully -2026-01-15 19:43:08 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 19:43:08 info: Create broadcaster lister started -2026-01-15 19:43:08 info: Get room started -2026-01-15 19:43:08 info: Get room executed successfully -2026-01-15 19:43:08 info: Creation of webRTC transport started -2026-01-15 19:43:08 info: WebRTC Transport created : bbb5794a-fdb6-4da3-ab8f-978de156973c -2026-01-15 19:43:08 info: Save broadcaster transport executed successfully -2026-01-15 19:43:08 info: Connect broadcaster transport lister started -2026-01-15 19:43:08 info: Get room started -2026-01-15 19:43:08 info: Get room executed successfully -2026-01-15 19:43:08 info: Connect broadcaster transport executed successfully -2026-01-15 19:43:08 info: Producer listener started -2026-01-15 19:43:08 info: Get room started -2026-01-15 19:43:08 info: Get room executed successfully -2026-01-15 19:43:08 info: Producer listener executed successfully: -2026-01-15 19:43:08 info: Producer listener started -2026-01-15 19:43:08 info: Get room started -2026-01-15 19:43:08 info: Get room executed successfully -2026-01-15 19:43:08 info: Producer listener executed successfully: -2026-01-15 19:43:12 info: Client connected: XM95gSZIddbq7PeSAAAD -2026-01-15 19:43:14 info: Join as viewer listner started -2026-01-15 19:43:14 info: Join as viewer started -2026-01-15 19:43:14 info: Get room started -2026-01-15 19:43:14 info: Get room executed successfully -2026-01-15 19:43:14 info: Join as viewer completed successfully -2026-01-15 19:43:14 info: Get room started -2026-01-15 19:43:14 info: Get room executed successfully -2026-01-15 19:43:14 info: Join viewer listner successfully executed -2026-01-15 19:43:14 info: Create viewer transport listner started -2026-01-15 19:43:14 info: Get room started -2026-01-15 19:43:14 info: Get room executed successfully -2026-01-15 19:43:14 info: Create viewer transport started -2026-01-15 19:43:14 info: Get room started -2026-01-15 19:43:14 info: Get room executed successfully -2026-01-15 19:43:14 info: Creation of webRTC transport started -2026-01-15 19:43:14 info: WebRTC Transport created : 4bc0718d-7d26-4643-bd18-ca3c261189bd -2026-01-15 19:43:14 info: Create viewer transport successfully executed -2026-01-15 19:43:14 info: Create viewer transport listner successfully executed -2026-01-15 19:43:14 info: Consume lister started -2026-01-15 19:43:14 info: Consume media started -2026-01-15 19:43:14 info: Get room started -2026-01-15 19:43:14 info: Get room executed successfully -2026-01-15 19:43:14 info: Get room started -2026-01-15 19:43:14 info: Get room executed successfully -2026-01-15 19:43:14 info: Get room started -2026-01-15 19:43:14 info: Get room executed successfully -2026-01-15 19:43:14 info: Viewer media consume successfully executed -2026-01-15 19:43:14 info: Get room started -2026-01-15 19:43:14 info: Get room executed successfully -2026-01-15 19:43:14 info: Consume lister executed successfully -2026-01-15 19:43:14 info: Connect consumer listner started -2026-01-15 19:43:14 info: Connect consumer started -2026-01-15 19:43:14 info: Get room started -2026-01-15 19:43:14 info: Get room executed successfully -2026-01-15 19:43:14 info: Connect consumer executed successfully -2026-01-15 19:43:14 info: Connect consumer listner executed successfully -2026-01-15 19:43:14 info: Resume consumer listener started -2026-01-15 19:43:14 info: Get room started -2026-01-15 19:43:14 info: Get room executed successfully -2026-01-15 19:43:14 info: Consumer 72e58083-2e07-4e63-b1bc-89701f39c00a resumed -2026-01-15 19:43:14 info: Consumer 0d13bbb3-6652-464f-8660-adfa58a925df resumed -2026-01-15 19:43:14 info: Resume consumer listener executed successfully. Resumed: 2 -2026-01-15 19:44:16 info: Client connected: qufvEaL3w8FUqbeSAAAB -2026-01-15 19:44:24 info: Client connected: 0Ijru2WxElGXfvnhAAAB -2026-01-15 19:44:24 info: Client connected: HDGAC21fg7lhhc-rAAAD -2026-01-15 19:44:25 info: User disconnected 0Ijru2WxElGXfvnhAAAB beacuse of transport close -2026-01-15 19:44:25 info: User disconnected HDGAC21fg7lhhc-rAAAD beacuse of transport close -2026-01-15 19:44:25 info: Client connected: f1Y17pW6F3zPOaXeAAAF -2026-01-15 19:44:25 info: Client connected: T5mM1_zYosbSo7NDAAAH -2026-01-15 19:44:31 info: Create room listner started -2026-01-15 19:44:31 info: Create room started -2026-01-15 19:44:31 info: Creating worker started -2026-01-15 19:44:31 info: Creation of worker successfully executed -2026-01-15 19:44:31 info: Creation of router started -2026-01-15 19:44:31 info: Router created for room: 0d1ca8ae-a29f-42ad-b4a9-1c7b50e6ac57 -2026-01-15 19:44:31 info: Creation of room successfully executed -2026-01-15 19:44:31 info: Add broadcaster started -2026-01-15 19:44:31 info: Get room started -2026-01-15 19:44:31 info: Get room executed successfully -2026-01-15 19:44:31 info: Added broadcaster into memory room -2026-01-15 19:44:31 info: Broadcaster created successfully -2026-01-15 19:44:31 info: Create room listner exceuted successfully -2026-01-15 19:44:31 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 19:44:31 info: Get room started -2026-01-15 19:44:31 info: Get room executed successfully -2026-01-15 19:44:31 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 19:44:31 info: Create broadcaster lister started -2026-01-15 19:44:31 info: Get room started -2026-01-15 19:44:31 info: Get room executed successfully -2026-01-15 19:44:31 info: Creation of webRTC transport started -2026-01-15 19:44:31 info: WebRTC Transport created : 43b9f8a5-87d2-4130-89bd-4b92b4f74bfa -2026-01-15 19:44:31 info: Save broadcaster transport executed successfully -2026-01-15 19:44:32 info: Connect broadcaster transport lister started -2026-01-15 19:44:32 info: Get room started -2026-01-15 19:44:32 info: Get room executed successfully -2026-01-15 19:44:32 info: Connect broadcaster transport executed successfully -2026-01-15 19:44:32 info: Producer listener started -2026-01-15 19:44:32 info: Get room started -2026-01-15 19:44:32 info: Get room executed successfully -2026-01-15 19:44:32 info: Producer listener executed successfully: -2026-01-15 19:44:32 info: Producer listener started -2026-01-15 19:44:32 info: Get room started -2026-01-15 19:44:32 info: Get room executed successfully -2026-01-15 19:44:32 info: Producer listener executed successfully: -2026-01-15 19:44:35 info: Join as viewer listner started -2026-01-15 19:44:35 info: Join as viewer started -2026-01-15 19:44:35 info: Get room started -2026-01-15 19:44:35 info: Get room executed successfully -2026-01-15 19:44:35 info: Join as viewer completed successfully -2026-01-15 19:44:35 info: Get room started -2026-01-15 19:44:35 info: Get room executed successfully -2026-01-15 19:44:35 info: Join viewer listner successfully executed -2026-01-15 19:44:35 info: Create viewer transport listner started -2026-01-15 19:44:35 info: Get room started -2026-01-15 19:44:35 info: Get room executed successfully -2026-01-15 19:44:35 info: Create viewer transport started -2026-01-15 19:44:35 info: Get room started -2026-01-15 19:44:35 info: Get room executed successfully -2026-01-15 19:44:35 info: Creation of webRTC transport started -2026-01-15 19:44:35 info: WebRTC Transport created : 6bd3d4cf-21a6-470e-a89f-45b89958ed2c -2026-01-15 19:44:35 info: Create viewer transport successfully executed -2026-01-15 19:44:35 info: Create viewer transport listner successfully executed -2026-01-15 19:44:35 info: Consume lister started -2026-01-15 19:44:35 info: Consume media started -2026-01-15 19:44:35 info: Get room started -2026-01-15 19:44:35 info: Get room executed successfully -2026-01-15 19:44:35 info: Get room started -2026-01-15 19:44:35 info: Get room executed successfully -2026-01-15 19:44:35 info: Get room started -2026-01-15 19:44:35 info: Get room executed successfully -2026-01-15 19:44:35 info: Viewer media consume successfully executed -2026-01-15 19:44:35 info: Get room started -2026-01-15 19:44:35 info: Get room executed successfully -2026-01-15 19:44:35 info: Consume lister executed successfully -2026-01-15 19:44:35 info: Connect consumer listner started -2026-01-15 19:44:35 info: Connect consumer started -2026-01-15 19:44:35 info: Get room started -2026-01-15 19:44:35 info: Get room executed successfully -2026-01-15 19:44:35 info: Connect consumer executed successfully -2026-01-15 19:44:35 info: Connect consumer listner executed successfully -2026-01-15 19:44:35 info: Resume consumer listener started -2026-01-15 19:44:35 info: Get room started -2026-01-15 19:44:35 info: Get room executed successfully -2026-01-15 19:44:35 info: Consumer c742e867-bb3a-4194-9f0b-5302850d7a7a resumed -2026-01-15 19:44:35 info: Consumer b4dc2352-5257-4ac8-8de1-d9c73bce8933 resumed -2026-01-15 19:44:35 info: Resume consumer listener executed successfully. Resumed: 2 -2026-01-15 19:45:34 info: Client connected: EXr8GTqTDGGHe8bPAAAB -2026-01-15 19:45:37 info: Client connected: zeKVrgPPi1onNW6wAAAD -2026-01-15 19:45:40 info: Create room listner started -2026-01-15 19:45:40 info: Create room started -2026-01-15 19:45:40 info: Creating worker started -2026-01-15 19:45:40 info: Creation of worker successfully executed -2026-01-15 19:45:40 info: Creation of router started -2026-01-15 19:45:40 info: Router created for room: b1d5e4b8-d942-42f0-ba3f-e727bc70d7e6 -2026-01-15 19:45:40 info: Creation of room successfully executed -2026-01-15 19:45:40 info: Add broadcaster started -2026-01-15 19:45:40 info: Get room started -2026-01-15 19:45:40 info: Get room executed successfully -2026-01-15 19:45:40 info: Added broadcaster into memory room -2026-01-15 19:45:40 info: Broadcaster created successfully -2026-01-15 19:45:40 info: Create room listner exceuted successfully -2026-01-15 19:45:40 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 19:45:40 info: Get room started -2026-01-15 19:45:40 info: Get room executed successfully -2026-01-15 19:45:40 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 19:45:40 info: Create broadcaster lister started -2026-01-15 19:45:40 info: Get room started -2026-01-15 19:45:40 info: Get room executed successfully -2026-01-15 19:45:40 info: Creation of webRTC transport started -2026-01-15 19:45:40 info: WebRTC Transport created : c4942b77-0267-4d6f-bb47-f63f39a5b2bc -2026-01-15 19:45:40 info: Save broadcaster transport executed successfully -2026-01-15 19:45:40 info: Connect broadcaster transport lister started -2026-01-15 19:45:40 info: Get room started -2026-01-15 19:45:40 info: Get room executed successfully -2026-01-15 19:45:40 info: Connect broadcaster transport executed successfully -2026-01-15 19:45:40 info: Producer listener started -2026-01-15 19:45:40 info: Get room started -2026-01-15 19:45:40 info: Get room executed successfully -2026-01-15 19:45:40 info: Producer listener executed successfully: -2026-01-15 19:45:40 info: Producer listener started -2026-01-15 19:45:40 info: Get room started -2026-01-15 19:45:40 info: Get room executed successfully -2026-01-15 19:45:40 info: Producer listener executed successfully: -2026-01-15 19:45:44 info: Join as viewer listner started -2026-01-15 19:45:44 info: Join as viewer started -2026-01-15 19:45:44 info: Get room started -2026-01-15 19:45:44 info: Get room executed successfully -2026-01-15 19:45:44 info: Join as viewer completed successfully -2026-01-15 19:45:44 info: Get room started -2026-01-15 19:45:44 info: Get room executed successfully -2026-01-15 19:45:44 info: Join viewer listner successfully executed -2026-01-15 19:45:44 info: Create viewer transport listner started -2026-01-15 19:45:44 info: Get room started -2026-01-15 19:45:44 info: Get room executed successfully -2026-01-15 19:45:44 info: Create viewer transport started -2026-01-15 19:45:44 info: Get room started -2026-01-15 19:45:44 info: Get room executed successfully -2026-01-15 19:45:44 info: Creation of webRTC transport started -2026-01-15 19:45:44 info: WebRTC Transport created : 240d444c-2b7d-410b-9e0e-afbd9adf0ab5 -2026-01-15 19:45:44 info: Create viewer transport successfully executed -2026-01-15 19:45:44 info: Create viewer transport listner successfully executed -2026-01-15 19:45:44 info: Consume lister started -2026-01-15 19:45:44 info: Consume media started -2026-01-15 19:45:44 info: Get room started -2026-01-15 19:45:44 info: Get room executed successfully -2026-01-15 19:45:44 info: Get room started -2026-01-15 19:45:44 info: Get room executed successfully -2026-01-15 19:45:44 info: Get room started -2026-01-15 19:45:44 info: Get room executed successfully -2026-01-15 19:45:44 info: Viewer media consume successfully executed -2026-01-15 19:45:44 info: Get room started -2026-01-15 19:45:44 info: Get room executed successfully -2026-01-15 19:45:44 info: Consume lister executed successfully -2026-01-15 19:45:44 info: Connect consumer listner started -2026-01-15 19:45:44 info: Connect consumer started -2026-01-15 19:45:44 info: Get room started -2026-01-15 19:45:44 info: Get room executed successfully -2026-01-15 19:45:44 info: Connect consumer executed successfully -2026-01-15 19:45:44 info: Connect consumer listner executed successfully -2026-01-15 19:45:44 info: Resume consumer listener started -2026-01-15 19:45:44 info: Get room started -2026-01-15 19:45:44 info: Get room executed successfully -2026-01-15 19:45:44 info: Consumer 0f51b144-b59f-4796-b5b3-3fd6eb6a89ca resumed -2026-01-15 19:45:44 info: Consumer 47195e06-58bc-430e-982c-18320cce7517 resumed -2026-01-15 19:45:44 info: Resume consumer listener executed successfully. Resumed: 2 -2026-01-15 19:46:57 info: User disconnected EXr8GTqTDGGHe8bPAAAB beacuse of transport close -2026-01-15 19:46:58 info: User disconnected zeKVrgPPi1onNW6wAAAD beacuse of transport close -2026-01-15 19:49:06 info: Client connected: Gc6yNRxryapNgsNHAAAB -2026-01-15 19:49:11 info: Client connected: ZHGSpYeSA9K5rfe4AAAD -2026-01-15 19:49:14 info: Create room listner started -2026-01-15 19:49:14 info: Create room started -2026-01-15 19:49:14 info: Creating worker started -2026-01-15 19:49:14 info: Creation of worker successfully executed -2026-01-15 19:49:14 info: Creation of router started -2026-01-15 19:49:14 info: Router created for room: 98ca5096-9917-4e45-af3c-e338e942abf7 -2026-01-15 19:49:14 info: Creation of room successfully executed -2026-01-15 19:49:14 info: Add broadcaster started -2026-01-15 19:49:14 info: Get room started -2026-01-15 19:49:14 info: Get room executed successfully -2026-01-15 19:49:14 info: Added broadcaster into memory room -2026-01-15 19:49:14 info: Broadcaster created successfully -2026-01-15 19:49:14 info: Create room listner exceuted successfully -2026-01-15 19:49:14 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 19:49:14 info: Get room started -2026-01-15 19:49:14 info: Get room executed successfully -2026-01-15 19:49:14 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 19:49:14 info: Create broadcaster lister started -2026-01-15 19:49:14 info: Get room started -2026-01-15 19:49:14 info: Get room executed successfully -2026-01-15 19:49:14 info: Creation of webRTC transport started -2026-01-15 19:49:14 info: WebRTC Transport created : e0a8a7b5-bd72-421d-b09e-9f4bafd1884a -2026-01-15 19:49:14 info: Save broadcaster transport executed successfully -2026-01-15 19:49:15 info: Connect broadcaster transport lister started -2026-01-15 19:49:15 info: Get room started -2026-01-15 19:49:15 info: Get room executed successfully -2026-01-15 19:49:15 info: Connect broadcaster transport executed successfully -2026-01-15 19:49:15 info: Producer listener started -2026-01-15 19:49:15 info: Get room started -2026-01-15 19:49:15 info: Get room executed successfully -2026-01-15 19:49:15 info: Producer listener executed successfully: -2026-01-15 19:49:15 info: Producer listener started -2026-01-15 19:49:15 info: Get room started -2026-01-15 19:49:15 info: Get room executed successfully -2026-01-15 19:49:15 info: Producer listener executed successfully: -2026-01-15 19:49:19 info: Join as viewer listner started -2026-01-15 19:49:19 info: Join as viewer started -2026-01-15 19:49:19 info: Get room started -2026-01-15 19:49:19 info: Get room executed successfully -2026-01-15 19:49:19 info: Join as viewer completed successfully -2026-01-15 19:49:19 info: Get room started -2026-01-15 19:49:19 info: Get room executed successfully -2026-01-15 19:49:19 info: Join viewer listner successfully executed -2026-01-15 19:49:19 info: Create viewer transport listner started -2026-01-15 19:49:19 info: Get room started -2026-01-15 19:49:19 info: Get room executed successfully -2026-01-15 19:49:19 info: Create viewer transport started -2026-01-15 19:49:19 info: Get room started -2026-01-15 19:49:19 info: Get room executed successfully -2026-01-15 19:49:19 info: Creation of webRTC transport started -2026-01-15 19:49:19 info: WebRTC Transport created : cfcf83f9-88d2-45fd-a5a9-c1bcdcb508a5 -2026-01-15 19:49:19 info: Create viewer transport successfully executed -2026-01-15 19:49:19 info: Create viewer transport listner successfully executed -2026-01-15 19:49:19 info: Consume lister started -2026-01-15 19:49:19 info: Consume media started -2026-01-15 19:49:19 info: Get room started -2026-01-15 19:49:19 info: Get room executed successfully -2026-01-15 19:49:19 info: Get room started -2026-01-15 19:49:19 info: Get room executed successfully -2026-01-15 19:49:19 info: Get room started -2026-01-15 19:49:19 info: Get room executed successfully -2026-01-15 19:49:19 info: Viewer media consume successfully executed -2026-01-15 19:49:19 info: Get room started -2026-01-15 19:49:19 info: Get room executed successfully -2026-01-15 19:49:19 info: Consume lister executed successfully -2026-01-15 19:49:19 info: Connect consumer listner started -2026-01-15 19:49:19 info: Connect consumer started -2026-01-15 19:49:19 info: Get room started -2026-01-15 19:49:19 info: Get room executed successfully -2026-01-15 19:49:19 info: Connect consumer executed successfully -2026-01-15 19:49:19 info: Connect consumer listner executed successfully -2026-01-15 19:49:19 info: Resume consumer listener started -2026-01-15 19:49:19 info: Get room started -2026-01-15 19:49:19 info: Get room executed successfully -2026-01-15 19:49:19 info: Consumer 172b953e-4162-419c-b714-78a87bfe5f9e resumed -2026-01-15 19:49:19 info: Consumer e7b5c67e-4335-48ed-9500-ac7f360b206e resumed -2026-01-15 19:49:19 info: Resume consumer listener executed successfully. Resumed: 2 -2026-01-15 19:50:45 info: User disconnected Gc6yNRxryapNgsNHAAAB beacuse of transport close -2026-01-15 19:50:45 info: User disconnected ZHGSpYeSA9K5rfe4AAAD beacuse of transport close -2026-01-15 20:07:13 info: Client connected: mA1Jq10KbpnX_8xRAAAB -2026-01-15 20:07:16 info: Client connected: n2DPSYM_2AyrMOeeAAAD -2026-01-15 20:07:19 info: Create room listner started -2026-01-15 20:07:19 info: Create room started -2026-01-15 20:07:19 info: Creating worker started -2026-01-15 20:07:19 info: Creation of worker successfully executed -2026-01-15 20:07:19 info: Creation of router started -2026-01-15 20:07:19 info: Router created for room: 057b8b68-9ad9-4d04-a1fd-0612a59f9918 -2026-01-15 20:07:19 info: Creation of room successfully executed -2026-01-15 20:07:19 info: Add broadcaster started -2026-01-15 20:07:19 info: Get room started -2026-01-15 20:07:19 info: Get room executed successfully -2026-01-15 20:07:19 info: Added broadcaster into memory room -2026-01-15 20:07:19 info: Broadcaster created successfully -2026-01-15 20:07:19 info: Create room listner exceuted successfully -2026-01-15 20:07:19 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 20:07:19 info: Get room started -2026-01-15 20:07:19 info: Get room executed successfully -2026-01-15 20:07:19 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 20:07:19 info: Create broadcaster lister started -2026-01-15 20:07:19 info: Get room started -2026-01-15 20:07:19 info: Get room executed successfully -2026-01-15 20:07:19 info: Creation of webRTC transport started -2026-01-15 20:07:19 info: WebRTC Transport created : 08622280-ca9e-4e16-b75e-23b4fdcac64d -2026-01-15 20:07:19 info: Save broadcaster transport executed successfully -2026-01-15 20:07:20 info: Connect broadcaster transport lister started -2026-01-15 20:07:20 info: Get room started -2026-01-15 20:07:20 info: Get room executed successfully -2026-01-15 20:07:20 info: Connect broadcaster transport executed successfully -2026-01-15 20:07:20 info: Producer listener started -2026-01-15 20:07:20 info: Get room started -2026-01-15 20:07:20 info: Get room executed successfully -2026-01-15 20:07:20 info: Producer listener executed successfully: -2026-01-15 20:07:20 info: Producer listener started -2026-01-15 20:07:20 info: Get room started -2026-01-15 20:07:20 info: Get room executed successfully -2026-01-15 20:07:20 info: Producer listener executed successfully: -2026-01-15 20:07:37 info: Join as viewer listner started -2026-01-15 20:07:37 info: Join as viewer started -2026-01-15 20:07:37 info: Get room started -2026-01-15 20:07:37 info: Get room executed successfully -2026-01-15 20:07:37 info: Join as viewer completed successfully -2026-01-15 20:07:37 info: Get room started -2026-01-15 20:07:37 info: Get room executed successfully -2026-01-15 20:07:37 info: Join viewer listner successfully executed -2026-01-15 20:07:37 info: Create viewer transport listner started -2026-01-15 20:07:37 info: Get room started -2026-01-15 20:07:37 info: Get room executed successfully -2026-01-15 20:07:37 info: Create viewer transport started -2026-01-15 20:07:37 info: Get room started -2026-01-15 20:07:37 info: Get room executed successfully -2026-01-15 20:07:37 info: Creation of webRTC transport started -2026-01-15 20:07:37 info: WebRTC Transport created : 780ea2e1-19bc-4199-bb2a-167f59779241 -2026-01-15 20:07:37 info: Create viewer transport successfully executed -2026-01-15 20:07:37 info: Create viewer transport listner successfully executed -2026-01-15 20:07:37 info: Consume lister started -2026-01-15 20:07:37 info: Consume media started -2026-01-15 20:07:37 info: Get room started -2026-01-15 20:07:37 info: Get room executed successfully -2026-01-15 20:07:37 info: Get room started -2026-01-15 20:07:37 info: Get room executed successfully -2026-01-15 20:07:37 info: Get room started -2026-01-15 20:07:37 info: Get room executed successfully -2026-01-15 20:07:37 info: Viewer media consume successfully executed -2026-01-15 20:07:37 info: Get room started -2026-01-15 20:07:37 info: Get room executed successfully -2026-01-15 20:07:37 info: Consume lister executed successfully -2026-01-15 20:07:37 info: Connect consumer listner started -2026-01-15 20:07:37 info: Connect consumer started -2026-01-15 20:07:37 info: Get room started -2026-01-15 20:07:37 info: Get room executed successfully -2026-01-15 20:07:37 info: Connect consumer executed successfully -2026-01-15 20:07:37 info: Connect consumer listner executed successfully -2026-01-15 20:07:37 info: Resume consumer listener started -2026-01-15 20:07:37 info: Get room started -2026-01-15 20:07:37 info: Get room executed successfully -2026-01-15 20:07:37 info: Consumer 6cabd9b1-1170-4036-95b5-394dd36862d2 resumed -2026-01-15 20:07:37 info: Consumer 56ed0ba2-9b71-4ee5-9200-32064cd91d6d resumed -2026-01-15 20:07:37 info: Resume consumer listener executed successfully. Resumed: 2 -2026-01-15 20:09:39 info: User disconnected n2DPSYM_2AyrMOeeAAAD beacuse of transport close -2026-01-15 20:09:40 info: Client connected: fu6fdfxE6BiRo88sAAAF -2026-01-15 20:09:40 info: User disconnected fu6fdfxE6BiRo88sAAAF beacuse of transport error -2026-01-15 20:09:40 info: Client connected: u3kO7CXAHUvPtSQ0AAAH -2026-01-15 20:09:40 info: User disconnected u3kO7CXAHUvPtSQ0AAAH beacuse of transport error -2026-01-15 20:09:40 info: Client connected: ykIFv0af1dqSvaVJAAAJ -2026-01-15 20:09:40 info: User disconnected ykIFv0af1dqSvaVJAAAJ beacuse of transport error -2026-01-15 20:09:40 info: Client connected: 5mHU-XEzMveYLfcEAAAL -2026-01-15 20:09:40 info: User disconnected 5mHU-XEzMveYLfcEAAAL beacuse of transport error -2026-01-15 20:09:40 info: Client connected: GbHecK4UvCGB7npoAAAN -2026-01-15 20:09:40 info: User disconnected GbHecK4UvCGB7npoAAAN beacuse of transport error -2026-01-15 20:09:40 info: Client connected: 7u7b5puMBtYg0RwsAAAP -2026-01-15 20:09:42 info: Join as viewer listner started -2026-01-15 20:09:42 info: Join as viewer started -2026-01-15 20:09:42 info: Get room started -2026-01-15 20:09:42 error: Room not found -2026-01-15 20:09:42 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:118:13) - at joinAsViewer (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/viewer.handler.ts:17:25) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:19:25) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-15 20:09:42 error: Room does not exist with http://localhost:5173/, {"iceServers":[{"urls":["stun:stun.l.google.com:19302"]}],"bundlePolicy":"max-bundle"}, ICE connection state: new => "checking" => "checking" => "checking" => "checking" Connection state: new => "connecting" => "connecting" => "connecting" => "connecting" Signaling state: new => "stable" => "stable" => "stable" => "stable" ICE Candidate pair: ICE candidate grid Time Event 15/01/2026, 20:08:03 setRemoteDescription (type: "offer", 4 sections) 15/01/2026, 20:08:03 setLocalDescription (type: "answer", 4 sections) 15/01/2026, 20:08:03 onsignalingstatechange 15/01/2026, 20:08:03 oniceconnectionstatechange 15/01/2026, 20:08:03 onconnectionstatechange 15/01/2026, 20:08:11 setRemoteDescription (type: "offer", 4 sections) 15/01/2026, 20:08:11 setLocalDescription (type: "answer", 4 sections) 15/01/2026, 20:08:11 onsignalingstatechange 15/01/2026, 20:08:11 oniceconnectionstatechange 15/01/2026, 20:08:11 onconnectionstatechange 15/01/2026, 20:08:13 setRemoteDescription (type: "offer", 4 sections) 15/01/2026, 20:08:13 setLocalDescription (type: "answer", 4 sections) 15/01/2026, 20:08:13 onsignalingstatechange 15/01/2026, 20:08:13 oniceconnectionstatechange 15/01/2026, 20:08:13 onconnectionstatechange 15/01/2026, 20:08:16 setRemoteDescription (type: "offer", 4 sections) 15/01/2026, 20:08:16 setLocalDescription (type: "answer", 4 sections) 15/01/2026, 20:08:16 onsignalingstatechange 15/01/2026, 20:08:16 oniceconnectionstatechange 15/01/2026, 20:08:16 onconnectionstatechange "connecting" Stats Tables Filter statistics by type including separate multiple values by `,` media-playout (kind=audio, id=AP) certificate (id=CF77:6F:A1:89:0D:1C:BB:23:3F:8C:8F:0D:AC:CA:5E:0B:3C:79:48:0C:F4:6C:F5:46:A6:2C:9E:14:DD:EE:D3:BD) candidate-pair (state=waiting, id=CPU+xaswUZ_iRlzaCCz) local-candidate (candidateType=host, tcpType=active, id=I22My44Q9) local-candidate (candidateType=srflx, id=I3a/hIda6) local-candidate (candidateType=host, id=IPOMDMn1o) local-candidate (candidateType=host, tcpType=active, id=IU+xaswUZ) local-candidate (candidateType=host, id=Ih6nMiuxt) remote-candidate (candidateType=host, tcpType=passive, id=IiRlzaCCz) peer-connection (id=P) transport (iceState=checking, dtlsState=new, id=T01) Filter statistics graphs by type including separate multiple values by `,` Stats graphs for media-playout (kind=audio, id=AP) Stats graphs for candidate-pair (state=waiting, id=CPU+xaswUZ_iRlzaCCz) Stats graphs for peer-connection (id=P) -2026-01-15 20:09:42 info: Get room started -2026-01-15 20:09:42 error: Room not found -2026-01-15 20:09:42 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:118:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:22:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-15 20:09:42 error: Room router not found -2026-01-15 20:09:58 info: Join as viewer listner started -2026-01-15 20:09:58 info: Join as viewer started -2026-01-15 20:09:58 info: Get room started -2026-01-15 20:09:58 info: Get room executed successfully -2026-01-15 20:09:58 info: Join as viewer completed successfully -2026-01-15 20:09:58 info: Get room started -2026-01-15 20:09:58 info: Get room executed successfully -2026-01-15 20:09:58 info: Join viewer listner successfully executed -2026-01-15 20:09:58 info: Create viewer transport listner started -2026-01-15 20:09:58 info: Get room started -2026-01-15 20:09:58 info: Get room executed successfully -2026-01-15 20:09:58 info: Create viewer transport started -2026-01-15 20:09:58 info: Get room started -2026-01-15 20:09:58 info: Get room executed successfully -2026-01-15 20:09:58 info: Creation of webRTC transport started -2026-01-15 20:09:58 info: WebRTC Transport created : 40f63e32-2192-4633-bfac-d031254eca70 -2026-01-15 20:09:58 info: Create viewer transport successfully executed -2026-01-15 20:09:58 info: Create viewer transport listner successfully executed -2026-01-15 20:09:58 info: Consume lister started -2026-01-15 20:09:58 info: Consume media started -2026-01-15 20:09:58 info: Get room started -2026-01-15 20:09:58 info: Get room executed successfully -2026-01-15 20:09:58 info: Get room started -2026-01-15 20:09:58 info: Get room executed successfully -2026-01-15 20:09:58 info: Get room started -2026-01-15 20:09:58 info: Get room executed successfully -2026-01-15 20:09:58 info: Viewer media consume successfully executed -2026-01-15 20:09:58 info: Get room started -2026-01-15 20:09:58 info: Get room executed successfully -2026-01-15 20:09:58 info: Consume lister executed successfully -2026-01-15 20:09:58 info: Connect consumer listner started -2026-01-15 20:09:58 info: Connect consumer started -2026-01-15 20:09:58 info: Get room started -2026-01-15 20:09:58 info: Get room executed successfully -2026-01-15 20:09:58 info: Connect consumer executed successfully -2026-01-15 20:09:58 info: Connect consumer listner executed successfully -2026-01-15 20:09:58 info: Resume consumer listener started -2026-01-15 20:09:58 info: Get room started -2026-01-15 20:09:58 info: Get room executed successfully -2026-01-15 20:09:58 info: Consumer 6cabd9b1-1170-4036-95b5-394dd36862d2 resumed -2026-01-15 20:09:58 info: Consumer 56ed0ba2-9b71-4ee5-9200-32064cd91d6d resumed -2026-01-15 20:09:58 info: Resume consumer listener executed successfully. Resumed: 2 -2026-01-15 21:38:02 info: Client connected: KosF0i12f30o7GapAAAB -2026-01-15 21:38:06 info: Client connected: fq0B96UC2bRF2HfZAAAD -2026-01-15 21:38:09 info: Create room listner started -2026-01-15 21:38:09 info: Create room started -2026-01-15 21:38:09 info: Creating worker started -2026-01-15 21:38:09 info: Creation of worker successfully executed -2026-01-15 21:38:09 info: Creation of router started -2026-01-15 21:38:09 info: Router created for room: b359daf1-6400-427e-831c-7791324ee1ed -2026-01-15 21:38:09 info: Creation of room successfully executed -2026-01-15 21:38:09 info: Add broadcaster started -2026-01-15 21:38:09 info: Get room started -2026-01-15 21:38:09 info: Get room executed successfully -2026-01-15 21:38:09 info: Added broadcaster into memory room -2026-01-15 21:38:09 info: Broadcaster created successfully -2026-01-15 21:38:09 info: Create room listner exceuted successfully -2026-01-15 21:38:09 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 21:38:09 info: Get room started -2026-01-15 21:38:09 info: Get room executed successfully -2026-01-15 21:38:09 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 21:38:09 info: Create broadcaster lister started -2026-01-15 21:38:09 info: Get room started -2026-01-15 21:38:09 info: Get room executed successfully -2026-01-15 21:38:09 info: Creation of webRTC transport started -2026-01-15 21:38:09 info: WebRTC Transport created : d51a111a-d809-41b1-8e15-ad47535d1410 -2026-01-15 21:38:09 info: Save broadcaster transport executed successfully -2026-01-15 21:38:10 info: Connect broadcaster transport lister started -2026-01-15 21:38:10 info: Get room started -2026-01-15 21:38:10 info: Get room executed successfully -2026-01-15 21:38:10 info: Connect broadcaster transport executed successfully -2026-01-15 21:38:10 info: Producer listener started -2026-01-15 21:38:10 info: Get room started -2026-01-15 21:38:10 info: Get room executed successfully -2026-01-15 21:38:10 info: Producer listener executed successfully: -2026-01-15 21:38:10 info: Producer listener started -2026-01-15 21:38:10 info: Get room started -2026-01-15 21:38:10 info: Get room executed successfully -2026-01-15 21:38:10 info: Producer listener executed successfully: -2026-01-15 21:38:15 info: Join as viewer listner started -2026-01-15 21:38:15 info: Join as viewer started -2026-01-15 21:38:15 info: Get room started -2026-01-15 21:38:15 info: Get room executed successfully -2026-01-15 21:38:15 info: Join as viewer completed successfully -2026-01-15 21:38:15 info: Get room started -2026-01-15 21:38:15 info: Get room executed successfully -2026-01-15 21:38:15 info: Join viewer listner successfully executed -2026-01-15 21:38:15 info: Create viewer transport listner started -2026-01-15 21:38:15 info: Get room started -2026-01-15 21:38:15 info: Get room executed successfully -2026-01-15 21:38:15 info: Create viewer transport started -2026-01-15 21:38:15 info: Get room started -2026-01-15 21:38:15 info: Get room executed successfully -2026-01-15 21:38:15 info: Creation of webRTC transport started -2026-01-15 21:38:15 info: WebRTC Transport created : cf6defa4-c2e0-467e-a831-6d23c415abe6 -2026-01-15 21:38:15 info: Create viewer transport successfully executed -2026-01-15 21:38:15 info: Create viewer transport listner successfully executed -2026-01-15 21:38:15 info: Consume lister started -2026-01-15 21:38:15 info: Consume media started -2026-01-15 21:38:15 info: Get room started -2026-01-15 21:38:15 info: Get room executed successfully -2026-01-15 21:38:15 info: Get room started -2026-01-15 21:38:15 info: Get room executed successfully -2026-01-15 21:38:15 info: Get room started -2026-01-15 21:38:15 info: Get room executed successfully -2026-01-15 21:38:15 info: Viewer media consume successfully executed -2026-01-15 21:38:15 info: Get room started -2026-01-15 21:38:15 info: Get room executed successfully -2026-01-15 21:38:15 info: Consume lister executed successfully -2026-01-15 21:38:15 info: Connect consumer listner started -2026-01-15 21:38:15 info: Connect consumer started -2026-01-15 21:38:15 info: Get room started -2026-01-15 21:38:15 info: Get room executed successfully -2026-01-15 21:38:15 info: Connect consumer executed successfully -2026-01-15 21:38:15 info: Connect consumer listner executed successfully -2026-01-15 21:38:15 info: Resume consumer listener started -2026-01-15 21:38:15 info: Get room started -2026-01-15 21:38:15 info: Get room executed successfully -2026-01-15 21:38:15 info: Consumer 7d0c1974-ff85-4022-96e8-9098fb756377 resumed -2026-01-15 21:38:15 info: Consumer 52fe5291-6acd-46d7-bc92-b376db849850 resumed -2026-01-15 21:38:15 info: Resume consumer listener executed successfully. Resumed: 2 -2026-01-15 21:40:41 info: User disconnected KosF0i12f30o7GapAAAB beacuse of transport close -2026-01-15 21:40:41 info: User disconnected fq0B96UC2bRF2HfZAAAD beacuse of transport close -2026-01-15 21:40:53 info: Client connected: 42hut26a32JxzdpYAAAF -2026-01-15 21:40:56 info: Client connected: jl0nQD-yvT-XkZ3MAAAH -2026-01-15 21:40:58 info: Create room listner started -2026-01-15 21:40:58 info: Create room started -2026-01-15 21:40:58 info: Creating worker started -2026-01-15 21:40:58 info: Creation of worker successfully executed -2026-01-15 21:40:58 info: Creation of router started -2026-01-15 21:40:58 info: Router created for room: a84de211-5ac6-4952-9d1b-77f0c73e2db2 -2026-01-15 21:40:58 info: Creation of room successfully executed -2026-01-15 21:40:58 info: Add broadcaster started -2026-01-15 21:40:58 info: Get room started -2026-01-15 21:40:58 info: Get room executed successfully -2026-01-15 21:40:58 info: Added broadcaster into memory room -2026-01-15 21:40:58 info: Broadcaster created successfully -2026-01-15 21:40:58 info: Create room listner exceuted successfully -2026-01-15 21:40:58 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 21:40:58 info: Get room started -2026-01-15 21:40:58 info: Get room executed successfully -2026-01-15 21:40:58 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 21:40:58 info: Create broadcaster lister started -2026-01-15 21:40:58 info: Get room started -2026-01-15 21:40:58 info: Get room executed successfully -2026-01-15 21:40:58 info: Creation of webRTC transport started -2026-01-15 21:40:58 info: WebRTC Transport created : 91c73205-34e9-47ae-b698-a1ad38f53a5f -2026-01-15 21:40:58 info: Save broadcaster transport executed successfully -2026-01-15 21:41:01 info: Connect broadcaster transport lister started -2026-01-15 21:41:01 info: Get room started -2026-01-15 21:41:01 info: Get room executed successfully -2026-01-15 21:41:01 info: Connect broadcaster transport executed successfully -2026-01-15 21:41:01 info: Producer listener started -2026-01-15 21:41:01 info: Get room started -2026-01-15 21:41:01 info: Get room executed successfully -2026-01-15 21:41:01 info: Producer listener executed successfully: -2026-01-15 21:41:01 info: Producer listener started -2026-01-15 21:41:01 info: Get room started -2026-01-15 21:41:01 info: Get room executed successfully -2026-01-15 21:41:01 info: Producer listener executed successfully: -2026-01-15 21:41:12 info: Join as viewer listner started -2026-01-15 21:41:12 info: Join as viewer started -2026-01-15 21:41:12 info: Get room started -2026-01-15 21:41:12 info: Get room executed successfully -2026-01-15 21:41:12 info: Join as viewer completed successfully -2026-01-15 21:41:12 info: Get room started -2026-01-15 21:41:12 info: Get room executed successfully -2026-01-15 21:41:12 info: Join viewer listner successfully executed -2026-01-15 21:41:12 info: Create viewer transport listner started -2026-01-15 21:41:12 info: Get room started -2026-01-15 21:41:12 info: Get room executed successfully -2026-01-15 21:41:12 info: Create viewer transport started -2026-01-15 21:41:12 info: Get room started -2026-01-15 21:41:12 info: Get room executed successfully -2026-01-15 21:41:12 info: Creation of webRTC transport started -2026-01-15 21:41:12 info: WebRTC Transport created : dab253a9-73b0-4d12-a0f0-44ede2619915 -2026-01-15 21:41:12 info: Create viewer transport successfully executed -2026-01-15 21:41:12 info: Create viewer transport listner successfully executed -2026-01-15 21:41:12 info: Consume lister started -2026-01-15 21:41:12 info: Consume media started -2026-01-15 21:41:12 info: Get room started -2026-01-15 21:41:12 info: Get room executed successfully -2026-01-15 21:41:12 info: Get room started -2026-01-15 21:41:12 info: Get room executed successfully -2026-01-15 21:41:12 info: Get room started -2026-01-15 21:41:12 info: Get room executed successfully -2026-01-15 21:41:12 info: Viewer media consume successfully executed -2026-01-15 21:41:12 info: Get room started -2026-01-15 21:41:12 info: Get room executed successfully -2026-01-15 21:41:12 info: Consume lister executed successfully -2026-01-15 21:41:12 info: Connect consumer listner started -2026-01-15 21:41:12 info: Connect consumer started -2026-01-15 21:41:12 info: Get room started -2026-01-15 21:41:12 info: Get room executed successfully -2026-01-15 21:41:12 info: Connect consumer executed successfully -2026-01-15 21:41:12 info: Connect consumer listner executed successfully -2026-01-15 21:41:12 info: Resume consumer listener started -2026-01-15 21:41:12 info: Get room started -2026-01-15 21:41:12 info: Get room executed successfully -2026-01-15 21:41:12 info: Consumer 34cb1012-0a2b-41c0-a6ba-bed310db7ca7 resumed -2026-01-15 21:41:12 info: Consumer ef237923-3b39-4fd1-8fbd-373ecab05e18 resumed -2026-01-15 21:41:12 info: Resume consumer listener executed successfully. Resumed: 2 -2026-01-15 21:42:37 info: Client connected: AgqVRxYoRLtZOUfFAAAB -2026-01-15 21:42:38 info: Client connected: 0cTftKn0EE9mt46bAAAD -2026-01-15 21:42:39 info: Create room listner started -2026-01-15 21:42:39 info: Create room started -2026-01-15 21:42:39 info: Creating worker started -2026-01-15 21:42:39 info: Creation of worker successfully executed -2026-01-15 21:42:39 info: Creation of router started -2026-01-15 21:42:39 info: Router created for room: 847d3c46-8f33-4c94-8550-2ccc4e21ece2 -2026-01-15 21:42:39 info: Creation of room successfully executed -2026-01-15 21:42:39 info: Add broadcaster started -2026-01-15 21:42:39 info: Get room started -2026-01-15 21:42:39 info: Get room executed successfully -2026-01-15 21:42:39 info: Added broadcaster into memory room -2026-01-15 21:42:39 info: Broadcaster created successfully -2026-01-15 21:42:39 info: Create room listner exceuted successfully -2026-01-15 21:42:39 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 21:42:39 info: Get room started -2026-01-15 21:42:39 info: Get room executed successfully -2026-01-15 21:42:39 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 21:42:39 info: Create broadcaster lister started -2026-01-15 21:42:39 info: Get room started -2026-01-15 21:42:39 info: Get room executed successfully -2026-01-15 21:42:39 info: Creation of webRTC transport started -2026-01-15 21:42:39 info: WebRTC Transport created : edec2ab1-58b5-4d7e-b2bc-d8d500071960 -2026-01-15 21:42:39 info: Save broadcaster transport executed successfully -2026-01-15 21:42:39 info: Connect broadcaster transport lister started -2026-01-15 21:42:39 info: Get room started -2026-01-15 21:42:39 info: Get room executed successfully -2026-01-15 21:42:39 info: Connect broadcaster transport executed successfully -2026-01-15 21:42:39 info: Producer listener started -2026-01-15 21:42:39 info: Get room started -2026-01-15 21:42:39 info: Get room executed successfully -2026-01-15 21:42:39 info: Producer listener executed successfully: -2026-01-15 21:42:39 info: Producer listener started -2026-01-15 21:42:39 info: Get room started -2026-01-15 21:42:39 info: Get room executed successfully -2026-01-15 21:42:39 info: Producer listener executed successfully: -2026-01-15 21:42:45 info: Join as viewer listner started -2026-01-15 21:42:45 info: Join as viewer started -2026-01-15 21:42:45 info: Get room started -2026-01-15 21:42:45 info: Get room executed successfully -2026-01-15 21:42:45 info: Join as viewer completed successfully -2026-01-15 21:42:45 info: Get room started -2026-01-15 21:42:45 info: Get room executed successfully -2026-01-15 21:42:45 info: Join viewer listner successfully executed -2026-01-15 21:42:45 info: Create viewer transport listner started -2026-01-15 21:42:45 info: Get room started -2026-01-15 21:42:45 info: Get room executed successfully -2026-01-15 21:42:45 info: Create viewer transport started -2026-01-15 21:42:45 info: Get room started -2026-01-15 21:42:45 info: Get room executed successfully -2026-01-15 21:42:45 info: Creation of webRTC transport started -2026-01-15 21:42:45 info: WebRTC Transport created : 73bbc237-56b1-4602-a7c1-6b794ed4353e -2026-01-15 21:42:45 info: Create viewer transport successfully executed -2026-01-15 21:42:45 info: Create viewer transport listner successfully executed -2026-01-15 21:42:45 info: Consume lister started -2026-01-15 21:42:45 info: Consume media started -2026-01-15 21:42:45 info: Get room started -2026-01-15 21:42:45 info: Get room executed successfully -2026-01-15 21:42:45 info: Get room started -2026-01-15 21:42:45 info: Get room executed successfully -2026-01-15 21:42:45 info: Get room started -2026-01-15 21:42:45 info: Get room executed successfully -2026-01-15 21:42:45 info: Viewer media consume successfully executed -2026-01-15 21:42:45 info: Get room started -2026-01-15 21:42:45 info: Get room executed successfully -2026-01-15 21:42:45 info: Consume lister executed successfully -2026-01-15 21:42:45 info: Connect consumer listner started -2026-01-15 21:42:45 info: Connect consumer started -2026-01-15 21:42:45 info: Get room started -2026-01-15 21:42:45 info: Get room executed successfully -2026-01-15 21:42:45 info: Connect consumer executed successfully -2026-01-15 21:42:45 info: Connect consumer listner executed successfully -2026-01-15 21:42:45 info: Resume consumer listener started -2026-01-15 21:42:45 info: Get room started -2026-01-15 21:42:45 info: Get room executed successfully -2026-01-15 21:42:45 info: Consumer 69133a32-0d78-4e85-add1-1c9e00b6cd17 resumed -2026-01-15 21:42:45 info: Consumer 7c7a1fdf-aea9-4021-ba3e-a7b5ec94ade8 resumed -2026-01-15 21:42:45 info: Resume consumer listener executed successfully. Resumed: 2 -2026-01-15 21:43:22 info: User disconnected 0cTftKn0EE9mt46bAAAD beacuse of transport close -2026-01-15 21:43:23 info: User disconnected AgqVRxYoRLtZOUfFAAAB beacuse of transport close -2026-01-15 21:59:18 info: Client connected: g61A9HCwB8UNQFhFAAAB -2026-01-15 21:59:23 info: Client connected: BY_skw4QZMSP-kOJAAAD -2026-01-15 21:59:25 info: Create room listner started -2026-01-15 21:59:25 info: Create room started -2026-01-15 21:59:25 info: Creating worker started -2026-01-15 21:59:25 info: Creation of worker successfully executed -2026-01-15 21:59:25 info: Creation of router started -2026-01-15 21:59:25 info: Router created for room: e0527fb6-db6f-4560-a83e-b395700e13b0 -2026-01-15 21:59:25 info: Creation of room successfully executed -2026-01-15 21:59:25 info: Add broadcaster started -2026-01-15 21:59:25 info: Get room started -2026-01-15 21:59:25 info: Get room executed successfully -2026-01-15 21:59:25 info: Added broadcaster into memory room -2026-01-15 21:59:25 info: Broadcaster created successfully -2026-01-15 21:59:25 info: Create room listner exceuted successfully -2026-01-15 21:59:25 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 21:59:25 info: Get room started -2026-01-15 21:59:25 info: Get room executed successfully -2026-01-15 21:59:25 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 21:59:25 info: Create broadcaster lister started -2026-01-15 21:59:25 info: Get room started -2026-01-15 21:59:25 info: Get room executed successfully -2026-01-15 21:59:25 info: Creation of webRTC transport started -2026-01-15 21:59:25 info: WebRTC Transport created : 36739690-d814-4200-84e4-363e32f3378f -2026-01-15 21:59:25 info: Save broadcaster transport executed successfully -2026-01-15 21:59:25 info: Connect broadcaster transport lister started -2026-01-15 21:59:25 info: Get room started -2026-01-15 21:59:25 info: Get room executed successfully -2026-01-15 21:59:25 info: Connect broadcaster transport executed successfully -2026-01-15 21:59:25 info: Producer listener started -2026-01-15 21:59:25 info: Get room started -2026-01-15 21:59:25 info: Get room executed successfully -2026-01-15 21:59:25 info: Producer listener executed successfully: -2026-01-15 21:59:25 info: Producer listener started -2026-01-15 21:59:25 info: Get room started -2026-01-15 21:59:25 info: Get room executed successfully -2026-01-15 21:59:25 info: Producer listener executed successfully: -2026-01-15 21:59:32 info: Join as viewer listner started -2026-01-15 21:59:32 info: Join as viewer started -2026-01-15 21:59:32 info: Get room started -2026-01-15 21:59:32 info: Get room executed successfully -2026-01-15 21:59:32 info: Join as viewer completed successfully -2026-01-15 21:59:32 info: Get room started -2026-01-15 21:59:32 info: Get room executed successfully -2026-01-15 21:59:32 info: Join viewer listner successfully executed -2026-01-15 21:59:32 info: Create viewer transport listner started -2026-01-15 21:59:32 info: Get room started -2026-01-15 21:59:32 info: Get room executed successfully -2026-01-15 21:59:32 info: Create viewer transport started -2026-01-15 21:59:32 info: Get room started -2026-01-15 21:59:32 info: Get room executed successfully -2026-01-15 21:59:32 info: Creation of webRTC transport started -2026-01-15 21:59:32 info: WebRTC Transport created : 53e93c59-c771-493e-a0ed-1871bf8ce02b -2026-01-15 21:59:32 info: Create viewer transport successfully executed -2026-01-15 21:59:32 info: Create viewer transport listner successfully executed -2026-01-15 21:59:32 info: Consume lister started -2026-01-15 21:59:32 info: Consume media started -2026-01-15 21:59:32 info: Get room started -2026-01-15 21:59:32 info: Get room executed successfully -2026-01-15 21:59:32 info: Get room started -2026-01-15 21:59:32 info: Get room executed successfully -2026-01-15 21:59:32 info: Get room started -2026-01-15 21:59:32 info: Get room executed successfully -2026-01-15 21:59:32 info: Viewer media consume successfully executed -2026-01-15 21:59:32 info: Get room started -2026-01-15 21:59:32 info: Get room executed successfully -2026-01-15 21:59:32 info: Consume lister executed successfully -2026-01-15 21:59:32 info: Connect consumer listner started -2026-01-15 21:59:32 info: Connect consumer started -2026-01-15 21:59:32 info: Get room started -2026-01-15 21:59:32 info: Get room executed successfully -2026-01-15 21:59:32 info: Connect consumer executed successfully -2026-01-15 21:59:32 info: Connect consumer listner executed successfully -2026-01-15 21:59:32 info: Resume consumer listener started -2026-01-15 21:59:32 info: Get room started -2026-01-15 21:59:32 info: Get room executed successfully -2026-01-15 21:59:32 info: Consumer c983b93a-9316-4654-9ed5-e9527b3144a2 resumed -2026-01-15 21:59:32 info: Consumer 893dec3c-f24d-4c91-b1b4-9334ea4baa2d resumed -2026-01-15 21:59:32 info: Resume consumer listener executed successfully. Resumed: 2 -2026-01-15 21:59:45 info: User disconnected BY_skw4QZMSP-kOJAAAD beacuse of transport close -2026-01-15 21:59:45 info: Client connected: gLanHIgnIsX9da6vAAAF -2026-01-15 21:59:59 info: Join as viewer listner started -2026-01-15 21:59:59 info: Join as viewer started -2026-01-15 21:59:59 info: Get room started -2026-01-15 21:59:59 info: Get room executed successfully -2026-01-15 21:59:59 info: Join as viewer completed successfully -2026-01-15 21:59:59 info: Get room started -2026-01-15 21:59:59 info: Get room executed successfully -2026-01-15 21:59:59 info: Join viewer listner successfully executed -2026-01-15 21:59:59 info: Create viewer transport listner started -2026-01-15 21:59:59 info: Get room started -2026-01-15 21:59:59 info: Get room executed successfully -2026-01-15 21:59:59 info: Create viewer transport started -2026-01-15 21:59:59 info: Get room started -2026-01-15 21:59:59 info: Get room executed successfully -2026-01-15 21:59:59 info: Creation of webRTC transport started -2026-01-15 21:59:59 info: WebRTC Transport created : c1b205ba-cbcf-4d12-b100-e5915f456bde -2026-01-15 21:59:59 info: Create viewer transport successfully executed -2026-01-15 21:59:59 info: Create viewer transport listner successfully executed -2026-01-15 21:59:59 info: Consume lister started -2026-01-15 21:59:59 info: Consume media started -2026-01-15 21:59:59 info: Get room started -2026-01-15 21:59:59 info: Get room executed successfully -2026-01-15 21:59:59 info: Get room started -2026-01-15 21:59:59 info: Get room executed successfully -2026-01-15 21:59:59 info: Get room started -2026-01-15 21:59:59 info: Get room executed successfully -2026-01-15 21:59:59 info: Viewer media consume successfully executed -2026-01-15 21:59:59 info: Get room started -2026-01-15 21:59:59 info: Get room executed successfully -2026-01-15 21:59:59 info: Consume lister executed successfully -2026-01-15 21:59:59 info: Connect consumer listner started -2026-01-15 21:59:59 info: Connect consumer started -2026-01-15 21:59:59 info: Get room started -2026-01-15 21:59:59 info: Get room executed successfully -2026-01-15 21:59:59 info: Connect consumer executed successfully -2026-01-15 21:59:59 info: Connect consumer listner executed successfully -2026-01-15 21:59:59 info: Resume consumer listener started -2026-01-15 21:59:59 info: Get room started -2026-01-15 21:59:59 info: Get room executed successfully -2026-01-15 21:59:59 info: Consumer c983b93a-9316-4654-9ed5-e9527b3144a2 resumed -2026-01-15 21:59:59 info: Consumer 893dec3c-f24d-4c91-b1b4-9334ea4baa2d resumed -2026-01-15 21:59:59 info: Resume consumer listener executed successfully. Resumed: 2 -2026-01-15 22:00:20 info: User disconnected gLanHIgnIsX9da6vAAAF beacuse of transport close -2026-01-15 22:00:22 info: User disconnected g61A9HCwB8UNQFhFAAAB beacuse of transport close -2026-01-15 22:10:21 info: Client connected: VmPnZZFM1m5yNyRxAAAB -2026-01-15 22:10:24 info: Client connected: ZxNv5L1Xc9qjmixcAAAD -2026-01-15 22:10:27 info: Create room listner started -2026-01-15 22:10:27 info: Create room started -2026-01-15 22:10:27 info: Creating worker started -2026-01-15 22:10:27 info: Creation of worker successfully executed -2026-01-15 22:10:27 info: Creation of router started -2026-01-15 22:10:27 info: Router created for room: 0783439d-5a55-4de4-be37-278df1f4fbf5 -2026-01-15 22:10:27 info: Creation of room successfully executed -2026-01-15 22:10:27 info: Add broadcaster started -2026-01-15 22:10:27 info: Get room started -2026-01-15 22:10:27 info: Get room executed successfully -2026-01-15 22:10:27 info: Added broadcaster into memory room -2026-01-15 22:10:27 info: Broadcaster created successfully -2026-01-15 22:10:27 info: Create room listner exceuted successfully -2026-01-15 22:10:27 info: Get getRouterRtpCapabilities socket lister started -2026-01-15 22:10:27 info: Get room started -2026-01-15 22:10:27 info: Get room executed successfully -2026-01-15 22:10:27 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-15 22:10:27 info: Create broadcaster lister started -2026-01-15 22:10:27 info: Get room started -2026-01-15 22:10:27 info: Get room executed successfully -2026-01-15 22:10:27 info: Creation of webRTC transport started -2026-01-15 22:10:27 info: WebRTC Transport created : 7381bfe3-6733-4003-ba67-2de7b5451bee -2026-01-15 22:10:27 info: Save broadcaster transport executed successfully -2026-01-15 22:10:30 info: Connect broadcaster transport lister started -2026-01-15 22:10:30 info: Get room started -2026-01-15 22:10:30 info: Get room executed successfully -2026-01-15 22:10:30 info: Connect broadcaster transport executed successfully -2026-01-15 22:10:30 info: Producer listener started -2026-01-15 22:10:30 info: Get room started -2026-01-15 22:10:30 info: Get room executed successfully -2026-01-15 22:10:30 info: Producer listener executed successfully: -2026-01-15 22:10:30 info: Producer listener started -2026-01-15 22:10:30 info: Get room started -2026-01-15 22:10:30 info: Get room executed successfully -2026-01-15 22:10:30 info: Producer listener executed successfully: -2026-01-15 22:10:37 info: Join as viewer listner started -2026-01-15 22:10:37 info: Join as viewer started -2026-01-15 22:10:37 info: Get room started -2026-01-15 22:10:37 info: Get room executed successfully -2026-01-15 22:10:37 info: Join as viewer completed successfully -2026-01-15 22:10:37 info: Get room started -2026-01-15 22:10:37 info: Get room executed successfully -2026-01-15 22:10:37 info: Join viewer listner successfully executed -2026-01-15 22:10:37 info: Create viewer transport listner started -2026-01-15 22:10:37 info: Get room started -2026-01-15 22:10:37 info: Get room executed successfully -2026-01-15 22:10:37 info: Create viewer transport started -2026-01-15 22:10:37 info: Get room started -2026-01-15 22:10:37 info: Get room executed successfully -2026-01-15 22:10:37 info: Creation of webRTC transport started -2026-01-15 22:10:37 info: WebRTC Transport created : 95a76d17-4410-4748-b34d-d279504b69bd -2026-01-15 22:10:37 info: Create viewer transport successfully executed -2026-01-15 22:10:37 info: Create viewer transport listner successfully executed -2026-01-15 22:10:37 info: Consume lister started -2026-01-15 22:10:37 info: Consume media started -2026-01-15 22:10:37 info: Get room started -2026-01-15 22:10:37 info: Get room executed successfully -2026-01-15 22:10:37 info: Get room started -2026-01-15 22:10:37 info: Get room executed successfully -2026-01-15 22:10:37 info: Get room started -2026-01-15 22:10:37 info: Get room executed successfully -2026-01-15 22:10:37 info: Viewer media consume successfully executed -2026-01-15 22:10:37 info: Get room started -2026-01-15 22:10:37 info: Get room executed successfully -2026-01-15 22:10:37 info: Consume lister executed successfully -2026-01-15 22:10:37 info: Connect consumer listner started -2026-01-15 22:10:37 info: Connect consumer started -2026-01-15 22:10:37 info: Get room started -2026-01-15 22:10:37 info: Get room executed successfully -2026-01-15 22:10:37 info: Connect consumer executed successfully -2026-01-15 22:10:37 info: Connect consumer listner executed successfully -2026-01-15 22:10:37 info: Resume consumer listener started -2026-01-15 22:10:37 info: Get room started -2026-01-15 22:10:37 info: Get room executed successfully -2026-01-15 22:10:37 info: Consumer 1b919483-d7cb-4f39-8072-fb2a6e9d44b7 resumed -2026-01-15 22:10:37 info: Consumer 2e72cd39-3943-4d65-84c6-d23010a5622a resumed -2026-01-15 22:10:37 info: Resume consumer listener executed successfully. Resumed: 2 -2026-01-15 22:10:51 info: User disconnected ZxNv5L1Xc9qjmixcAAAD beacuse of transport close -2026-01-15 22:10:51 info: Client connected: JRkbTeme6qOb-Xa5AAAF -2026-01-15 22:11:03 info: Join as viewer listner started -2026-01-15 22:11:03 info: Join as viewer started -2026-01-15 22:11:03 info: Get room started -2026-01-15 22:11:03 info: Get room executed successfully -2026-01-15 22:11:03 info: Join as viewer completed successfully -2026-01-15 22:11:03 info: Get room started -2026-01-15 22:11:03 info: Get room executed successfully -2026-01-15 22:11:03 info: Join viewer listner successfully executed -2026-01-15 22:11:03 info: Create viewer transport listner started -2026-01-15 22:11:03 info: Get room started -2026-01-15 22:11:03 info: Get room executed successfully -2026-01-15 22:11:03 info: Create viewer transport started -2026-01-15 22:11:03 info: Get room started -2026-01-15 22:11:03 info: Get room executed successfully -2026-01-15 22:11:03 info: Creation of webRTC transport started -2026-01-15 22:11:03 info: WebRTC Transport created : 979d899f-1efe-416f-96f2-bf850621879f -2026-01-15 22:11:03 info: Create viewer transport successfully executed -2026-01-15 22:11:03 info: Create viewer transport listner successfully executed -2026-01-15 22:11:03 info: Consume lister started -2026-01-15 22:11:03 info: Consume media started -2026-01-15 22:11:03 info: Get room started -2026-01-15 22:11:03 info: Get room executed successfully -2026-01-15 22:11:03 info: Get room started -2026-01-15 22:11:03 info: Get room executed successfully -2026-01-15 22:11:03 info: Get room started -2026-01-15 22:11:03 info: Get room executed successfully -2026-01-15 22:11:03 info: Viewer media consume successfully executed -2026-01-15 22:11:03 info: Get room started -2026-01-15 22:11:03 info: Get room executed successfully -2026-01-15 22:11:03 info: Consume lister executed successfully -2026-01-15 22:11:03 info: Connect consumer listner started -2026-01-15 22:11:03 info: Connect consumer started -2026-01-15 22:11:03 info: Get room started -2026-01-15 22:11:03 info: Get room executed successfully -2026-01-15 22:11:03 info: Connect consumer executed successfully -2026-01-15 22:11:03 info: Connect consumer listner executed successfully -2026-01-15 22:11:03 info: Resume consumer listener started -2026-01-15 22:11:03 info: Get room started -2026-01-15 22:11:03 info: Get room executed successfully -2026-01-15 22:11:03 info: Consumer 1b919483-d7cb-4f39-8072-fb2a6e9d44b7 resumed -2026-01-15 22:11:03 info: Consumer 2e72cd39-3943-4d65-84c6-d23010a5622a resumed -2026-01-15 22:11:03 info: Resume consumer listener executed successfully. Resumed: 2 -2026-01-15 22:12:17 info: User disconnected JRkbTeme6qOb-Xa5AAAF beacuse of transport close -2026-01-15 22:12:18 info: User disconnected VmPnZZFM1m5yNyRxAAAB beacuse of transport close -2026-01-16 11:05:53 info: Client connected: 5g20nyTOysZY8Oo2AAAB -2026-01-16 11:05:57 info: Client connected: KYIlmVwf-YhGoeKtAAAD -2026-01-16 11:05:59 info: Create room listner started -2026-01-16 11:05:59 info: Create room started -2026-01-16 11:05:59 info: Creating worker started -2026-01-16 11:05:59 info: Creation of worker successfully executed -2026-01-16 11:05:59 info: Creation of router started -2026-01-16 11:05:59 info: Router created for room: f945c5d0-4f9b-4188-9d42-79b92270b442 -2026-01-16 11:05:59 info: Creation of room successfully executed -2026-01-16 11:05:59 info: Add broadcaster started -2026-01-16 11:05:59 info: Get room started -2026-01-16 11:05:59 info: Get room executed successfully -2026-01-16 11:05:59 info: Added broadcaster into memory room -2026-01-16 11:05:59 info: Broadcaster created successfully -2026-01-16 11:05:59 info: Create room listner exceuted successfully -2026-01-16 11:05:59 info: Get getRouterRtpCapabilities socket lister started -2026-01-16 11:05:59 info: Get room started -2026-01-16 11:05:59 info: Get room executed successfully -2026-01-16 11:05:59 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-16 11:05:59 info: Create broadcaster lister started -2026-01-16 11:05:59 info: Get room started -2026-01-16 11:05:59 info: Get room executed successfully -2026-01-16 11:05:59 info: Creation of webRTC transport started -2026-01-16 11:05:59 info: WebRTC Transport created : a2a57aa0-fd5c-434f-ac24-7da77f487126 -2026-01-16 11:05:59 info: Save broadcaster transport executed successfully -2026-01-16 11:06:02 info: Connect broadcaster transport lister started -2026-01-16 11:06:02 info: Get room started -2026-01-16 11:06:02 info: Get room executed successfully -2026-01-16 11:06:02 info: Connect broadcaster transport executed successfully -2026-01-16 11:06:02 info: Producer listener started -2026-01-16 11:06:02 info: Get room started -2026-01-16 11:06:02 info: Get room executed successfully -2026-01-16 11:06:02 info: Producer listener executed successfully: -2026-01-16 11:06:02 info: Producer listener started -2026-01-16 11:06:02 info: Get room started -2026-01-16 11:06:02 info: Get room executed successfully -2026-01-16 11:06:02 info: Producer listener executed successfully: -2026-01-16 11:06:33 info: Join as viewer listner started -2026-01-16 11:06:33 info: Join as viewer started -2026-01-16 11:06:33 info: Get room started -2026-01-16 11:06:33 info: Get room executed successfully -2026-01-16 11:06:33 info: Join as viewer completed successfully -2026-01-16 11:06:33 info: Get room started -2026-01-16 11:06:33 info: Get room executed successfully -2026-01-16 11:06:33 info: Join viewer listner successfully executed -2026-01-16 11:06:34 info: Create viewer transport listner started -2026-01-16 11:06:34 info: Get room started -2026-01-16 11:06:34 info: Get room executed successfully -2026-01-16 11:06:34 info: Create viewer transport started -2026-01-16 11:06:34 info: Get room started -2026-01-16 11:06:34 info: Get room executed successfully -2026-01-16 11:06:34 info: Creation of webRTC transport started -2026-01-16 11:06:34 info: WebRTC Transport created : 9280c060-c28e-44ee-aa5e-e73c9a61003f -2026-01-16 11:06:34 info: Create viewer transport successfully executed -2026-01-16 11:06:34 info: Create viewer transport listner successfully executed -2026-01-16 11:06:34 info: Consume lister started -2026-01-16 11:06:34 info: Consume media started -2026-01-16 11:06:34 info: Get room started -2026-01-16 11:06:34 info: Get room executed successfully -2026-01-16 11:06:34 info: Get room started -2026-01-16 11:06:34 info: Get room executed successfully -2026-01-16 11:06:34 info: Get room started -2026-01-16 11:06:34 info: Get room executed successfully -2026-01-16 11:06:34 info: Viewer media consume successfully executed -2026-01-16 11:06:34 info: Get room started -2026-01-16 11:06:34 info: Get room executed successfully -2026-01-16 11:06:34 info: Consume lister executed successfully -2026-01-16 11:06:34 info: Connect consumer listner started -2026-01-16 11:06:34 info: Connect consumer started -2026-01-16 11:06:34 info: Get room started -2026-01-16 11:06:34 info: Get room executed successfully -2026-01-16 11:06:34 info: Connect consumer executed successfully -2026-01-16 11:06:34 info: Connect consumer listner executed successfully -2026-01-16 11:06:34 info: Resume consumer listener started -2026-01-16 11:06:34 info: Get room started -2026-01-16 11:06:34 info: Get room executed successfully -2026-01-16 11:06:34 info: Consumer 4ef981b6-c09f-4459-a619-7daaa9d87e9d resumed -2026-01-16 11:06:34 info: Consumer 3b864413-6a87-4125-a6dd-76ce4d4bc20b resumed -2026-01-16 11:06:34 info: Resume consumer listener executed successfully. Resumed: 2 -2026-01-16 11:08:00 info: User disconnected KYIlmVwf-YhGoeKtAAAD beacuse of transport close -2026-01-16 11:08:01 info: User disconnected 5g20nyTOysZY8Oo2AAAB beacuse of transport close -2026-01-16 11:13:01 info: Client connected: YBbHuOLc8ENTX6mZAAAB -2026-01-16 11:13:04 info: Client connected: fJHeEAjNME6fk7ImAAAD -2026-01-16 11:13:06 info: Create room listner started -2026-01-16 11:13:06 info: Create room started -2026-01-16 11:13:06 info: Creating worker started -2026-01-16 11:13:06 info: Creation of worker successfully executed -2026-01-16 11:13:06 info: Creation of router started -2026-01-16 11:13:06 info: Router created for room: 7e9f4cb6-dd5f-4813-b43a-9bb2eaec4e08 -2026-01-16 11:13:06 info: Creation of room successfully executed -2026-01-16 11:13:06 info: Add broadcaster started -2026-01-16 11:13:06 info: Get room started -2026-01-16 11:13:06 info: Get room executed successfully -2026-01-16 11:13:06 info: Added broadcaster into memory room -2026-01-16 11:13:06 info: Broadcaster created successfully -2026-01-16 11:13:06 info: Create room listner exceuted successfully -2026-01-16 11:13:06 info: Get getRouterRtpCapabilities socket lister started -2026-01-16 11:13:06 info: Get room started -2026-01-16 11:13:06 info: Get room executed successfully -2026-01-16 11:13:06 info: Get getRouterRtpCapabilities socket lister executed successfully -2026-01-16 11:13:06 info: Create broadcaster lister started -2026-01-16 11:13:06 info: Get room started -2026-01-16 11:13:06 info: Get room executed successfully -2026-01-16 11:13:06 info: Creation of webRTC transport started -2026-01-16 11:13:06 info: WebRTC Transport created : 6a7b2f1b-11a5-4f1f-8692-b8ead7b4286a -2026-01-16 11:13:06 info: Save broadcaster transport executed successfully -2026-01-16 11:13:09 info: Connect broadcaster transport lister started -2026-01-16 11:13:09 info: Get room started -2026-01-16 11:13:09 info: Get room executed successfully -2026-01-16 11:13:09 info: Connect broadcaster transport executed successfully -2026-01-16 11:13:09 info: Producer listener started -2026-01-16 11:13:09 info: Get room started -2026-01-16 11:13:09 info: Get room executed successfully -2026-01-16 11:13:09 info: Producer listener executed successfully: -2026-01-16 11:13:09 info: Producer listener started -2026-01-16 11:13:09 info: Get room started -2026-01-16 11:13:09 info: Get room executed successfully -2026-01-16 11:13:09 info: Producer listener executed successfully: -2026-01-16 11:13:32 info: Join as viewer listner started -2026-01-16 11:13:32 info: Join as viewer started -2026-01-16 11:13:32 info: Get room started -2026-01-16 11:13:32 info: Get room executed successfully -2026-01-16 11:13:32 info: Join as viewer completed successfully -2026-01-16 11:13:32 info: Get room started -2026-01-16 11:13:32 info: Get room executed successfully -2026-01-16 11:13:32 info: Join viewer listner successfully executed -2026-01-16 11:13:32 info: Create viewer transport listner started -2026-01-16 11:13:32 info: Get room started -2026-01-16 11:13:32 info: Get room executed successfully -2026-01-16 11:13:32 info: Create viewer transport started -2026-01-16 11:13:32 info: Get room started -2026-01-16 11:13:32 info: Get room executed successfully -2026-01-16 11:13:32 info: Creation of webRTC transport started -2026-01-16 11:13:32 info: WebRTC Transport created : 4bea844a-1ec6-406c-ab66-6f4497c0633d -2026-01-16 11:13:32 info: Create viewer transport successfully executed -2026-01-16 11:13:32 info: Create viewer transport listner successfully executed -2026-01-16 11:13:32 info: Consume lister started -2026-01-16 11:13:32 info: Consume media started -2026-01-16 11:13:32 info: Get room started -2026-01-16 11:13:32 info: Get room executed successfully -2026-01-16 11:13:32 info: Get room started -2026-01-16 11:13:32 info: Get room executed successfully -2026-01-16 11:13:32 info: Get room started -2026-01-16 11:13:32 info: Get room executed successfully -2026-01-16 11:13:32 info: Viewer media consume successfully executed -2026-01-16 11:13:32 info: Get room started -2026-01-16 11:13:32 info: Get room executed successfully -2026-01-16 11:13:32 info: Consume lister executed successfully -2026-01-16 11:13:32 info: Connect consumer listner started -2026-01-16 11:13:32 info: Connect consumer started -2026-01-16 11:13:32 info: Get room started -2026-01-16 11:13:32 info: Get room executed successfully -2026-01-16 11:13:32 info: Connect consumer executed successfully -2026-01-16 11:13:32 info: Connect consumer listner executed successfully -2026-01-16 11:13:32 info: Resume consumer listener started -2026-01-16 11:13:32 info: Get room started -2026-01-16 11:13:32 info: Get room executed successfully -2026-01-16 11:13:32 info: Consumer 0b549d77-3215-4ac5-a22c-d074a6c03e98 resumed -2026-01-16 11:13:32 info: Consumer e5699366-8214-47b8-85ad-aca9e3e4ca17 resumed -2026-01-16 11:13:32 info: Resume consumer listener executed successfully. Resumed: 2 -2026-01-16 11:14:05 info: User disconnected fJHeEAjNME6fk7ImAAAD beacuse of transport close -2026-01-16 11:14:06 info: Client connected: x_Z6VPSYjCqCd2nrAAAF -2026-01-16 11:14:08 info: Join as viewer listner started -2026-01-16 11:14:08 info: Join as viewer started -2026-01-16 11:14:08 info: Get room started -2026-01-16 11:14:08 info: Get room executed successfully -2026-01-16 11:14:08 info: Join as viewer completed successfully -2026-01-16 11:14:08 info: Get room started -2026-01-16 11:14:08 info: Get room executed successfully -2026-01-16 11:14:08 info: Join viewer listner successfully executed -2026-01-16 11:14:08 info: Create viewer transport listner started -2026-01-16 11:14:08 info: Get room started -2026-01-16 11:14:08 info: Get room executed successfully -2026-01-16 11:14:08 info: Create viewer transport started -2026-01-16 11:14:08 info: Get room started -2026-01-16 11:14:08 info: Get room executed successfully -2026-01-16 11:14:08 info: Creation of webRTC transport started -2026-01-16 11:14:08 info: WebRTC Transport created : a5dd8d00-5c7b-4291-8bc2-49ee0e8a4dd3 -2026-01-16 11:14:08 info: Create viewer transport successfully executed -2026-01-16 11:14:08 info: Create viewer transport listner successfully executed -2026-01-16 11:14:08 info: Consume lister started -2026-01-16 11:14:08 info: Consume media started -2026-01-16 11:14:08 info: Get room started -2026-01-16 11:14:08 info: Get room executed successfully -2026-01-16 11:14:08 info: Get room started -2026-01-16 11:14:08 info: Get room executed successfully -2026-01-16 11:14:08 info: Get room started -2026-01-16 11:14:08 info: Get room executed successfully -2026-01-16 11:14:08 info: Viewer media consume successfully executed -2026-01-16 11:14:08 info: Get room started -2026-01-16 11:14:08 info: Get room executed successfully -2026-01-16 11:14:08 info: Consume lister executed successfully -2026-01-16 11:14:08 info: Connect consumer listner started -2026-01-16 11:14:08 info: Connect consumer started -2026-01-16 11:14:08 info: Get room started -2026-01-16 11:14:08 info: Get room executed successfully -2026-01-16 11:14:08 info: Connect consumer executed successfully -2026-01-16 11:14:08 info: Connect consumer listner executed successfully -2026-01-16 11:14:08 info: Resume consumer listener started -2026-01-16 11:14:08 info: Get room started -2026-01-16 11:14:08 info: Get room executed successfully -2026-01-16 11:14:08 info: Consumer 0b549d77-3215-4ac5-a22c-d074a6c03e98 resumed -2026-01-16 11:14:08 info: Consumer e5699366-8214-47b8-85ad-aca9e3e4ca17 resumed -2026-01-16 11:14:08 info: Resume consumer listener executed successfully. Resumed: 2 -2026-01-16 11:16:59 info: User disconnected x_Z6VPSYjCqCd2nrAAAF beacuse of transport close -2026-01-16 11:16:59 info: Client connected: qi57L4y7Gv4cl3SsAAAH -2026-01-16 11:17:01 info: User disconnected YBbHuOLc8ENTX6mZAAAB beacuse of transport close -2026-01-16 11:17:01 info: Client connected: grlO8gtviA6aIjzgAAAJ -2026-01-16 11:25:47 info: User disconnected grlO8gtviA6aIjzgAAAJ beacuse of transport close -2026-01-16 11:25:48 info: User disconnected qi57L4y7Gv4cl3SsAAAH beacuse of transport close -2026-06-22 10:46:40 info: Client connected: rm6u-5BiScms9dY6AAAB -2026-06-22 10:46:44 info: Room creation started -2026-06-22 10:54:00 info: Client connected: GsOz0ftcP-SuLsPYAAAB -2026-06-22 10:54:04 info: Room creation started -2026-06-22 10:54:04 info: Create room started -2026-06-22 10:54:04 info: Creating worker started -2026-06-22 10:54:04 info: Worker created successfully -2026-06-22 10:56:37 info: Client connected: hBBEIlXF3MULP5BuAAAB -2026-06-22 10:56:40 info: Room creation started -2026-06-22 10:56:40 info: Create room started -2026-06-22 10:56:40 info: Creating worker started -2026-06-22 10:56:40 info: Worker created successfully -2026-06-22 10:57:48 info: Client connected: R6vSMvM3umWxeXzkAAAB -2026-06-22 10:57:53 info: Client connected: Fppm9N4WY2KKwyGHAAAB -2026-06-22 10:58:05 info: Client connected: LQP48Bynx26K-08lAAAB -2026-06-22 10:58:05 info: User disconnected LQP48Bynx26K-08lAAAB beacuse of transport close -2026-06-22 10:58:05 info: Client connected: alJ7CaJYvb3X2a5RAAAD -2026-06-22 10:58:07 info: Room creation started -2026-06-22 10:58:07 info: Create room started -2026-06-22 10:58:07 info: Creating worker started -2026-06-22 10:58:07 info: Worker created successfully -2026-06-22 10:58:07 info: Creation of router started -2026-06-22 10:58:07 info: Router created -2026-06-22 10:58:07 info: Creation of room successfully executed -2026-06-22 10:58:07 info: Get room started -2026-06-22 10:58:07 info: Get room executed successfully -2026-06-22 10:58:07 info: Broadcaster added to the room -2026-06-22 10:58:07 info: Room created successfully -2026-06-22 10:58:07 info: Get getRouterRtpCapabilities started -2026-06-22 10:58:07 info: Fetching of router started -2026-06-22 10:58:07 error: Error founding the router -2026-06-22 10:58:07 error: Error: Router not found - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:86:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:65:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 10:58:07 error: TypeError: error is not a constructor - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:103:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:65:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 10:58:55 info: Client connected: mgqP5W4YSyGHP-IAAAAB -2026-06-22 10:58:56 info: Room creation started -2026-06-22 10:58:56 info: Create room started -2026-06-22 10:58:56 info: Creating worker started -2026-06-22 10:58:56 info: Worker created successfully -2026-06-22 10:58:56 info: Creation of router started -2026-06-22 10:58:56 info: Router created -2026-06-22 10:58:56 info: Creation of room successfully executed -2026-06-22 10:58:56 info: Get room started -2026-06-22 10:58:56 info: Get room executed successfully -2026-06-22 10:58:56 info: Broadcaster added to the room -2026-06-22 10:58:56 info: Room created successfully -2026-06-22 10:58:56 info: Get getRouterRtpCapabilities started -2026-06-22 10:58:56 info: Fetching of router started -2026-06-22 10:58:56 error: Error founding the router -2026-06-22 10:58:56 error: Error: Router not found - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:86:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:65:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 10:58:56 error: TypeError: error is not a constructor - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:103:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:65:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 10:59:19 info: Client connected: 7YENqkzHxGk8qh2-AAAB -2026-06-22 11:01:41 info: Client connected: M6kClY9Iy7OsFOPIAAAB -2026-06-22 11:01:43 info: Create room started -2026-06-22 11:01:43 info: Creating worker started -2026-06-22 11:01:43 info: Worker created successfully -2026-06-22 11:01:43 info: Creation of router started -2026-06-22 11:01:43 info: Router created -2026-06-22 11:01:43 info: Creation of room successfully executed -2026-06-22 11:01:43 info: Get room started -2026-06-22 11:01:43 info: Get room executed successfully -2026-06-22 11:01:43 info: Broadcaster added to the room -2026-06-22 11:01:43 info: Room created successfully -2026-06-22 11:01:43 info: Get getRouterRtpCapabilities started -2026-06-22 11:01:43 info: Fetching of router started -2026-06-22 11:01:43 error: Error founding the router -2026-06-22 11:01:43 error: Error: Router not found - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:86:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:63:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 11:01:43 error: TypeError: error is not a constructor - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:103:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:63:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 11:02:16 info: Client connected: xggw6PEdqXs_n98zAAAB -2026-06-22 11:02:16 info: Create room started -2026-06-22 11:02:16 info: Creating worker started -2026-06-22 11:02:16 info: Worker created successfully -2026-06-22 11:02:16 info: Creation of router started -2026-06-22 11:02:16 info: Router created -2026-06-22 11:02:16 info: Creation of room successfully executed -2026-06-22 11:02:16 info: Get room started -2026-06-22 11:02:16 info: Get room executed successfully -2026-06-22 11:02:16 info: Broadcaster added to the room -2026-06-22 11:02:16 info: Room created successfully -2026-06-22 11:02:16 info: Get getRouterRtpCapabilities started -2026-06-22 11:02:16 info: Fetching of router started -2026-06-22 11:02:16 error: Error founding the router -2026-06-22 11:02:16 error: Error: Router not found - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:86:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:64:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 11:02:16 error: TypeError: error is not a constructor - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:103:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:64:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 11:03:34 info: Client connected: pXpAqRiXmMv85-FWAAAB -2026-06-22 11:03:36 info: Create room started -2026-06-22 11:03:36 info: Creating worker started -2026-06-22 11:03:36 info: Worker created successfully -2026-06-22 11:03:36 info: Creation of router started -2026-06-22 11:03:36 info: Router created -2026-06-22 11:03:36 info: Creation of room successfully executed -2026-06-22 11:03:36 info: Get room started -2026-06-22 11:03:36 info: Get room executed successfully -2026-06-22 11:03:36 info: Broadcaster added to the room -2026-06-22 11:03:36 info: Room created successfully -2026-06-22 11:03:36 info: Get getRouterRtpCapabilities started -2026-06-22 11:03:36 info: Fetching of router started -2026-06-22 11:03:36 error: Error founding the router -2026-06-22 11:03:36 error: Error: Router not found - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:86:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:64:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 11:03:36 error: TypeError: error is not a constructor - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:103:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:64:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 11:03:52 info: Client connected: Apuw1jNLeCsHo599AAAB -2026-06-22 11:04:40 info: Client connected: 6Vrt8r_LjILyzwNkAAAB -2026-06-22 11:04:51 info: Client connected: b5J1RRoenj6vwyerAAAB -2026-06-22 11:04:51 info: Create room started -2026-06-22 11:04:51 info: Creating worker started -2026-06-22 11:04:51 info: Worker created successfully -2026-06-22 11:04:51 info: Creation of router started -2026-06-22 11:04:51 info: Router created -2026-06-22 11:04:51 info: Creation of room successfully executed -2026-06-22 11:04:51 info: Get room started -2026-06-22 11:04:51 info: Get room executed successfully -2026-06-22 11:04:51 info: Broadcaster added to the room -2026-06-22 11:04:51 info: Room created successfully -2026-06-22 11:04:51 info: Get getRouterRtpCapabilities started -2026-06-22 11:04:51 info: Fetching of router started -2026-06-22 11:04:51 error: Error founding the router -2026-06-22 11:04:52 error: Error: Router not found - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:86:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:65:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 11:04:52 error: TypeError: error is not a constructor - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:103:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:65:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 11:06:32 info: Client connected: n-C34Txt_wJOX2SlAAAB -2026-06-22 11:07:15 info: Client connected: P8RyjWRSCy5Tb5ZFAAAB -2026-06-22 11:07:15 info: Create room started -2026-06-22 11:07:15 info: Creating worker started -2026-06-22 11:07:15 info: Worker created successfully -2026-06-22 11:07:15 info: Creation of router started -2026-06-22 11:07:15 info: Router created -2026-06-22 11:07:15 info: Creation of room successfully executed -2026-06-22 11:07:15 info: Get room started -2026-06-22 11:07:15 info: Get room executed successfully -2026-06-22 11:07:15 info: Broadcaster added to the room -2026-06-22 11:07:15 info: Room created successfully -2026-06-22 11:07:15 info: Get getRouterRtpCapabilities started -2026-06-22 11:07:15 info: Fetching of router started -2026-06-22 11:07:15 info: Fetching of router executed successfully -2026-06-22 11:07:15 info: Rtp capabilities fetched successfully -2026-06-22 11:07:15 info: Get room started -2026-06-22 11:07:15 info: Get room executed successfully -2026-06-22 11:07:15 info: Transport created : 68f27333-5da3-443b-8343-1f393b45c23f -2026-06-22 11:07:15 info: Get room started -2026-06-22 11:07:15 info: Get room executed successfully -2026-06-22 11:07:23 info: Connect broadcaster transport listener started -2026-06-22 11:07:23 info: Get room started -2026-06-22 11:07:23 info: Get room executed successfully -2026-06-22 11:07:23 info: Connect broadcaster transport executed successfully -2026-06-22 11:07:23 info: Transport ICE state changed -2026-06-22 11:07:23 info: Transport DTLS state changed -2026-06-22 11:07:23 info: Producer listener started -2026-06-22 11:07:23 info: Get room started -2026-06-22 11:07:23 info: Get room executed successfully -2026-06-22 11:07:23 info: Producer listener executed successfully: -2026-06-22 11:07:23 info: Transport DTLS state changed -2026-06-22 11:07:24 info: Producer listener started -2026-06-22 11:07:24 info: Get room started -2026-06-22 11:07:24 info: Get room executed successfully -2026-06-22 11:07:24 info: Producer listener executed successfully: -2026-06-25 23:23:58 info: Client connected: 7pjmpbLX6xgdt2yxAAAB -2026-06-25 23:24:03 info: Create room started -2026-06-25 23:24:03 info: Creating worker started -2026-06-25 23:24:04 info: Worker created successfully -2026-06-25 23:24:04 info: Creation of router started -2026-06-25 23:24:04 info: Router created -2026-06-25 23:24:04 info: Creation of room successfully executed -2026-06-25 23:24:04 info: Get room started -2026-06-25 23:24:04 info: Get room executed successfully -2026-06-25 23:24:04 info: Broadcaster added to the room -2026-06-25 23:24:04 info: Room created successfully -2026-06-25 23:24:04 info: Get getRouterRtpCapabilities started -2026-06-25 23:24:04 info: Fetching of router started -2026-06-25 23:24:04 info: Fetching of router executed successfully -2026-06-25 23:24:04 info: Rtp capabilities fetched successfully -2026-06-25 23:24:04 info: Get room started -2026-06-25 23:24:04 info: Get room executed successfully -2026-06-25 23:24:04 info: Transport created : 12556bfe-f7f5-4b1b-8bdf-f695953abbbf -2026-06-25 23:24:04 info: Get room started -2026-06-25 23:24:04 info: Get room executed successfully -2026-06-25 23:24:12 info: Connect broadcaster transport listener started -2026-06-25 23:24:12 info: Get room started -2026-06-25 23:24:12 info: Get room executed successfully -2026-06-25 23:24:12 info: Connect broadcaster transport executed successfully -2026-06-25 23:24:12 info: Transport ICE state changed -2026-06-25 23:24:12 info: Transport DTLS state changed -2026-06-25 23:24:12 info: Producer listener started -2026-06-25 23:24:12 info: Get room started -2026-06-25 23:24:12 info: Get room executed successfully -2026-06-25 23:24:12 info: Transport DTLS state changed -2026-06-25 23:24:12 info: Producer listener executed successfully: -2026-06-25 23:24:12 info: Producer listener started -2026-06-25 23:24:12 info: Get room started -2026-06-25 23:24:12 info: Get room executed successfully -2026-06-25 23:24:12 info: Producer listener executed successfully: -2026-06-25 23:24:22 info: Client connected: uLO86VqnD78WwLW7AAAD -2026-06-25 23:24:49 info: Join as viewer listner started -2026-06-25 23:24:49 info: Get room started -2026-06-25 23:24:49 info: Get room executed successfully -2026-06-25 23:24:49 info: Viewer joined the room -2026-06-25 23:24:49 error: Router not found -2026-06-25 23:24:49 error: Error: Router not found - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:30:15) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-06-25 23:25:23 info: User disconnected uLO86VqnD78WwLW7AAAD beacuse of transport close -2026-06-25 23:25:24 info: User disconnected 7pjmpbLX6xgdt2yxAAAB beacuse of transport close -2026-06-25 23:25:24 info: Transport DTLS state changed -2026-06-25 23:28:02 info: Client connected: LGQa3nHPqfSc5zUDAAAB -2026-06-25 23:28:03 info: Create room started -2026-06-25 23:28:03 info: Creating worker started -2026-06-25 23:28:03 info: Worker created successfully -2026-06-25 23:28:03 info: Creation of router started -2026-06-25 23:28:03 info: Router created -2026-06-25 23:28:03 info: Creation of room successfully executed -2026-06-25 23:28:03 info: Get room started -2026-06-25 23:28:03 info: Get room executed successfully -2026-06-25 23:28:03 info: Broadcaster added to the room -2026-06-25 23:28:03 info: Room created successfully -2026-06-25 23:28:03 info: Get getRouterRtpCapabilities started -2026-06-25 23:28:03 info: Fetching of router started -2026-06-25 23:28:03 info: Fetching of router executed successfully -2026-06-25 23:28:03 info: Rtp capabilities fetched successfully -2026-06-25 23:28:03 info: Get room started -2026-06-25 23:28:03 info: Get room executed successfully -2026-06-25 23:28:03 info: Transport created : a98ac487-e437-4f5d-b885-f38cb2acebe6 -2026-06-25 23:28:03 info: Get room started -2026-06-25 23:28:03 info: Get room executed successfully -2026-06-25 23:28:06 info: Connect broadcaster transport listener started -2026-06-25 23:28:06 info: Get room started -2026-06-25 23:28:06 info: Get room executed successfully -2026-06-25 23:28:06 info: Connect broadcaster transport executed successfully -2026-06-25 23:28:06 info: Transport ICE state changed -2026-06-25 23:28:06 info: Transport DTLS state changed -2026-06-25 23:28:06 info: Producer listener started -2026-06-25 23:28:06 info: Get room started -2026-06-25 23:28:06 info: Get room executed successfully -2026-06-25 23:28:06 info: Producer listener executed successfully: -2026-06-25 23:28:06 info: Transport DTLS state changed -2026-06-25 23:28:06 info: Producer listener started -2026-06-25 23:28:06 info: Get room started -2026-06-25 23:28:06 info: Get room executed successfully -2026-06-25 23:28:06 info: Producer listener executed successfully: -2026-06-25 23:28:19 info: Client connected: QDxldzLDiqlsYgL4AAAD -2026-06-25 23:28:21 info: Join as viewer listner started -2026-06-25 23:28:21 info: Get room started -2026-06-25 23:28:21 info: Get room executed successfully -2026-06-25 23:28:21 info: Viewer joined the room -2026-06-25 23:28:21 error: Router not found -2026-06-25 23:28:21 error: Error: Router not found - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:32:15) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-06-25 23:30:19 info: Client connected: uEvPKEIGeB5nTWJjAAAB -2026-06-25 23:30:20 info: Client connected: ZLsQ-flQX4cC3MsmAAAD -2026-06-25 23:30:22 info: Create room started -2026-06-25 23:30:22 info: Creating worker started -2026-06-25 23:30:22 info: Worker created successfully -2026-06-25 23:30:22 info: Creation of router started -2026-06-25 23:30:22 info: Router created -2026-06-25 23:30:22 info: Creation of room successfully executed -2026-06-25 23:30:22 info: Get room started -2026-06-25 23:30:22 info: Get room executed successfully -2026-06-25 23:30:22 info: Broadcaster added to the room -2026-06-25 23:30:22 info: Room created successfully -2026-06-25 23:30:22 info: Get getRouterRtpCapabilities started -2026-06-25 23:30:22 info: Fetching of router started -2026-06-25 23:30:22 info: Fetching of router executed successfully -2026-06-25 23:30:22 info: Rtp capabilities fetched successfully -2026-06-25 23:30:22 info: Get room started -2026-06-25 23:30:22 info: Get room executed successfully -2026-06-25 23:30:22 info: Transport created : a59d261a-a8db-4afe-bd21-142b7cc46cb7 -2026-06-25 23:30:22 info: Get room started -2026-06-25 23:30:22 info: Get room executed successfully -2026-06-25 23:30:22 info: Connect broadcaster transport listener started -2026-06-25 23:30:22 info: Get room started -2026-06-25 23:30:22 info: Get room executed successfully -2026-06-25 23:30:22 info: Connect broadcaster transport executed successfully -2026-06-25 23:30:22 info: Transport ICE state changed -2026-06-25 23:30:22 info: Transport DTLS state changed -2026-06-25 23:30:22 info: Producer listener started -2026-06-25 23:30:22 info: Get room started -2026-06-25 23:30:22 info: Get room executed successfully -2026-06-25 23:30:22 info: Producer listener executed successfully: -2026-06-25 23:30:22 info: Transport DTLS state changed -2026-06-25 23:30:22 info: Producer listener started -2026-06-25 23:30:22 info: Get room started -2026-06-25 23:30:22 info: Get room executed successfully -2026-06-25 23:30:22 info: Producer listener executed successfully: -2026-06-25 23:30:29 info: Join as viewer listner started -2026-06-25 23:30:29 info: Get room started -2026-06-25 23:30:29 info: Get room executed successfully -2026-06-25 23:30:29 info: Viewer joined the room -2026-06-25 23:30:29 info: Fetching of router started -2026-06-25 23:30:29 info: Fetching of router executed successfully -2026-06-25 23:30:29 info: Join viewer listner successfully executed -2026-06-25 23:30:45 info: Join as viewer listner started -2026-06-25 23:30:45 info: Get room started -2026-06-25 23:30:45 info: Get room executed successfully -2026-06-25 23:30:45 info: Viewer joined the room -2026-06-25 23:30:45 info: Fetching of router started -2026-06-25 23:30:45 info: Fetching of router executed successfully -2026-06-25 23:30:45 info: Join viewer listner successfully executed -2026-06-25 23:30:46 info: Join as viewer listner started -2026-06-25 23:30:46 info: Get room started -2026-06-25 23:30:46 info: Get room executed successfully -2026-06-25 23:30:46 info: Viewer joined the room -2026-06-25 23:30:46 info: Fetching of router started -2026-06-25 23:30:46 info: Fetching of router executed successfully -2026-06-25 23:30:46 info: Join viewer listner successfully executed -2026-06-25 23:30:47 info: Join as viewer listner started -2026-06-25 23:30:47 info: Get room started -2026-06-25 23:30:47 info: Get room executed successfully -2026-06-25 23:30:47 info: Viewer joined the room -2026-06-25 23:30:47 info: Fetching of router started -2026-06-25 23:30:47 info: Fetching of router executed successfully -2026-06-25 23:30:47 info: Join viewer listner successfully executed -2026-06-25 23:30:47 info: Join as viewer listner started -2026-06-25 23:30:47 info: Get room started -2026-06-25 23:30:47 info: Get room executed successfully -2026-06-25 23:30:47 info: Viewer joined the room -2026-06-25 23:30:47 info: Fetching of router started -2026-06-25 23:30:47 info: Fetching of router executed successfully -2026-06-25 23:30:47 info: Join viewer listner successfully executed -2026-06-25 23:30:47 info: Join as viewer listner started -2026-06-25 23:30:47 info: Get room started -2026-06-25 23:30:47 info: Get room executed successfully -2026-06-25 23:30:47 info: Viewer joined the room -2026-06-25 23:30:47 info: Fetching of router started -2026-06-25 23:30:47 info: Fetching of router executed successfully -2026-06-25 23:30:47 info: Join viewer listner successfully executed -2026-06-25 23:30:47 info: Join as viewer listner started -2026-06-25 23:30:47 info: Get room started -2026-06-25 23:30:47 info: Get room executed successfully -2026-06-25 23:30:47 info: Viewer joined the room -2026-06-25 23:30:47 info: Fetching of router started -2026-06-25 23:30:47 info: Fetching of router executed successfully -2026-06-25 23:30:47 info: Join viewer listner successfully executed -2026-06-25 23:30:47 info: Join as viewer listner started -2026-06-25 23:30:47 info: Get room started -2026-06-25 23:30:47 info: Get room executed successfully -2026-06-25 23:30:47 info: Viewer joined the room -2026-06-25 23:30:47 info: Fetching of router started -2026-06-25 23:30:47 info: Fetching of router executed successfully -2026-06-25 23:30:47 info: Join viewer listner successfully executed -2026-06-25 23:33:48 info: User disconnected ZLsQ-flQX4cC3MsmAAAD beacuse of transport close -2026-06-25 23:33:49 info: User disconnected uEvPKEIGeB5nTWJjAAAB beacuse of transport close -2026-06-25 23:33:49 info: Transport DTLS state changed -2026-06-25 23:47:02 info: Client connected: wUcPpaP3Gz4VNigDAAAB -2026-06-25 23:47:05 info: Client connected: _BeYPcqmooLopjGQAAAD -2026-06-25 23:47:07 info: Create room started -2026-06-25 23:47:07 info: Creating worker started -2026-06-25 23:47:07 info: Worker created successfully -2026-06-25 23:47:07 info: Creation of router started -2026-06-25 23:47:07 info: Router created -2026-06-25 23:47:07 info: Creation of room successfully executed -2026-06-25 23:47:07 info: Get room started -2026-06-25 23:47:07 info: Get room executed successfully -2026-06-25 23:47:07 info: Broadcaster added to the room -2026-06-25 23:47:07 info: Room created successfully -2026-06-25 23:47:07 info: Get getRouterRtpCapabilities started -2026-06-25 23:47:07 info: Fetching of router started -2026-06-25 23:47:07 info: Fetching of router executed successfully -2026-06-25 23:47:07 info: Rtp capabilities fetched successfully -2026-06-25 23:47:07 info: Get room started -2026-06-25 23:47:07 info: Get room executed successfully -2026-06-25 23:47:07 info: Transport created : 618d91cd-7baf-4a97-9096-b8fdb200adda -2026-06-25 23:47:07 info: Get room started -2026-06-25 23:47:07 info: Get room executed successfully -2026-06-25 23:47:07 info: Connect broadcaster transport listener started -2026-06-25 23:47:07 info: Get room started -2026-06-25 23:47:07 info: Get room executed successfully -2026-06-25 23:47:07 info: Connect broadcaster transport executed successfully -2026-06-25 23:47:07 info: Transport ICE state changed -2026-06-25 23:47:07 info: Transport DTLS state changed -2026-06-25 23:47:07 info: Producer listener started -2026-06-25 23:47:07 info: Get room started -2026-06-25 23:47:07 info: Get room executed successfully -2026-06-25 23:47:07 info: Producer listener executed successfully: -2026-06-25 23:47:07 info: Transport DTLS state changed -2026-06-25 23:47:07 info: Producer listener started -2026-06-25 23:47:07 info: Get room started -2026-06-25 23:47:07 info: Get room executed successfully -2026-06-25 23:47:07 info: Producer listener executed successfully: -2026-06-25 23:47:13 info: Join as viewer listner started -2026-06-25 23:47:13 info: Get room started -2026-06-25 23:47:13 info: Get room executed successfully -2026-06-25 23:47:13 info: Viewer joined the room -2026-06-25 23:47:13 info: Get room started -2026-06-25 23:47:13 info: Get room executed successfully -2026-06-25 23:47:13 info: Fetching of router started -2026-06-25 23:47:13 info: Fetching of router executed successfully -2026-06-25 23:47:13 info: Join viewer listner successfully executed -2026-06-25 23:48:12 info: User disconnected _BeYPcqmooLopjGQAAAD beacuse of transport close -2026-06-25 23:48:12 info: Client connected: 3992mDcndrtx58zTAAAF -2026-06-25 23:48:18 info: Join as viewer listner started -2026-06-25 23:48:18 info: Get room started -2026-06-25 23:48:18 info: Get room executed successfully -2026-06-25 23:48:18 info: Viewer joined the room -2026-06-25 23:48:18 info: Get room started -2026-06-25 23:48:18 info: Get room executed successfully -2026-06-25 23:48:18 info: Fetching of router started -2026-06-25 23:48:18 info: Fetching of router executed successfully -2026-06-25 23:48:18 info: Join viewer listner successfully executed -2026-06-25 23:48:35 info: User disconnected 3992mDcndrtx58zTAAAF beacuse of transport close -2026-06-25 23:48:35 info: Client connected: uL1dCMiLapowFu7mAAAH -2026-06-25 23:48:37 info: Join as viewer listner started -2026-06-25 23:48:37 info: Get room started -2026-06-25 23:48:37 info: Get room executed successfully -2026-06-25 23:48:37 info: Viewer joined the room -2026-06-25 23:48:37 info: Get room started -2026-06-25 23:48:37 info: Get room executed successfully -2026-06-25 23:48:37 info: Fetching of router started -2026-06-25 23:48:37 info: Fetching of router executed successfully -2026-06-25 23:48:37 info: Join viewer listner successfully executed -2026-06-25 23:52:14 info: User disconnected uL1dCMiLapowFu7mAAAH beacuse of transport close -2026-06-25 23:52:14 info: Client connected: 7qbW2ikLaiMWkf0TAAAJ -2026-06-25 23:52:24 info: Join as viewer listner started -2026-06-25 23:52:24 info: Get room started -2026-06-25 23:52:24 info: Get room executed successfully -2026-06-25 23:52:24 info: Viewer joined the room -2026-06-25 23:52:24 info: Get room started -2026-06-25 23:52:24 info: Get room executed successfully -2026-06-25 23:52:24 info: Fetching of router started -2026-06-25 23:52:24 info: Fetching of router executed successfully -2026-06-25 23:52:24 info: Join viewer listner successfully executed -2026-06-25 23:54:22 info: User disconnected 7qbW2ikLaiMWkf0TAAAJ beacuse of transport close -2026-06-25 23:54:23 info: Client connected: torpHbJ2JlGbaDgbAAAL -2026-06-25 23:54:28 info: Join as viewer listner started -2026-06-25 23:54:28 info: Get room started -2026-06-25 23:54:28 info: Get room executed successfully -2026-06-25 23:54:28 info: Viewer joined the room -2026-06-25 23:54:28 info: Get room started -2026-06-25 23:54:28 info: Get room executed successfully -2026-06-25 23:54:28 info: Fetching of router started -2026-06-25 23:54:28 info: Fetching of router executed successfully -2026-06-25 23:54:28 info: Join viewer listner successfully executed -2026-06-25 23:54:52 info: User disconnected wUcPpaP3Gz4VNigDAAAB beacuse of transport close -2026-06-25 23:54:52 info: User disconnected torpHbJ2JlGbaDgbAAAL beacuse of transport close -2026-06-25 23:54:52 info: Transport DTLS state changed -2026-06-25 23:54:52 info: Client connected: Pet97jLwQTCWj_FFAAAO -2026-06-25 23:54:52 info: Client connected: TPdl-t0jgkaUzajzAAAP -2026-06-25 23:55:17 info: Transport ICE state changed -2026-06-25 23:56:51 info: User disconnected TPdl-t0jgkaUzajzAAAP beacuse of transport close -2026-06-25 23:56:51 info: Client connected: zt8UkplQIk3tVQzwAAAR -2026-06-25 23:56:53 info: Create room started -2026-06-25 23:56:53 info: Creating worker started -2026-06-25 23:56:53 info: Worker created successfully -2026-06-25 23:56:53 info: Creation of router started -2026-06-25 23:56:53 info: Router created -2026-06-25 23:56:53 info: Creation of room successfully executed -2026-06-25 23:56:53 info: Get room started -2026-06-25 23:56:53 info: Get room executed successfully -2026-06-25 23:56:53 info: Broadcaster added to the room -2026-06-25 23:56:53 info: Room created successfully -2026-06-25 23:56:53 info: Get getRouterRtpCapabilities started -2026-06-25 23:56:53 info: Fetching of router started -2026-06-25 23:56:53 info: Fetching of router executed successfully -2026-06-25 23:56:53 info: Rtp capabilities fetched successfully -2026-06-25 23:56:53 info: Get room started -2026-06-25 23:56:53 info: Get room executed successfully -2026-06-25 23:56:53 info: Transport created : 7d31976f-2cfc-4523-a29a-86763a0e2c08 -2026-06-25 23:56:53 info: Get room started -2026-06-25 23:56:53 info: Get room executed successfully -2026-06-25 23:56:53 info: Connect broadcaster transport listener started -2026-06-25 23:56:53 info: Get room started -2026-06-25 23:56:53 info: Get room executed successfully -2026-06-25 23:56:53 info: Connect broadcaster transport executed successfully -2026-06-25 23:56:53 info: Transport ICE state changed -2026-06-25 23:56:53 info: Transport DTLS state changed -2026-06-25 23:56:53 info: Producer listener started -2026-06-25 23:56:53 info: Get room started -2026-06-25 23:56:53 info: Get room executed successfully -2026-06-25 23:56:53 info: Producer listener executed successfully: -2026-06-25 23:56:53 info: Transport DTLS state changed -2026-06-25 23:56:53 info: Producer listener started -2026-06-25 23:56:53 info: Get room started -2026-06-25 23:56:53 info: Get room executed successfully -2026-06-25 23:56:53 info: Producer listener executed successfully: -2026-06-25 23:56:59 info: Join as viewer listner started -2026-06-25 23:56:59 info: Get room started -2026-06-25 23:56:59 info: Get room executed successfully -2026-06-25 23:56:59 info: Viewer joined the room -2026-06-25 23:56:59 info: Get room started -2026-06-25 23:56:59 info: Get room executed successfully -2026-06-25 23:56:59 info: Fetching of router started -2026-06-25 23:56:59 info: Fetching of router executed successfully -2026-06-25 23:56:59 info: Join viewer listner successfully executed -2026-06-25 23:57:18 info: User disconnected Pet97jLwQTCWj_FFAAAO beacuse of transport close -2026-06-25 23:57:18 info: Client connected: G1xmNrP6yOZyiSAWAAAT -2026-06-25 23:57:19 info: Join as viewer listner started -2026-06-25 23:57:19 info: Get room started -2026-06-25 23:57:19 info: Get room executed successfully -2026-06-25 23:57:19 info: Viewer joined the room -2026-06-25 23:57:19 info: Get room started -2026-06-25 23:57:19 info: Get room executed successfully -2026-06-25 23:57:19 info: Fetching of router started -2026-06-25 23:57:19 info: Fetching of router executed successfully -2026-06-25 23:57:19 info: Join viewer listner successfully executed -2026-06-25 23:59:24 info: User disconnected G1xmNrP6yOZyiSAWAAAT beacuse of transport close -2026-06-25 23:59:24 info: Client connected: xGtZDC4tlGRByoR2AAAV -2026-06-25 23:59:32 info: Join as viewer listner started -2026-06-25 23:59:32 info: Get room started -2026-06-25 23:59:32 info: Get room executed successfully -2026-06-25 23:59:32 info: Viewer joined the room -2026-06-25 23:59:32 info: Get room started -2026-06-25 23:59:32 info: Get room executed successfully -2026-06-25 23:59:32 info: Fetching of router started -2026-06-25 23:59:32 info: Fetching of router executed successfully -2026-06-25 23:59:32 info: Join viewer listner successfully executed -2026-06-25 23:59:32 info: Create viewer transport listner started -2026-06-25 23:59:32 info: Get room started -2026-06-25 23:59:32 info: Get room executed successfully -2026-06-25 23:59:32 info: Get room started -2026-06-25 23:59:32 info: Get room executed successfully -2026-06-25 23:59:32 info: Transport created : d898b2eb-1ba5-4cf9-9c9f-34f005afd600 -2026-06-25 23:59:32 info: Viewer transport successfully created -2026-06-25 23:59:32 info: Create viewer transport listner successfully executed -2026-06-25 23:59:32 info: Consume lister started -2026-06-25 23:59:32 info: Get room started -2026-06-25 23:59:32 info: Get room executed successfully -2026-06-25 23:59:32 info: Get room started -2026-06-25 23:59:32 info: Get room executed successfully -2026-06-25 23:59:32 info: Get room started -2026-06-25 23:59:32 info: Get room executed successfully -2026-06-25 23:59:32 info: Viewer media consume successfully executed -2026-06-25 23:59:32 info: Consume lister executed successfully -2026-06-25 23:59:32 info: Connect consumer listner started -2026-06-25 23:59:32 info: Get room started -2026-06-25 23:59:32 info: Get room executed successfully -2026-06-25 23:59:32 info: Consumer transport connected successfully -2026-06-25 23:59:32 info: Connect consumer listner executed successfully -2026-06-25 23:59:32 info: Transport ICE state changed -2026-06-25 23:59:32 info: Transport DTLS state changed -2026-06-25 23:59:32 info: Transport DTLS state changed -2026-06-25 23:59:32 info: Get room started -2026-06-26 00:00:57 info: Client connected: fEn_YZhpb5JVOsA_AAAB -2026-06-26 00:00:58 info: Create room started -2026-06-26 00:00:58 info: Creating worker started -2026-06-26 00:00:58 info: Worker created successfully -2026-06-26 00:00:58 info: Creation of router started -2026-06-26 00:00:58 info: Router created -2026-06-26 00:00:58 info: Creation of room successfully executed -2026-06-26 00:00:58 info: Get room started -2026-06-26 00:00:58 info: Get room executed successfully -2026-06-26 00:00:58 info: Broadcaster added to the room -2026-06-26 00:00:58 info: Room created successfully -2026-06-26 00:00:58 info: Get getRouterRtpCapabilities started -2026-06-26 00:00:58 info: Fetching of router started -2026-06-26 00:00:58 info: Fetching of router executed successfully -2026-06-26 00:00:58 info: Rtp capabilities fetched successfully -2026-06-26 00:00:58 info: Get room started -2026-06-26 00:00:58 info: Get room executed successfully -2026-06-26 00:00:58 info: Transport created : 3640d8ab-41f0-4897-a176-94ea3353e90d -2026-06-26 00:00:58 info: Get room started -2026-06-26 00:00:58 info: Get room executed successfully -2026-06-26 00:00:59 info: Connect broadcaster transport listener started -2026-06-26 00:00:59 info: Get room started -2026-06-26 00:00:59 info: Get room executed successfully -2026-06-26 00:00:59 info: Connect broadcaster transport executed successfully -2026-06-26 00:00:59 info: Transport ICE state changed -2026-06-26 00:00:59 info: Transport DTLS state changed -2026-06-26 00:00:59 info: Producer listener started -2026-06-26 00:00:59 info: Get room started -2026-06-26 00:00:59 info: Get room executed successfully -2026-06-26 00:00:59 info: Producer listener executed successfully: -2026-06-26 00:00:59 info: Transport DTLS state changed -2026-06-26 00:00:59 info: Producer listener started -2026-06-26 00:00:59 info: Get room started -2026-06-26 00:00:59 info: Get room executed successfully -2026-06-26 00:00:59 info: Producer listener executed successfully: -2026-06-26 00:01:06 info: Client connected: e5RlpY8Cp97RkbS3AAAD -2026-06-26 00:01:09 info: Join as viewer listner started -2026-06-26 00:01:09 info: Get room started -2026-06-26 00:01:09 info: Get room executed successfully -2026-06-26 00:01:09 info: Viewer joined the room -2026-06-26 00:01:09 info: Get room started -2026-06-26 00:01:09 info: Get room executed successfully -2026-06-26 00:01:09 info: Fetching of router started -2026-06-26 00:01:09 info: Fetching of router executed successfully -2026-06-26 00:01:09 info: Join viewer listner successfully executed -2026-06-26 00:01:09 info: Create viewer transport listner started -2026-06-26 00:01:09 info: Get room started -2026-06-26 00:01:09 info: Get room executed successfully -2026-06-26 00:01:09 info: Get room started -2026-06-26 00:01:09 info: Get room executed successfully -2026-06-26 00:01:09 info: Transport created : a9078aaf-ec01-4b0e-a708-8d0fd7bc8f19 -2026-06-26 00:01:09 info: Viewer transport successfully created -2026-06-26 00:01:09 info: Create viewer transport listner successfully executed -2026-06-26 00:01:09 info: Consume lister started -2026-06-26 00:01:09 info: Get room started -2026-06-26 00:01:09 info: Get room executed successfully -2026-06-26 00:01:09 info: Get room started -2026-06-26 00:01:09 info: Get room executed successfully -2026-06-26 00:01:09 info: Get room started -2026-06-26 00:01:09 info: Get room executed successfully -2026-06-26 00:01:09 info: Viewer media consume successfully executed -2026-06-26 00:01:09 info: Consume lister executed successfully -2026-06-26 00:01:09 info: Connect consumer listner started -2026-06-26 00:01:09 info: Get room started -2026-06-26 00:01:09 info: Get room executed successfully -2026-06-26 00:01:09 info: Consumer transport connected successfully -2026-06-26 00:01:09 info: Connect consumer listner executed successfully -2026-06-26 00:01:09 info: Transport ICE state changed -2026-06-26 00:01:09 info: Transport DTLS state changed -2026-06-26 00:01:09 info: Transport DTLS state changed -2026-06-26 00:01:09 info: Get room started -2026-06-26 00:14:45 info: Client connected: rGpNc1MDpoYZDxcgAAAB -2026-06-26 00:14:48 info: Client connected: ZzGEyazDTHmhVT-yAAAD -2026-06-26 00:14:51 info: Create room started -2026-06-26 00:14:51 info: Creating worker started -2026-06-26 00:14:51 info: Worker created successfully -2026-06-26 00:14:51 info: Creation of router started -2026-06-26 00:14:51 info: Router created -2026-06-26 00:14:51 info: Creation of room successfully executed -2026-06-26 00:14:51 info: Get room started -2026-06-26 00:14:51 info: Get room executed successfully -2026-06-26 00:14:51 info: Broadcaster added to the room -2026-06-26 00:14:51 info: Room created successfully -2026-06-26 00:14:51 info: Get getRouterRtpCapabilities started -2026-06-26 00:14:51 info: Fetching of router started -2026-06-26 00:14:51 info: Fetching of router executed successfully -2026-06-26 00:14:51 info: Rtp capabilities fetched successfully -2026-06-26 00:14:51 info: Get room started -2026-06-26 00:14:51 info: Get room executed successfully -2026-06-26 00:14:51 info: Transport created : cc3b6f00-6c21-4863-a4a0-1424b213be73 -2026-06-26 00:14:51 info: Get room started -2026-06-26 00:14:51 info: Get room executed successfully -2026-06-26 00:14:51 info: Connect broadcaster transport listener started -2026-06-26 00:14:51 info: Get room started -2026-06-26 00:14:51 info: Get room executed successfully -2026-06-26 00:14:51 info: Connect broadcaster transport executed successfully -2026-06-26 00:14:51 info: Transport ICE state changed -2026-06-26 00:14:51 info: Transport DTLS state changed -2026-06-26 00:14:51 info: Producer listener started -2026-06-26 00:14:51 info: Get room started -2026-06-26 00:14:51 info: Get room executed successfully -2026-06-26 00:14:51 info: Producer listener executed successfully: -2026-06-26 00:14:51 info: Transport DTLS state changed -2026-06-26 00:14:51 info: Producer listener started -2026-06-26 00:14:51 info: Get room started -2026-06-26 00:14:51 info: Get room executed successfully -2026-06-26 00:14:51 info: Producer listener executed successfully: -2026-06-26 00:14:55 info: Join as viewer listner started -2026-06-26 00:14:55 info: Get room started -2026-06-26 00:14:55 info: Get room executed successfully -2026-06-26 00:14:55 info: Viewer joined the room -2026-06-26 00:14:55 info: Get room started -2026-06-26 00:14:55 info: Get room executed successfully -2026-06-26 00:14:55 info: Fetching of router started -2026-06-26 00:14:55 info: Fetching of router executed successfully -2026-06-26 00:14:55 info: Join viewer listner successfully executed -2026-06-26 00:14:55 info: Create viewer transport listner started -2026-06-26 00:14:55 info: Get room started -2026-06-26 00:14:55 info: Get room executed successfully -2026-06-26 00:14:55 info: Get room started -2026-06-26 00:14:55 info: Get room executed successfully -2026-06-26 00:14:55 info: Transport created : 9a65f61c-8ccf-4e7a-930e-4e9c3c9e21dd -2026-06-26 00:14:55 info: Viewer transport successfully created -2026-06-26 00:14:55 info: Create viewer transport listner successfully executed -2026-06-26 00:14:55 info: Consume lister started -2026-06-26 00:14:55 info: Get room started -2026-06-26 00:14:55 info: Get room executed successfully -2026-06-26 00:14:55 info: Get room started -2026-06-26 00:14:55 info: Get room executed successfully -2026-06-26 00:14:55 info: Get room started -2026-06-26 00:14:55 info: Get room executed successfully -2026-06-26 00:14:55 info: Viewer media consume successfully executed -2026-06-26 00:14:55 info: Consume lister executed successfully -2026-06-26 00:14:55 info: Connect consumer listner started -2026-06-26 00:14:55 info: Get room started -2026-06-26 00:14:55 info: Get room executed successfully -2026-06-26 00:14:55 info: Consumer transport connected successfully -2026-06-26 00:14:55 info: Connect consumer listner executed successfully -2026-06-26 00:14:55 info: Transport ICE state changed -2026-06-26 00:14:55 info: Transport DTLS state changed -2026-06-26 00:14:55 info: Transport DTLS state changed -2026-06-26 00:14:55 info: Get room started -2026-06-26 00:15:28 info: Client connected: ran_AoUbA7tv-DR7AAAB -2026-06-26 00:15:34 info: Client connected: _dJXsArr1wfUBdh0AAAB -2026-06-26 00:15:36 info: Client connected: 1wCdEUbLaCC4YiJuAAAD -2026-06-26 00:16:48 info: Client connected: XVnlCY5ML6ghdlNMAAAB -2026-06-26 00:16:52 info: Client connected: nQHht6hY0ezZHSb_AAAD -2026-06-26 00:17:09 info: Create room started -2026-06-26 00:17:09 info: Creating worker started -2026-06-26 00:17:09 info: Worker created successfully -2026-06-26 00:17:09 info: Creation of router started -2026-06-26 00:17:09 info: Router created -2026-06-26 00:17:09 info: Creation of room successfully executed -2026-06-26 00:17:09 info: Get room started -2026-06-26 00:17:09 info: Get room executed successfully -2026-06-26 00:17:09 info: Broadcaster added to the room -2026-06-26 00:17:09 info: Room created successfully -2026-06-26 00:17:09 info: Get getRouterRtpCapabilities started -2026-06-26 00:17:09 info: Fetching of router started -2026-06-26 00:17:09 info: Fetching of router executed successfully -2026-06-26 00:17:09 info: Rtp capabilities fetched successfully -2026-06-26 00:17:09 info: Get room started -2026-06-26 00:17:09 info: Get room executed successfully -2026-06-26 00:17:09 info: Transport created : a1be3eb2-5f4f-43cf-81c9-abb12cc388d0 -2026-06-26 00:17:09 info: Get room started -2026-06-26 00:17:09 info: Get room executed successfully -2026-06-26 00:17:10 info: Connect broadcaster transport listener started -2026-06-26 00:17:10 info: Get room started -2026-06-26 00:17:10 info: Get room executed successfully -2026-06-26 00:17:10 info: Connect broadcaster transport executed successfully -2026-06-26 00:17:10 info: Transport ICE state changed -2026-06-26 00:17:10 info: Transport DTLS state changed -2026-06-26 00:17:10 info: Producer listener started -2026-06-26 00:17:10 info: Get room started -2026-06-26 00:17:10 info: Get room executed successfully -2026-06-26 00:17:10 info: Producer listener executed successfully: -2026-06-26 00:17:10 info: Transport DTLS state changed -2026-06-26 00:17:10 info: Producer listener started -2026-06-26 00:17:10 info: Get room started -2026-06-26 00:17:10 info: Get room executed successfully -2026-06-26 00:17:10 info: Producer listener executed successfully: -2026-06-26 00:17:14 info: Join as viewer listner started -2026-06-26 00:17:14 info: Get room started -2026-06-26 00:17:14 info: Get room executed successfully -2026-06-26 00:17:14 info: Viewer joined the room -2026-06-26 00:17:14 info: Get room started -2026-06-26 00:17:14 info: Get room executed successfully -2026-06-26 00:17:14 info: Fetching of router started -2026-06-26 00:17:14 info: Fetching of router executed successfully -2026-06-26 00:17:14 info: Join viewer listner successfully executed -2026-06-26 00:17:14 info: Create viewer transport listner started -2026-06-26 00:17:14 info: Get room started -2026-06-26 00:17:14 info: Get room executed successfully -2026-06-26 00:17:14 info: Get room started -2026-06-26 00:17:14 info: Get room executed successfully -2026-06-26 00:17:14 info: Transport created : 89c34757-7814-4b34-968a-07a323f89e63 -2026-06-26 00:17:14 info: Viewer transport successfully created -2026-06-26 00:17:14 info: Create viewer transport listner successfully executed -2026-06-26 00:17:14 info: Consume lister started -2026-06-26 00:17:14 info: Get room started -2026-06-26 00:17:14 info: Get room executed successfully -2026-06-26 00:17:14 info: Get room started -2026-06-26 00:17:14 info: Get room executed successfully -2026-06-26 00:17:14 info: Get room started -2026-06-26 00:17:14 info: Get room executed successfully -2026-06-26 00:17:14 info: Viewer media consume successfully executed -2026-06-26 00:17:14 info: Consume lister executed successfully -2026-06-26 00:17:14 info: Connect consumer listner started -2026-06-26 00:17:14 info: Get room started -2026-06-26 00:17:14 info: Get room executed successfully -2026-06-26 00:17:14 info: Consumer transport connected successfully -2026-06-26 00:17:14 info: Connect consumer listner executed successfully -2026-06-26 00:17:14 info: Transport ICE state changed -2026-06-26 00:17:14 info: Transport DTLS state changed -2026-06-26 00:17:14 info: Transport DTLS state changed -2026-06-26 00:17:14 info: Get room started -2026-06-26 00:17:43 info: Client connected: KkCK8Owk1CcyJqvvAAAB -2026-06-26 00:17:45 info: Client connected: AZM7Z7Yt9MLfXbZPAAAD -2026-06-26 00:20:21 info: User disconnected KkCK8Owk1CcyJqvvAAAB beacuse of transport close -2026-06-26 00:20:22 info: User disconnected AZM7Z7Yt9MLfXbZPAAAD beacuse of transport close -2026-06-26 10:24:34 info: Client connected: qljVJOR3Xw7AkO_mAAAB -2026-06-26 10:24:38 info: Client connected: m7z2u3-PQyQjm15nAAAD -2026-06-26 10:24:42 info: Create room started -2026-06-26 10:24:42 info: Creating worker started -2026-06-26 10:24:42 info: Worker created successfully -2026-06-26 10:24:42 info: Creation of router started -2026-06-26 10:24:42 info: Router created -2026-06-26 10:24:42 info: Creation of room successfully executed -2026-06-26 10:24:42 info: Get room started -2026-06-26 10:24:42 info: Get room executed successfully -2026-06-26 10:24:42 info: Broadcaster added to the room -2026-06-26 10:24:42 info: Room created successfully -2026-06-26 10:24:42 info: Get getRouterRtpCapabilities started -2026-06-26 10:24:42 info: Fetching of router started -2026-06-26 10:24:42 info: Fetching of router executed successfully -2026-06-26 10:24:42 info: Rtp capabilities fetched successfully -2026-06-26 10:24:42 info: Get room started -2026-06-26 10:24:42 info: Get room executed successfully -2026-06-26 10:24:42 info: Transport created : 5bcb2045-53cb-4da2-b067-4a4b47086e9f -2026-06-26 10:24:42 info: Get room started -2026-06-26 10:24:42 info: Get room executed successfully -2026-06-26 10:24:45 info: Connect broadcaster transport listener started -2026-06-26 10:24:45 info: Get room started -2026-06-26 10:24:45 info: Get room executed successfully -2026-06-26 10:24:45 info: Connect broadcaster transport executed successfully -2026-06-26 10:24:45 info: Transport ICE state changed -2026-06-26 10:24:45 info: Transport DTLS state changed -2026-06-26 10:24:45 info: Producer listener started -2026-06-26 10:24:45 info: Get room started -2026-06-26 10:24:45 info: Get room executed successfully -2026-06-26 10:24:45 info: Transport DTLS state changed -2026-06-26 10:24:45 info: Producer listener executed successfully: -2026-06-26 10:24:45 info: Producer listener started -2026-06-26 10:24:45 info: Get room started -2026-06-26 10:24:45 info: Get room executed successfully -2026-06-26 10:24:45 info: Producer listener executed successfully: -2026-06-26 10:24:49 info: Join as viewer listner started -2026-06-26 10:24:49 info: Get room started -2026-06-26 10:24:49 info: Get room executed successfully -2026-06-26 10:24:49 info: Viewer joined the room -2026-06-26 10:24:49 info: Get room started -2026-06-26 10:24:49 info: Get room executed successfully -2026-06-26 10:24:49 info: Fetching of router started -2026-06-26 10:24:49 info: Fetching of router executed successfully -2026-06-26 10:24:49 info: Join viewer listner successfully executed -2026-06-26 10:24:49 info: Create viewer transport listner started -2026-06-26 10:24:49 info: Get room started -2026-06-26 10:24:49 info: Get room executed successfully -2026-06-26 10:24:49 info: Get room started -2026-06-26 10:24:49 info: Get room executed successfully -2026-06-26 10:24:49 info: Transport created : c3478ba5-ceb5-499e-b157-28a4e89fc618 -2026-06-26 10:24:49 info: Viewer transport successfully created -2026-06-26 10:24:49 info: Create viewer transport listner successfully executed -2026-06-26 10:24:49 info: Consume lister started -2026-06-26 10:24:49 info: Get room started -2026-06-26 10:24:49 info: Get room executed successfully -2026-06-26 10:24:49 info: Get room started -2026-06-26 10:24:49 info: Get room executed successfully -2026-06-26 10:24:49 info: Get room started -2026-06-26 10:24:49 info: Get room executed successfully -2026-06-26 10:24:49 info: Viewer media consume successfully executed -2026-06-26 10:24:49 info: Consume lister executed successfully -2026-06-26 10:24:49 info: Connect consumer listner started -2026-06-26 10:24:49 info: Get room started -2026-06-26 10:24:49 info: Get room executed successfully -2026-06-26 10:24:49 info: Consumer transport connected successfully -2026-06-26 10:24:49 info: Connect consumer listner executed successfully -2026-06-26 10:24:49 info: Transport ICE state changed -2026-06-26 10:24:49 info: Transport DTLS state changed -2026-06-26 10:24:49 info: Transport DTLS state changed -2026-06-26 10:24:49 info: Get room started -2026-06-26 10:24:49 info: Get room executed successfully -2026-06-26 10:24:49 info: Viewer consumer resumed -2026-06-26 10:24:49 info: Resume consumer listener executed successfully -2026-06-26 10:24:49 info: Get room started -2026-06-26 10:24:49 info: Get room executed successfully -2026-06-26 10:24:49 info: Viewer consumer resumed -2026-06-26 10:24:49 info: Resume consumer listener executed successfully -2026-06-26 10:25:01 info: Transport DTLS state changed -2026-06-26 10:25:01 info: User disconnected m7z2u3-PQyQjm15nAAAD beacuse of transport close -2026-06-26 10:25:02 info: User disconnected qljVJOR3Xw7AkO_mAAAB beacuse of transport close -2026-06-26 10:25:02 info: Transport DTLS state changed -2026-06-26 10:30:43 info: Client connected: UE1xWS8W2MSJAJB2AAAB -2026-06-26 10:30:45 info: Client connected: P2vEFCjNj-8aeaw9AAAD -2026-06-26 10:30:46 info: Create room started -2026-06-26 10:30:46 info: Creating worker started -2026-06-26 10:30:46 info: Worker created successfully -2026-06-26 10:30:46 info: Creation of router started -2026-06-26 10:30:46 info: Router created -2026-06-26 10:30:46 info: Creation of room successfully executed -2026-06-26 10:30:46 info: Get room started -2026-06-26 10:30:46 info: Get room executed successfully -2026-06-26 10:30:46 info: Broadcaster added to the room -2026-06-26 10:30:46 info: Room created successfully -2026-06-26 10:30:46 info: Get getRouterRtpCapabilities started -2026-06-26 10:30:46 info: Fetching of router started -2026-06-26 10:30:46 info: Fetching of router executed successfully -2026-06-26 10:30:46 info: Rtp capabilities fetched successfully -2026-06-26 10:30:46 info: Get room started -2026-06-26 10:30:46 info: Get room executed successfully -2026-06-26 10:30:46 info: Transport created : 2a40624c-a083-4290-a9f1-e7a49bd62b02 -2026-06-26 10:30:46 info: Get room started -2026-06-26 10:30:46 info: Get room executed successfully -2026-06-26 10:30:49 info: Connect broadcaster transport listener started -2026-06-26 10:30:49 info: Get room started -2026-06-26 10:30:49 info: Get room executed successfully -2026-06-26 10:30:49 info: Connect broadcaster transport executed successfully -2026-06-26 10:30:49 info: Transport ICE state changed -2026-06-26 10:30:49 info: Transport DTLS state changed -2026-06-26 10:30:49 info: Transport DTLS state changed -2026-06-26 10:30:49 info: Producer listener started -2026-06-26 10:30:49 info: Get room started -2026-06-26 10:30:49 info: Get room executed successfully -2026-06-26 10:30:49 info: Producer listener executed successfully: -2026-06-26 10:30:49 info: Producer listener started -2026-06-26 10:30:49 info: Get room started -2026-06-26 10:30:49 info: Get room executed successfully -2026-06-26 10:30:49 info: Producer listener executed successfully: -2026-06-26 10:30:54 info: Join as viewer listner started -2026-06-26 10:30:54 info: Get room started -2026-06-26 10:30:54 info: Get room executed successfully -2026-06-26 10:30:54 info: Viewer joined the room -2026-06-26 10:30:54 info: Get room started -2026-06-26 10:30:54 info: Get room executed successfully -2026-06-26 10:30:54 info: Fetching of router started -2026-06-26 10:30:54 info: Fetching of router executed successfully -2026-06-26 10:30:54 info: Join viewer listner successfully executed -2026-06-26 10:30:54 info: Create viewer transport listner started -2026-06-26 10:30:54 info: Get room started -2026-06-26 10:30:54 info: Get room executed successfully -2026-06-26 10:30:54 info: Get room started -2026-06-26 10:30:54 info: Get room executed successfully -2026-06-26 10:30:54 info: Transport created : 74464a15-1b00-4556-aad8-97dc47f880ea -2026-06-26 10:30:54 info: Viewer transport successfully created -2026-06-26 10:30:54 info: Create viewer transport listner successfully executed -2026-06-26 10:30:54 info: Consume lister started -2026-06-26 10:30:54 info: Get room started -2026-06-26 10:30:54 info: Get room executed successfully -2026-06-26 10:30:54 info: Get room started -2026-06-26 10:30:54 info: Get room executed successfully -2026-06-26 10:30:54 info: Get room started -2026-06-26 10:30:54 info: Get room executed successfully -2026-06-26 10:30:54 info: Viewer media consume successfully executed -2026-06-26 10:30:54 info: Consume lister executed successfully -2026-06-26 10:30:54 info: Connect consumer listner started -2026-06-26 10:30:54 info: Get room started -2026-06-26 10:30:54 info: Get room executed successfully -2026-06-26 10:30:54 info: Consumer transport connected successfully -2026-06-26 10:30:54 info: Connect consumer listner executed successfully -2026-06-26 10:30:54 info: Transport ICE state changed -2026-06-26 10:30:54 info: Transport DTLS state changed -2026-06-26 10:30:54 info: Transport DTLS state changed -2026-06-26 10:30:54 info: Get room started -2026-06-26 10:30:54 info: Get room executed successfully -2026-06-26 10:30:54 info: Viewer consumer resumed -2026-06-26 10:30:54 info: Resume consumer listener executed successfully -2026-06-26 10:30:54 info: Get room started -2026-06-26 10:30:54 info: Get room executed successfully -2026-06-26 10:30:54 info: Viewer consumer resumed -2026-06-26 10:30:54 info: Resume consumer listener executed successfully -2026-06-26 10:43:36 info: Client connected: yv7JvuTR9-bbVOtbAAAB -2026-06-26 10:43:38 info: Create room started -2026-06-26 10:43:38 info: Creating worker started -2026-06-26 10:43:38 info: Worker created successfully -2026-06-26 10:43:38 info: Creation of router started -2026-06-26 10:43:38 info: Router created -2026-06-26 10:43:38 info: Creation of room successfully executed -2026-06-26 10:43:38 info: Get room started -2026-06-26 10:43:38 info: Get room executed successfully -2026-06-26 10:43:38 info: Broadcaster added to the room -2026-06-26 10:43:38 info: Room created successfully -2026-06-26 10:43:38 info: Get getRouterRtpCapabilities started -2026-06-26 10:43:38 info: Fetching of router started -2026-06-26 10:43:38 info: Fetching of router executed successfully -2026-06-26 10:43:38 info: Rtp capabilities fetched successfully -2026-06-26 10:43:38 info: Get room started -2026-06-26 10:43:38 info: Get room executed successfully -2026-06-26 10:43:38 info: Transport created : 605660a3-2cf1-4d87-9510-8d975ea6bb5f -2026-06-26 10:43:38 info: Get room started -2026-06-26 10:43:38 info: Get room executed successfully -2026-06-26 10:43:41 info: Connect broadcaster transport listener started -2026-06-26 10:43:41 info: Get room started -2026-06-26 10:43:41 info: Get room executed successfully -2026-06-26 10:43:41 info: Connect broadcaster transport executed successfully -2026-06-26 10:43:41 info: Transport ICE state changed -2026-06-26 10:43:41 info: Transport DTLS state changed -2026-06-26 10:43:41 info: Producer listener started -2026-06-26 10:43:41 info: Get room started -2026-06-26 10:43:41 info: Get room executed successfully -2026-06-26 10:43:41 info: Producer listener executed successfully: -2026-06-26 10:43:41 info: Transport DTLS state changed -2026-06-26 10:43:41 info: Producer listener started -2026-06-26 10:43:41 info: Get room started -2026-06-26 10:43:41 info: Get room executed successfully -2026-06-26 10:43:41 info: Producer listener executed successfully: -2026-06-26 10:43:51 info: Client connected: Nq-rUlSifhKCWfExAAAD -2026-06-26 10:43:54 info: Join as viewer listner started -2026-06-26 10:43:54 info: Get room started -2026-06-26 10:43:54 info: Get room executed successfully -2026-06-26 10:43:54 info: Viewer joined the room -2026-06-26 10:43:54 info: Get room started -2026-06-26 10:43:54 info: Get room executed successfully -2026-06-26 10:43:54 info: Fetching of router started -2026-06-26 10:43:54 info: Fetching of router executed successfully -2026-06-26 10:43:54 info: Join viewer listner successfully executed -2026-06-26 10:43:54 info: Create viewer transport listner started -2026-06-26 10:43:54 info: Get room started -2026-06-26 10:43:54 info: Get room executed successfully -2026-06-26 10:43:54 info: Get room started -2026-06-26 10:43:54 info: Get room executed successfully -2026-06-26 10:43:54 info: Transport created : 2d0efb2d-c860-466e-874c-51e8e856e93e -2026-06-26 10:43:54 info: Viewer transport successfully created -2026-06-26 10:43:54 info: Create viewer transport listner successfully executed -2026-06-26 10:43:54 info: Consume lister started -2026-06-26 10:43:54 info: Get room started -2026-06-26 10:43:54 info: Get room executed successfully -2026-06-26 10:43:54 info: Get room started -2026-06-26 10:43:54 info: Get room executed successfully -2026-06-26 10:43:54 info: Get room started -2026-06-26 10:43:54 info: Get room executed successfully -2026-06-26 10:43:54 info: Viewer media consume successfully executed -2026-06-26 10:43:54 info: Consume lister executed successfully -2026-06-26 10:43:54 info: Connect consumer listner started -2026-06-26 10:43:54 info: Get room started -2026-06-26 10:43:54 info: Get room executed successfully -2026-06-26 10:43:54 info: Consumer transport connected successfully -2026-06-26 10:43:54 info: Connect consumer listner executed successfully -2026-06-26 10:43:54 info: Transport ICE state changed -2026-06-26 10:43:54 info: Transport DTLS state changed -2026-06-26 10:43:54 info: Transport DTLS state changed -2026-06-26 10:43:54 info: Get room started -2026-06-26 10:43:54 info: Get room executed successfully -2026-06-26 10:43:54 info: Viewer consumer resumed -2026-06-26 10:43:54 info: Resume consumer listener executed successfully -2026-06-26 10:43:54 info: Get room started -2026-06-26 10:43:54 info: Get room executed successfully -2026-06-26 10:43:54 info: Viewer consumer resumed -2026-06-26 10:43:54 info: Resume consumer listener executed successfully -2026-06-26 10:44:44 info: Transport DTLS state changed -2026-06-26 10:44:44 info: User disconnected Nq-rUlSifhKCWfExAAAD beacuse of transport close -2026-06-26 10:44:45 info: User disconnected yv7JvuTR9-bbVOtbAAAB beacuse of transport close -2026-06-26 10:44:45 info: Transport DTLS state changed -2026-06-26 10:45:13 info: Transport ICE state changed -2026-06-26 10:45:13 info: Transport ICE state changed -2026-06-26 10:57:08 info: Client connected: DhDikURjeA5f6CRZAAAB -2026-06-26 10:57:10 info: Client connected: ng7G0p-RaY8RpAbTAAAD -2026-06-26 10:57:11 info: Create room started -2026-06-26 10:57:11 info: Creating worker started -2026-06-26 10:57:11 info: Worker created successfully -2026-06-26 10:57:11 info: Creation of router started -2026-06-26 10:57:11 info: Router created -2026-06-26 10:57:11 info: Creation of room successfully executed -2026-06-26 10:57:11 info: Get room started -2026-06-26 10:57:11 info: Get room executed successfully -2026-06-26 10:57:11 info: Broadcaster added to the room -2026-06-26 10:57:11 info: Room created successfully -2026-06-26 10:57:11 info: Get getRouterRtpCapabilities started -2026-06-26 10:57:11 info: Fetching of router started -2026-06-26 10:57:11 info: Fetching of router executed successfully -2026-06-26 10:57:11 info: Rtp capabilities fetched successfully -2026-06-26 10:57:11 info: Get room started -2026-06-26 10:57:11 info: Get room executed successfully -2026-06-26 10:57:11 info: Transport created : 1ceff095-5f69-42a1-b3a9-20bbd568c34e -2026-06-26 10:57:11 info: Get room started -2026-06-26 10:57:11 info: Get room executed successfully -2026-06-26 10:57:14 info: Connect broadcaster transport listener started -2026-06-26 10:57:14 info: Get room started -2026-06-26 10:57:14 info: Get room executed successfully -2026-06-26 10:57:14 info: Connect broadcaster transport executed successfully -2026-06-26 10:57:14 info: Transport ICE state changed -2026-06-26 10:57:14 info: Transport DTLS state changed -2026-06-26 10:57:14 info: Producer listener started -2026-06-26 10:57:14 info: Get room started -2026-06-26 10:57:14 info: Get room executed successfully -2026-06-26 10:57:14 info: Producer listener executed successfully: -2026-06-26 10:57:14 info: Transport DTLS state changed -2026-06-26 10:57:14 info: Producer listener started -2026-06-26 10:57:14 info: Get room started -2026-06-26 10:57:14 info: Get room executed successfully -2026-06-26 10:57:14 info: Producer listener executed successfully: -2026-06-26 10:57:19 info: Join as viewer listner started -2026-06-26 10:57:19 info: Get room started -2026-06-26 10:57:19 info: Get room executed successfully -2026-06-26 10:57:19 info: Viewer joined the room -2026-06-26 10:57:19 info: Get room started -2026-06-26 10:57:19 info: Get room executed successfully -2026-06-26 10:57:19 info: Fetching of router started -2026-06-26 10:57:19 info: Fetching of router executed successfully -2026-06-26 10:57:19 info: Join viewer listner successfully executed -2026-06-26 10:57:19 info: Create viewer transport listner started -2026-06-26 10:57:19 info: Get room started -2026-06-26 10:57:19 info: Get room executed successfully -2026-06-26 10:57:19 info: Get room started -2026-06-26 10:57:19 info: Get room executed successfully -2026-06-26 10:57:19 info: Transport created : 239e0d94-4a0f-4608-884d-a80be7dfb21d -2026-06-26 10:57:19 info: Viewer transport successfully created -2026-06-26 10:57:19 info: Create viewer transport listner successfully executed -2026-06-26 10:57:19 info: Consume lister started -2026-06-26 10:57:19 info: Get room started -2026-06-26 10:57:19 info: Get room executed successfully -2026-06-26 10:57:19 info: Get room started -2026-06-26 10:57:19 info: Get room executed successfully -2026-06-26 10:57:19 info: Get room started -2026-06-26 10:57:19 info: Get room executed successfully -2026-06-26 10:57:19 info: Viewer media consume successfully executed -2026-06-26 10:57:19 info: Consume lister executed successfully -2026-06-26 10:57:19 info: Connect consumer listner started -2026-06-26 10:57:19 info: Get room started -2026-06-26 10:57:19 info: Get room executed successfully -2026-06-26 10:57:19 info: Consumer transport connected successfully -2026-06-26 10:57:19 info: Connect consumer listner executed successfully -2026-06-26 10:57:19 info: Transport ICE state changed -2026-06-26 10:57:19 info: Transport DTLS state changed -2026-06-26 10:57:19 info: Transport DTLS state changed -2026-06-26 10:57:19 info: Get room started -2026-06-26 10:57:19 info: Get room executed successfully -2026-06-26 10:57:19 info: Viewer consumer resumed -2026-06-26 10:57:19 info: Resume consumer listener executed successfully -2026-06-26 10:57:19 info: Get room started -2026-06-26 10:57:19 info: Get room executed successfully -2026-06-26 10:57:19 info: Viewer consumer resumed -2026-06-26 10:57:19 info: Resume consumer listener executed successfully -2026-06-26 11:08:03 info: Client connected: 55yzpmPqTnsg6kPJAAAB -2026-06-26 11:08:05 info: Client connected: j1T3apFTQ_C6vr_HAAAD -2026-06-26 11:08:08 info: Create room started -2026-06-26 11:08:08 info: Creating worker started -2026-06-26 11:08:08 info: Worker created successfully -2026-06-26 11:08:08 info: Creation of router started -2026-06-26 11:08:08 info: Router created -2026-06-26 11:08:08 info: Creation of room successfully executed -2026-06-26 11:08:08 info: Get room started -2026-06-26 11:08:08 info: Get room executed successfully -2026-06-26 11:08:08 info: Broadcaster added to the room -2026-06-26 11:08:08 info: Room created successfully -2026-06-26 11:08:08 info: Get getRouterRtpCapabilities started -2026-06-26 11:08:08 info: Fetching of router started -2026-06-26 11:08:08 info: Fetching of router executed successfully -2026-06-26 11:08:08 info: Rtp capabilities fetched successfully -2026-06-26 11:08:08 info: Get room started -2026-06-26 11:08:08 info: Get room executed successfully -2026-06-26 11:08:08 info: Transport created : 17fff3a2-0c5f-4e61-b2e6-54921b87a74e -2026-06-26 11:08:08 info: Get room started -2026-06-26 11:08:08 info: Get room executed successfully -2026-06-26 11:08:11 info: Connect broadcaster transport listener started -2026-06-26 11:08:11 info: Get room started -2026-06-26 11:08:11 info: Get room executed successfully -2026-06-26 11:08:11 info: Connect broadcaster transport executed successfully -2026-06-26 11:08:11 info: Transport ICE state changed -2026-06-26 11:08:11 info: Transport DTLS state changed -2026-06-26 11:08:11 info: Producer listener started -2026-06-26 11:08:11 info: Get room started -2026-06-26 11:08:11 info: Get room executed successfully -2026-06-26 11:08:11 info: Producer listener executed successfully: -2026-06-26 11:08:11 info: Transport DTLS state changed -2026-06-26 11:08:11 info: Producer listener started -2026-06-26 11:08:11 info: Get room started -2026-06-26 11:08:11 info: Get room executed successfully -2026-06-26 11:08:11 info: Producer listener executed successfully: -2026-06-26 11:08:13 info: Join as viewer listner started -2026-06-26 11:08:13 info: Get room started -2026-06-26 11:08:13 info: Get room executed successfully -2026-06-26 11:08:13 info: Viewer joined the room -2026-06-26 11:08:13 info: Get room started -2026-06-26 11:08:13 info: Get room executed successfully -2026-06-26 11:08:13 info: Fetching of router started -2026-06-26 11:08:13 info: Fetching of router executed successfully -2026-06-26 11:08:13 info: Join viewer listner successfully executed -2026-06-26 11:08:13 info: Create viewer transport listner started -2026-06-26 11:08:13 info: Get room started -2026-06-26 11:08:13 info: Get room executed successfully -2026-06-26 11:08:13 info: Get room started -2026-06-26 11:08:13 info: Get room executed successfully -2026-06-26 11:08:13 info: Transport created : 41f5414f-a0ac-4457-b789-2a4a4aed41e8 -2026-06-26 11:08:13 info: Viewer transport successfully created -2026-06-26 11:08:13 info: Create viewer transport listner successfully executed -2026-06-26 11:08:13 info: Consume lister started -2026-06-26 11:08:13 info: Get room started -2026-06-26 11:08:13 info: Get room executed successfully -2026-06-26 11:08:13 info: Get room started -2026-06-26 11:08:13 info: Get room executed successfully -2026-06-26 11:08:13 info: Get room started -2026-06-26 11:08:13 info: Get room executed successfully -2026-06-26 11:08:13 info: Viewer media consume successfully executed -2026-06-26 11:08:13 info: Consume lister executed successfully -2026-06-26 11:08:13 info: Connect consumer listner started -2026-06-26 11:08:13 info: Get room started -2026-06-26 11:08:13 info: Get room executed successfully -2026-06-26 11:08:13 info: Consumer transport connected successfully -2026-06-26 11:08:13 info: Connect consumer listner executed successfully -2026-06-26 11:08:13 info: Transport ICE state changed -2026-06-26 11:08:13 info: Transport DTLS state changed -2026-06-26 11:08:13 info: Transport DTLS state changed -2026-06-26 11:08:13 info: Get room started -2026-06-26 11:08:13 info: Get room executed successfully -2026-06-26 11:08:13 info: Viewer consumer resumed -2026-06-26 11:08:13 info: Resume consumer listener executed successfully -2026-06-26 11:08:13 info: Get room started -2026-06-26 11:08:13 info: Get room executed successfully -2026-06-26 11:08:13 info: Viewer consumer resumed -2026-06-26 11:08:13 info: Resume consumer listener executed successfully -2026-06-26 11:12:15 info: Transport DTLS state changed -2026-06-26 11:12:15 info: User disconnected j1T3apFTQ_C6vr_HAAAD beacuse of transport close -2026-06-26 11:12:15 info: User disconnected 55yzpmPqTnsg6kPJAAAB beacuse of transport close -2026-06-26 11:12:15 info: Transport DTLS state changed -2026-06-26 11:12:41 info: Transport ICE state changed -2026-06-26 11:12:43 info: Transport ICE state changed -2026-06-26 18:23:43 info: Client connected: doXSW7J9g7WFKHCzAAAB -2026-06-26 18:24:25 info: Client connected: SU2_8eMUiyB040_wAAAD -2026-06-26 18:24:27 info: Create room started -2026-06-26 18:24:27 info: Creating worker started -2026-06-26 18:24:27 info: Worker created successfully -2026-06-26 18:24:27 info: Creation of router started -2026-06-26 18:24:27 info: Router created -2026-06-26 18:24:27 info: Creation of room successfully executed -2026-06-26 18:24:27 info: Get room started -2026-06-26 18:24:27 info: Get room executed successfully -2026-06-26 18:24:27 info: Broadcaster added to the room -2026-06-26 18:24:27 info: Room created successfully -2026-06-26 18:24:27 info: Get getRouterRtpCapabilities started -2026-06-26 18:24:27 info: Fetching of router started -2026-06-26 18:24:27 info: Fetching of router executed successfully -2026-06-26 18:24:27 info: Rtp capabilities fetched successfully -2026-06-26 18:24:27 info: Get room started -2026-06-26 18:24:27 info: Get room executed successfully -2026-06-26 18:24:27 info: Transport created : c4064d7b-ed0a-4c66-b11e-66ebbce2f6ed -2026-06-26 18:24:27 info: Get room started -2026-06-26 18:24:27 info: Get room executed successfully -2026-06-26 18:24:30 info: Connect broadcaster transport listener started -2026-06-26 18:24:30 info: Get room started -2026-06-26 18:24:30 info: Get room executed successfully -2026-06-26 18:24:30 info: Connect broadcaster transport executed successfully -2026-06-26 18:24:30 info: Transport ICE state changed -2026-06-26 18:24:30 info: Transport DTLS state changed -2026-06-26 18:24:30 info: Producer listener started -2026-06-26 18:24:30 info: Get room started -2026-06-26 18:24:30 info: Get room executed successfully -2026-06-26 18:24:30 info: Transport DTLS state changed -2026-06-26 18:24:30 info: Producer listener executed successfully: -2026-06-26 18:24:30 info: Producer listener started -2026-06-26 18:24:30 info: Get room started -2026-06-26 18:24:30 info: Get room executed successfully -2026-06-26 18:24:30 info: Producer listener executed successfully: -2026-06-26 18:24:37 info: Join as viewer listner started -2026-06-26 18:24:37 info: Get room started -2026-06-26 18:24:37 info: Get room executed successfully -2026-06-26 18:24:37 info: Viewer joined the room -2026-06-26 18:24:37 info: Get room started -2026-06-26 18:24:37 info: Get room executed successfully -2026-06-26 18:24:37 info: Fetching of router started -2026-06-26 18:24:37 info: Fetching of router executed successfully -2026-06-26 18:24:37 info: Join viewer listner successfully executed -2026-06-26 18:24:37 info: Create viewer transport listner started -2026-06-26 18:24:37 info: Get room started -2026-06-26 18:24:37 info: Get room executed successfully -2026-06-26 18:24:37 info: Get room started -2026-06-26 18:24:37 info: Get room executed successfully -2026-06-26 18:24:37 info: Transport created : 797c5e18-763b-48e9-b0cc-723fe5a4f31f -2026-06-26 18:24:37 info: Viewer transport successfully created -2026-06-26 18:24:37 info: Create viewer transport listner successfully executed -2026-06-26 18:24:37 info: Consume lister started -2026-06-26 18:24:37 info: Get room started -2026-06-26 18:24:37 info: Get room executed successfully -2026-06-26 18:24:37 info: Get room started -2026-06-26 18:24:37 info: Get room executed successfully -2026-06-26 18:24:37 info: Get room started -2026-06-26 18:24:37 info: Get room executed successfully -2026-06-26 18:24:37 info: Viewer media consume successfully executed -2026-06-26 18:24:37 info: Consume lister executed successfully -2026-06-26 18:24:37 info: Connect consumer listner started -2026-06-26 18:24:37 info: Get room started -2026-06-26 18:24:37 info: Get room executed successfully -2026-06-26 18:24:37 info: Consumer transport connected successfully -2026-06-26 18:24:37 info: Connect consumer listner executed successfully -2026-06-26 18:24:37 info: Transport ICE state changed -2026-06-26 18:24:37 info: Transport DTLS state changed -2026-06-26 18:24:37 info: Transport DTLS state changed -2026-06-26 18:24:37 info: Get room started -2026-06-26 18:24:37 info: Get room executed successfully -2026-06-26 18:24:37 info: Viewer consumer resumed -2026-06-26 18:24:37 info: Resume consumer listener executed successfully -2026-06-26 18:24:37 info: Get room started -2026-06-26 18:24:37 info: Get room executed successfully -2026-06-26 18:24:37 info: Viewer consumer resumed -2026-06-26 18:24:37 info: Resume consumer listener executed successfully -2026-06-26 18:25:24 info: Transport DTLS state changed -2026-06-26 18:25:24 info: User disconnected SU2_8eMUiyB040_wAAAD beacuse of transport close -2026-06-26 18:25:25 info: User disconnected doXSW7J9g7WFKHCzAAAB beacuse of transport close -2026-06-26 18:25:25 info: Transport DTLS state changed -2026-06-26 18:40:10 info: Client connected: xOzeDYGUmKpJtR5nAAAB -2026-06-26 18:40:15 info: Client connected: fHMwdHzjkghWO9oGAAAD -2026-06-26 18:40:17 info: Create room started -2026-06-26 18:40:17 info: Creating worker started -2026-06-26 18:40:17 info: Worker created successfully -2026-06-26 18:40:17 info: Creation of router started -2026-06-26 18:40:17 info: Router created -2026-06-26 18:40:17 info: Creation of room successfully executed -2026-06-26 18:40:17 info: Get room started -2026-06-26 18:40:17 info: Get room executed successfully -2026-06-26 18:40:17 info: Broadcaster added to the room -2026-06-26 18:40:17 info: Room created successfully -2026-06-26 18:40:17 info: Get getRouterRtpCapabilities started -2026-06-26 18:40:17 info: Fetching of router started -2026-06-26 18:40:17 info: Fetching of router executed successfully -2026-06-26 18:40:17 info: Rtp capabilities fetched successfully -2026-06-26 18:40:17 info: Get room started -2026-06-26 18:40:17 info: Get room executed successfully -2026-06-26 18:40:17 info: Transport created : 8cb9f03c-dddb-4803-9795-665373b5d3b5 -2026-06-26 18:40:17 info: Get room started -2026-06-26 18:40:17 info: Get room executed successfully -2026-06-26 18:40:20 info: Connect broadcaster transport listener started -2026-06-26 18:40:20 info: Get room started -2026-06-26 18:40:20 info: Get room executed successfully -2026-06-26 18:40:20 info: Connect broadcaster transport executed successfully -2026-06-26 18:40:20 info: Transport ICE state changed -2026-06-26 18:40:20 info: Transport DTLS state changed -2026-06-26 18:40:20 info: Producer listener started -2026-06-26 18:40:20 info: Get room started -2026-06-26 18:40:20 info: Get room executed successfully -2026-06-26 18:40:20 info: Producer listener executed successfully: -2026-06-26 18:40:20 info: Transport DTLS state changed -2026-06-26 18:40:20 info: Producer listener started -2026-06-26 18:40:20 info: Get room started -2026-06-26 18:40:20 info: Get room executed successfully -2026-06-26 18:40:20 info: Producer listener executed successfully: -2026-06-26 18:40:24 info: Join as viewer listner started -2026-06-26 18:40:24 info: Get room started -2026-06-26 18:40:24 info: Get room executed successfully -2026-06-26 18:40:24 info: Viewer joined the room -2026-06-26 18:40:24 info: Get room started -2026-06-26 18:40:24 info: Get room executed successfully -2026-06-26 18:40:24 info: Fetching of router started -2026-06-26 18:40:24 info: Fetching of router executed successfully -2026-06-26 18:40:24 info: Join viewer listner successfully executed -2026-06-26 18:40:24 info: Create viewer transport listner started -2026-06-26 18:40:24 info: Get room started -2026-06-26 18:40:24 info: Get room executed successfully -2026-06-26 18:40:24 info: Get room started -2026-06-26 18:40:24 info: Get room executed successfully -2026-06-26 18:40:24 info: Transport created : 5589149e-78bc-4766-8121-286af2816846 -2026-06-26 18:40:24 info: Viewer transport successfully created -2026-06-26 18:40:24 info: Create viewer transport listner successfully executed -2026-06-26 18:40:24 info: Consume lister started -2026-06-26 18:40:24 info: Get room started -2026-06-26 18:40:24 info: Get room executed successfully -2026-06-26 18:40:24 info: Get room started -2026-06-26 18:40:24 info: Get room executed successfully -2026-06-26 18:40:24 info: Get room started -2026-06-26 18:40:24 info: Get room executed successfully -2026-06-26 18:40:24 info: Viewer media consume successfully executed -2026-06-26 18:40:24 info: Consume lister executed successfully -2026-06-26 18:40:24 info: Connect consumer listner started -2026-06-26 18:40:24 info: Get room started -2026-06-26 18:40:24 info: Get room executed successfully -2026-06-26 18:40:24 info: Consumer transport connected successfully -2026-06-26 18:40:24 info: Connect consumer listner executed successfully -2026-06-26 18:40:24 info: Transport ICE state changed -2026-06-26 18:40:24 info: Transport DTLS state changed -2026-06-26 18:40:24 info: Transport DTLS state changed -2026-06-26 18:40:24 info: Get room started -2026-06-26 18:40:24 info: Get room executed successfully -2026-06-26 18:40:24 info: Viewer consumer resumed -2026-06-26 18:40:24 info: Resume consumer listener executed successfully -2026-06-26 18:40:24 info: Get room started -2026-06-26 18:40:24 info: Get room executed successfully -2026-06-26 18:40:24 info: Viewer consumer resumed -2026-06-26 18:40:24 info: Resume consumer listener executed successfully -2026-06-26 18:41:14 info: Transport DTLS state changed -2026-06-26 18:41:14 info: Transport DTLS state changed -2026-06-26 18:41:14 info: User disconnected fHMwdHzjkghWO9oGAAAD beacuse of transport close -2026-06-26 18:41:14 info: User disconnected xOzeDYGUmKpJtR5nAAAB beacuse of transport close -2026-06-26 22:27:02 info: Client connected: oCS0Xi5dFpsmQdJKAAAB -2026-06-26 22:27:09 info: Client connected: MtQkKzVJB0G9NQggAAAD -2026-06-26 22:27:11 info: Create room started -2026-06-26 22:27:11 info: Creating worker started -2026-06-26 22:27:11 info: Worker created successfully -2026-06-26 22:27:11 info: Creation of router started -2026-06-26 22:27:11 info: Router created -2026-06-26 22:27:11 info: Creation of room successfully executed -2026-06-26 22:27:11 info: Get room started -2026-06-26 22:27:11 info: Get room executed successfully -2026-06-26 22:27:11 info: Broadcaster added to the room -2026-06-26 22:27:11 info: Room created successfully -2026-06-26 22:27:11 info: Get getRouterRtpCapabilities started -2026-06-26 22:27:11 info: Fetching of router started -2026-06-26 22:27:11 info: Fetching of router executed successfully -2026-06-26 22:27:11 info: Rtp capabilities fetched successfully -2026-06-26 22:27:11 info: Get room started -2026-06-26 22:27:11 info: Get room executed successfully -2026-06-26 22:27:11 info: Transport created : 9126e49c-c80a-4966-900a-fa988af8e908 -2026-06-26 22:27:11 info: Get room started -2026-06-26 22:27:11 info: Get room executed successfully -2026-06-26 22:27:14 info: Connect broadcaster transport listener started -2026-06-26 22:27:14 info: Get room started -2026-06-26 22:27:14 info: Get room executed successfully -2026-06-26 22:27:14 info: Connect broadcaster transport executed successfully -2026-06-26 22:27:14 info: Transport ICE state changed -2026-06-26 22:27:14 info: Transport DTLS state changed -2026-06-26 22:27:14 info: Producer listener started -2026-06-26 22:27:14 info: Get room started -2026-06-26 22:27:14 info: Get room executed successfully -2026-06-26 22:27:14 info: Transport DTLS state changed -2026-06-26 22:27:14 info: Producer listener executed successfully: -2026-06-26 22:27:14 info: Producer listener started -2026-06-26 22:27:14 info: Get room started -2026-06-26 22:27:14 info: Get room executed successfully -2026-06-26 22:27:14 info: Producer listener executed successfully: -2026-06-26 22:27:20 info: Join as viewer listner started -2026-06-26 22:27:20 info: Get room started -2026-06-26 22:27:20 info: Get room executed successfully -2026-06-26 22:27:20 info: Viewer joined the room -2026-06-26 22:27:20 info: Get room started -2026-06-26 22:27:20 info: Get room executed successfully -2026-06-26 22:27:20 info: Fetching of router started -2026-06-26 22:27:20 info: Fetching of router executed successfully -2026-06-26 22:27:20 info: Join viewer listner successfully executed -2026-06-26 22:27:20 info: Create viewer transport listner started -2026-06-26 22:27:20 info: Get room started -2026-06-26 22:27:20 info: Get room executed successfully -2026-06-26 22:27:20 info: Get room started -2026-06-26 22:27:20 info: Get room executed successfully -2026-06-26 22:27:20 info: Transport created : 734ab722-2251-41fb-a029-ac17cf0cc159 -2026-06-26 22:27:20 info: Viewer transport successfully created -2026-06-26 22:27:20 info: Create viewer transport listner successfully executed -2026-06-26 22:27:20 info: Consume lister started -2026-06-26 22:27:20 info: Get room started -2026-06-26 22:27:20 info: Get room executed successfully -2026-06-26 22:27:20 info: Get room started -2026-06-26 22:27:20 info: Get room executed successfully -2026-06-26 22:27:20 info: Get room started -2026-06-26 22:27:20 info: Get room executed successfully -2026-06-26 22:27:20 info: Viewer media consume successfully executed -2026-06-26 22:27:20 info: Consume lister executed successfully -2026-06-26 22:27:20 info: Connect consumer listner started -2026-06-26 22:27:20 info: Get room started -2026-06-26 22:27:20 info: Get room executed successfully -2026-06-26 22:27:20 info: Consumer transport connected successfully -2026-06-26 22:27:20 info: Connect consumer listner executed successfully -2026-06-26 22:27:20 info: Transport ICE state changed -2026-06-26 22:27:20 info: Transport DTLS state changed -2026-06-26 22:27:20 info: Transport DTLS state changed -2026-06-26 22:27:20 info: Get room started -2026-06-26 22:27:20 info: Get room executed successfully -2026-06-26 22:27:20 info: Viewer consumer resumed -2026-06-26 22:27:20 info: Resume consumer listener executed successfully -2026-06-26 22:27:20 info: Get room started -2026-06-26 22:27:20 info: Get room executed successfully -2026-06-26 22:27:20 info: Viewer consumer resumed -2026-06-26 22:27:20 info: Resume consumer listener executed successfully -2026-06-26 22:37:24 info: Transport DTLS state changed -2026-06-26 22:37:24 info: User disconnected MtQkKzVJB0G9NQggAAAD beacuse of transport close -2026-06-26 22:37:25 info: User disconnected oCS0Xi5dFpsmQdJKAAAB beacuse of transport close -2026-06-26 22:37:25 info: Transport DTLS state changed -2026-06-26 22:37:32 info: Client connected: kIU_l7Tx2SJ6uAaSAAAF -2026-06-26 22:37:38 info: Client connected: yUMcHVDjMck3A9CsAAAH -2026-06-26 22:37:41 info: Create room started -2026-06-26 22:37:41 info: Creating worker started -2026-06-26 22:37:41 info: Worker created successfully -2026-06-26 22:37:41 info: Creation of router started -2026-06-26 22:37:41 info: Router created -2026-06-26 22:37:41 info: Creation of room successfully executed -2026-06-26 22:37:41 info: Get room started -2026-06-26 22:37:41 info: Get room executed successfully -2026-06-26 22:37:41 info: Broadcaster added to the room -2026-06-26 22:37:41 info: Room created successfully -2026-06-26 22:37:41 info: Get getRouterRtpCapabilities started -2026-06-26 22:37:41 info: Fetching of router started -2026-06-26 22:37:41 info: Fetching of router executed successfully -2026-06-26 22:37:41 info: Rtp capabilities fetched successfully -2026-06-26 22:37:41 info: Get room started -2026-06-26 22:37:41 info: Get room executed successfully -2026-06-26 22:37:41 info: Transport created : 88fe7065-6297-46ce-b0fa-6c20b6a54d04 -2026-06-26 22:37:41 info: Get room started -2026-06-26 22:37:41 info: Get room executed successfully -2026-06-26 22:37:43 info: Connect broadcaster transport listener started -2026-06-26 22:37:43 info: Get room started -2026-06-26 22:37:43 info: Get room executed successfully -2026-06-26 22:37:43 info: Connect broadcaster transport executed successfully -2026-06-26 22:37:43 info: Transport ICE state changed -2026-06-26 22:37:43 info: Transport DTLS state changed -2026-06-26 22:37:43 info: Producer listener started -2026-06-26 22:37:43 info: Get room started -2026-06-26 22:37:43 info: Get room executed successfully -2026-06-26 22:37:43 info: Transport DTLS state changed -2026-06-26 22:37:43 info: Producer listener executed successfully: -2026-06-26 22:37:43 info: Producer listener started -2026-06-26 22:37:43 info: Get room started -2026-06-26 22:37:43 info: Get room executed successfully -2026-06-26 22:37:43 info: Producer listener executed successfully: -2026-06-26 22:37:47 info: Join as viewer listner started -2026-06-26 22:37:47 info: Get room started -2026-06-26 22:37:47 info: Get room executed successfully -2026-06-26 22:37:47 info: Viewer joined the room -2026-06-26 22:37:47 info: Get room started -2026-06-26 22:37:47 info: Get room executed successfully -2026-06-26 22:37:47 info: Fetching of router started -2026-06-26 22:37:47 info: Fetching of router executed successfully -2026-06-26 22:37:47 info: Join viewer listner successfully executed -2026-06-26 22:37:47 info: Create viewer transport listner started -2026-06-26 22:37:47 info: Get room started -2026-06-26 22:37:47 info: Get room executed successfully -2026-06-26 22:37:47 info: Get room started -2026-06-26 22:37:47 info: Get room executed successfully -2026-06-26 22:37:47 info: Transport created : aab19354-baef-45e4-9c14-d9979ec5f9cd -2026-06-26 22:37:47 info: Viewer transport successfully created -2026-06-26 22:37:47 info: Create viewer transport listner successfully executed -2026-06-26 22:37:47 info: Consume lister started -2026-06-26 22:37:47 info: Get room started -2026-06-26 22:37:47 info: Get room executed successfully -2026-06-26 22:37:47 info: Get room started -2026-06-26 22:37:47 info: Get room executed successfully -2026-06-26 22:37:47 info: Get room started -2026-06-26 22:37:47 info: Get room executed successfully -2026-06-26 22:37:47 info: Viewer media consume successfully executed -2026-06-26 22:37:47 info: Consume lister executed successfully -2026-06-26 22:37:47 info: Connect consumer listner started -2026-06-26 22:37:47 info: Get room started -2026-06-26 22:37:47 info: Get room executed successfully -2026-06-26 22:37:47 info: Consumer transport connected successfully -2026-06-26 22:37:47 info: Connect consumer listner executed successfully -2026-06-26 22:37:47 info: Transport ICE state changed -2026-06-26 22:37:47 info: Transport DTLS state changed -2026-06-26 22:37:47 info: Transport DTLS state changed -2026-06-26 22:37:47 info: Get room started -2026-06-26 22:37:47 info: Get room executed successfully -2026-06-26 22:37:47 info: Viewer consumer resumed -2026-06-26 22:37:47 info: Resume consumer listener executed successfully -2026-06-26 22:37:47 info: Get room started -2026-06-26 22:37:47 info: Get room executed successfully -2026-06-26 22:37:47 info: Viewer consumer resumed -2026-06-26 22:37:47 info: Resume consumer listener executed successfully -2026-06-26 22:37:50 info: Transport ICE state changed -2026-06-26 22:37:50 info: Transport ICE state changed -2026-06-28 13:11:13 info: Client connected: 48QgpoDIHfNu5INwAAAB -2026-06-28 13:11:14 info: Create room started -2026-06-28 13:11:14 info: Creating worker started -2026-06-28 13:11:14 info: Worker created successfully -2026-06-28 13:11:14 info: Creation of router started -2026-06-28 13:11:14 info: Router created -2026-06-28 13:11:14 info: Creation of room successfully executed -2026-06-28 13:11:14 info: Get room started -2026-06-28 13:11:14 info: Get room executed successfully -2026-06-28 13:11:14 info: Broadcaster added to the room -2026-06-28 13:11:14 info: Room created successfully -2026-06-28 13:11:14 info: Get getRouterRtpCapabilities started -2026-06-28 13:11:14 info: Fetching of router started -2026-06-28 13:11:14 info: Fetching of router executed successfully -2026-06-28 13:11:14 info: Rtp capabilities fetched successfully -2026-06-28 13:11:14 info: Get room started -2026-06-28 13:11:14 info: Get room executed successfully -2026-06-28 13:11:14 info: Transport created : 2a03a834-3ea5-4b08-9295-59252839e6da -2026-06-28 13:11:14 info: Get room started -2026-06-28 13:11:14 info: Get room executed successfully -2026-06-28 13:11:17 info: Connect broadcaster transport listener started -2026-06-28 13:11:17 info: Get room started -2026-06-28 13:11:17 info: Get room executed successfully -2026-06-28 13:11:17 info: Connect broadcaster transport executed successfully -2026-06-28 13:11:17 info: Transport ICE state changed -2026-06-28 13:11:17 info: Transport DTLS state changed -2026-06-28 13:11:17 info: Producer listener started -2026-06-28 13:11:17 info: Get room started -2026-06-28 13:11:17 info: Get room executed successfully -2026-06-28 13:11:17 info: Transport DTLS state changed -2026-06-28 13:11:17 info: Producer listener executed successfully: -2026-06-28 13:11:17 info: Producer listener started -2026-06-28 13:11:17 info: Get room started -2026-06-28 13:11:17 info: Get room executed successfully -2026-06-28 13:11:17 info: Producer listener executed successfully: -2026-06-28 13:13:07 info: User disconnected 48QgpoDIHfNu5INwAAAB beacuse of transport close -2026-06-28 13:13:07 info: Transport DTLS state changed -2026-06-28 13:13:35 info: Transport ICE state changed -2026-06-28 13:21:20 info: Client connected: fo03qeGggv6_kSc8AAAB -2026-06-28 13:34:21 info: Client connected: _WyfSM6ZbfRBZ-kJAAAM -2026-06-28 13:34:44 info: Client connected: L-0XIMzl2qKAx7umAAAO -2026-06-28 13:34:49 info: Create room started -2026-06-28 13:34:49 info: Creating worker started -2026-06-28 13:34:50 info: Worker created successfully -2026-06-28 13:34:50 info: Creation of router started -2026-06-28 13:34:50 info: Router created -2026-06-28 13:34:50 info: Creation of room successfully executed -2026-06-28 13:34:50 info: Get room started -2026-06-28 13:34:50 info: Get room executed successfully -2026-06-28 13:34:50 info: Broadcaster added to the room -2026-06-28 13:34:50 info: Room created successfully -2026-06-28 13:34:50 info: Get getRouterRtpCapabilities started -2026-06-28 13:34:50 info: Fetching of router started -2026-06-28 13:34:50 info: Fetching of router executed successfully -2026-06-28 13:34:50 info: Rtp capabilities fetched successfully -2026-06-28 13:34:50 info: Get room started -2026-06-28 13:34:50 info: Get room executed successfully -2026-06-28 13:34:50 info: Transport created : f4d31505-54c2-4be1-8369-1291f3fc77b5 -2026-06-28 13:34:50 info: Get room started -2026-06-28 13:34:50 info: Get room executed successfully -2026-06-28 13:34:57 info: User disconnected _WyfSM6ZbfRBZ-kJAAAM beacuse of transport close -2026-06-28 13:34:57 info: Client connected: GgSojbETpmzwZGjPAAAQ -2026-06-28 13:35:02 info: Create room started -2026-06-28 13:35:02 info: Creating worker started -2026-06-28 13:35:02 info: Worker created successfully -2026-06-28 13:35:02 info: Creation of router started -2026-06-28 13:35:02 info: Router created -2026-06-28 13:35:02 info: Creation of room successfully executed -2026-06-28 13:35:02 info: Get room started -2026-06-28 13:35:02 info: Get room executed successfully -2026-06-28 13:35:02 info: Broadcaster added to the room -2026-06-28 13:35:02 info: Room created successfully -2026-06-28 13:35:02 info: Get getRouterRtpCapabilities started -2026-06-28 13:35:02 info: Fetching of router started -2026-06-28 13:35:02 info: Fetching of router executed successfully -2026-06-28 13:35:02 info: Rtp capabilities fetched successfully -2026-06-28 13:35:02 info: Get room started -2026-06-28 13:35:02 info: Get room executed successfully -2026-06-28 13:35:02 info: Transport created : c281bd95-1503-48b7-916a-a18576fd60ea -2026-06-28 13:35:02 info: Get room started -2026-06-28 13:35:02 info: Get room executed successfully -2026-06-28 13:38:10 info: Client connected: pv2Sx05tRPlTRaCCAAAB -2026-06-28 13:38:11 info: Client connected: M84UTq7xQlrgr-tAAAAD -2026-06-28 13:38:17 info: User disconnected M84UTq7xQlrgr-tAAAAD beacuse of transport close -2026-06-28 13:42:28 info: Client connected: UCo4wg8Hndzu2GaZAAAB -2026-06-28 13:42:58 info: Client connected: d6bEXRS6tr3rsAtTAAAD -2026-06-28 13:43:13 info: Create room started -2026-06-28 13:43:13 info: Creating worker started -2026-06-28 13:43:13 info: Worker created successfully -2026-06-28 13:43:13 info: Creation of router started -2026-06-28 13:43:13 info: Router created -2026-06-28 13:43:13 info: Creation of room successfully executed -2026-06-28 13:43:13 info: Get room started -2026-06-28 13:43:13 info: Get room executed successfully -2026-06-28 13:43:13 info: Broadcaster added to the room -2026-06-28 13:43:13 info: Room created successfully -2026-06-28 13:43:13 info: Get getRouterRtpCapabilities started -2026-06-28 13:43:13 info: Fetching of router started -2026-06-28 13:43:13 info: Fetching of router executed successfully -2026-06-28 13:43:13 info: Rtp capabilities fetched successfully -2026-06-28 13:43:13 info: Get room started -2026-06-28 13:43:13 info: Get room executed successfully -2026-06-28 13:43:13 info: Transport created : b7ca37e3-905b-495f-bf36-83ef6040cf42 -2026-06-28 13:43:13 info: Get room started -2026-06-28 13:43:13 info: Get room executed successfully -2026-06-28 13:43:15 info: Connect broadcaster transport listener started -2026-06-28 13:43:15 info: Get room started -2026-06-28 13:43:15 info: Get room executed successfully -2026-06-28 13:43:15 info: Connect broadcaster transport executed successfully -2026-06-28 13:43:15 info: Transport ICE state changed -2026-06-28 13:43:15 info: Transport DTLS state changed -2026-06-28 13:43:15 info: Producer listener started -2026-06-28 13:43:15 info: Get room started -2026-06-28 13:43:15 info: Get room executed successfully -2026-06-28 13:43:15 info: Producer listener executed successfully: -2026-06-28 13:43:15 info: Transport DTLS state changed -2026-06-28 13:43:15 info: Producer listener started -2026-06-28 13:43:15 info: Get room started -2026-06-28 13:43:15 info: Get room executed successfully -2026-06-28 13:43:15 info: Producer listener executed successfully: -2026-06-28 13:43:53 info: Join as viewer listner started -2026-06-28 13:43:53 info: Get room started -2026-06-28 13:43:53 info: Get room executed successfully -2026-06-28 13:43:53 info: Viewer joined the room -2026-06-28 13:43:53 info: Get room started -2026-06-28 13:43:53 info: Get room executed successfully -2026-06-28 13:43:53 info: Fetching of router started -2026-06-28 13:43:53 info: Fetching of router executed successfully -2026-06-28 13:43:53 info: Join viewer listner successfully executed -2026-06-28 13:43:53 info: Create viewer transport listner started -2026-06-28 13:43:53 info: Get room started -2026-06-28 13:43:53 info: Get room executed successfully -2026-06-28 13:43:53 info: Get room started -2026-06-28 13:43:53 info: Get room executed successfully -2026-06-28 13:43:53 info: Transport created : 810660c5-846c-48c1-906a-b96b5b1ad6ef -2026-06-28 13:43:53 info: Viewer transport successfully created -2026-06-28 13:43:53 info: Create viewer transport listner successfully executed -2026-06-28 13:43:53 info: Consume lister started -2026-06-28 13:43:53 info: Get room started -2026-06-28 13:43:53 info: Get room executed successfully -2026-06-28 13:43:53 info: Get room started -2026-06-28 13:43:53 info: Get room executed successfully -2026-06-28 13:43:53 info: Get room started -2026-06-28 13:43:53 info: Get room executed successfully -2026-06-28 13:43:53 info: Viewer media consume successfully executed -2026-06-28 13:43:53 info: Consume lister executed successfully -2026-06-28 13:43:53 info: Connect consumer listner started -2026-06-28 13:43:53 info: Get room started -2026-06-28 13:43:53 info: Get room executed successfully -2026-06-28 13:43:53 info: Consumer transport connected successfully -2026-06-28 13:43:53 info: Connect consumer listner executed successfully -2026-06-28 13:43:54 info: Get room started -2026-06-28 13:43:54 info: Get room executed successfully -2026-06-28 13:43:54 info: Viewer consumer resumed -2026-06-28 13:43:54 info: Resume consumer listener executed successfully -2026-06-28 13:43:54 info: Transport ICE state changed -2026-06-28 13:43:54 info: Transport DTLS state changed -2026-06-28 13:43:54 info: Get room started -2026-06-28 13:43:54 info: Get room executed successfully -2026-06-28 13:43:54 info: Viewer consumer resumed -2026-06-28 13:43:54 info: Resume consumer listener executed successfully -2026-06-28 13:43:54 info: Transport DTLS state changed -2026-06-28 13:43:55 info: Transport ICE state changed -2026-06-28 13:44:10 info: User disconnected UCo4wg8Hndzu2GaZAAAB beacuse of transport close -2026-06-28 13:44:10 info: Transport DTLS state changed -2026-06-28 13:44:11 info: Client connected: LPq86pTWfnaCoGPXAAAF -2026-06-28 13:44:13 info: User disconnected LPq86pTWfnaCoGPXAAAF beacuse of transport close -2026-06-28 13:44:39 info: Transport ICE state changed -2026-06-28 13:48:38 info: User disconnected d6bEXRS6tr3rsAtTAAAD beacuse of transport close -2026-06-28 13:48:38 info: Transport DTLS state changed -2026-06-28 13:49:04 info: Transport ICE state changed -2026-06-28 13:49:28 info: Get room started -2026-06-28 13:49:28 info: Get room executed successfully -2026-06-28 13:49:28 info: Router closed -2026-06-28 13:49:28 info: MediaSoup worker died -2026-06-28 13:49:28 info: Get room started -2026-06-28 13:49:28 info: Get room executed successfully -2026-06-28 13:49:28 info: Get room started -2026-06-28 13:49:28 info: Get room executed successfully -2026-07-02 12:50:39 info: Client connected: cYGzFRRcZiLDo8HtAAAB -2026-07-02 12:51:17 info: User disconnected cYGzFRRcZiLDo8HtAAAB beacuse of transport close -2026-07-02 19:05:02 info: Client connected: LCE8uRpQbiZih0jjAAAB -2026-07-02 19:05:11 info: Create room started -2026-07-02 19:05:11 info: Creating worker started -2026-07-02 19:05:11 info: Worker created successfully -2026-07-02 19:05:11 info: Creation of router started -2026-07-02 19:05:11 info: Router created -2026-07-02 19:05:11 info: Creation of room successfully executed -2026-07-02 19:05:11 info: Get room started -2026-07-02 19:05:11 info: Get room executed successfully -2026-07-02 19:05:11 info: Broadcaster added to the room -2026-07-02 19:05:11 info: Room created successfully -2026-07-02 19:05:11 info: Get getRouterRtpCapabilities started -2026-07-02 19:05:11 info: Fetching of router started -2026-07-02 19:05:11 info: Fetching of router executed successfully -2026-07-02 19:05:11 info: Rtp capabilities fetched successfully -2026-07-02 19:05:12 info: Get room started -2026-07-02 19:05:12 info: Get room executed successfully -2026-07-02 19:05:12 info: Transport created : 5ac1958c-502c-4f8f-ac87-ccccb347f004 -2026-07-02 19:05:12 info: Get room started -2026-07-02 19:05:12 info: Get room executed successfully -2026-07-02 19:05:47 info: Client connected: 0ERdhChZcGZT_j6LAAAD -2026-07-02 19:06:12 info: User disconnected LCE8uRpQbiZih0jjAAAB beacuse of transport close -2026-07-02 19:06:14 info: Client connected: wRyX7aVjgpzM6oSgAAAF -2026-07-02 19:06:15 info: Create room started -2026-07-02 19:06:15 info: Creating worker started -2026-07-02 19:06:15 info: Worker created successfully -2026-07-02 19:06:15 info: Creation of router started -2026-07-02 19:06:15 info: Router created -2026-07-02 19:06:15 info: Creation of room successfully executed -2026-07-02 19:06:15 info: Get room started -2026-07-02 19:06:15 info: Get room executed successfully -2026-07-02 19:06:15 info: Broadcaster added to the room -2026-07-02 19:06:15 info: Room created successfully -2026-07-02 19:06:15 info: Get getRouterRtpCapabilities started -2026-07-02 19:06:15 info: Fetching of router started -2026-07-02 19:06:15 info: Fetching of router executed successfully -2026-07-02 19:06:15 info: Rtp capabilities fetched successfully -2026-07-02 19:06:16 info: Get room started -2026-07-02 19:06:16 info: Get room executed successfully -2026-07-02 19:06:16 info: Transport created : b64be826-a378-40cc-8e95-716e331fa5e6 -2026-07-02 19:06:16 info: Get room started -2026-07-02 19:06:16 info: Get room executed successfully -2026-07-02 19:06:23 info: User disconnected wRyX7aVjgpzM6oSgAAAF beacuse of transport close -2026-07-02 19:06:41 info: Client connected: jRv2yqFtFf2Y_ePDAAAH -2026-07-02 19:06:42 info: Create room started -2026-07-02 19:06:42 info: Creating worker started -2026-07-02 19:06:42 info: Worker created successfully -2026-07-02 19:06:42 info: Creation of router started -2026-07-02 19:06:42 info: Router created -2026-07-02 19:06:42 info: Creation of room successfully executed -2026-07-02 19:06:42 info: Get room started -2026-07-02 19:06:42 info: Get room executed successfully -2026-07-02 19:06:42 info: Broadcaster added to the room -2026-07-02 19:06:42 info: Room created successfully -2026-07-02 19:06:42 info: Get getRouterRtpCapabilities started -2026-07-02 19:06:42 info: Fetching of router started -2026-07-02 19:06:42 info: Fetching of router executed successfully -2026-07-02 19:06:42 info: Rtp capabilities fetched successfully -2026-07-02 19:06:43 info: Get room started -2026-07-02 19:06:43 info: Get room executed successfully -2026-07-02 19:06:43 info: Transport created : f191e327-4c5e-4d33-8e75-ffce7b8cbfb1 -2026-07-02 19:06:43 info: Get room started -2026-07-02 19:06:43 info: Get room executed successfully -2026-07-02 19:06:53 info: User disconnected jRv2yqFtFf2Y_ePDAAAH beacuse of transport close -2026-07-02 19:06:55 info: Client connected: KhZIxMJKhwyWKtp3AAAJ -2026-07-02 19:06:56 info: User disconnected KhZIxMJKhwyWKtp3AAAJ beacuse of transport close -2026-07-02 19:06:57 info: Client connected: pi06lJAGKbMKyPNwAAAL -2026-07-02 19:06:58 info: Create room started -2026-07-02 19:06:58 info: Creating worker started -2026-07-02 19:06:58 info: Worker created successfully -2026-07-02 19:06:58 info: Creation of router started -2026-07-02 19:06:58 info: Router created -2026-07-02 19:06:58 info: Creation of room successfully executed -2026-07-02 19:06:58 info: Get room started -2026-07-02 19:06:58 info: Get room executed successfully -2026-07-02 19:06:58 info: Broadcaster added to the room -2026-07-02 19:06:58 info: Room created successfully -2026-07-02 19:06:58 info: Get getRouterRtpCapabilities started -2026-07-02 19:06:58 info: Fetching of router started -2026-07-02 19:06:58 info: Fetching of router executed successfully -2026-07-02 19:06:58 info: Rtp capabilities fetched successfully -2026-07-02 19:06:58 info: Get room started -2026-07-02 19:06:58 info: Get room executed successfully -2026-07-02 19:06:58 info: Transport created : 499b414e-8b39-47d9-aa21-f1d6313cb9e4 -2026-07-02 19:06:58 info: Get room started -2026-07-02 19:06:58 info: Get room executed successfully -2026-07-02 19:07:10 info: User disconnected pi06lJAGKbMKyPNwAAAL beacuse of transport close -2026-07-02 19:07:11 info: Client connected: l0_Zn19jY0umCKuSAAAN -2026-07-02 19:07:14 info: Create room started -2026-07-02 19:07:14 info: Creating worker started -2026-07-02 19:07:14 info: Worker created successfully -2026-07-02 19:07:14 info: Creation of router started -2026-07-02 19:07:14 info: Router created -2026-07-02 19:07:14 info: Creation of room successfully executed -2026-07-02 19:07:14 info: Get room started -2026-07-02 19:07:14 info: Get room executed successfully -2026-07-02 19:07:14 info: Broadcaster added to the room -2026-07-02 19:07:14 info: Room created successfully -2026-07-02 19:07:14 info: Get getRouterRtpCapabilities started -2026-07-02 19:07:14 info: Fetching of router started -2026-07-02 19:07:14 info: Fetching of router executed successfully -2026-07-02 19:07:14 info: Rtp capabilities fetched successfully -2026-07-02 19:07:14 info: Get room started -2026-07-02 19:07:14 info: Get room executed successfully -2026-07-02 19:07:14 info: Transport created : a2db3ec9-ba40-4cd8-a450-99f38fa4413f -2026-07-02 19:07:14 info: Get room started -2026-07-02 19:07:14 info: Get room executed successfully -2026-07-02 19:07:18 info: Connect broadcaster transport listener started -2026-07-02 19:07:18 info: Get room started -2026-07-02 19:07:18 info: Get room executed successfully -2026-07-02 19:07:18 info: Connect broadcaster transport executed successfully -2026-07-02 19:07:18 info: Producer listener started -2026-07-02 19:07:18 info: Get room started -2026-07-02 19:07:18 info: Get room executed successfully -2026-07-02 19:07:18 info: Producer listener executed successfully: -2026-07-02 19:07:18 info: Producer listener started -2026-07-02 19:07:18 info: Get room started -2026-07-02 19:07:18 info: Get room executed successfully -2026-07-02 19:07:18 info: Producer listener executed successfully: -2026-07-02 19:07:39 info: Join as viewer listner started -2026-07-02 19:07:39 info: Get room started -2026-07-02 19:07:39 info: Get room executed successfully -2026-07-02 19:07:39 info: Viewer joined the room -2026-07-02 19:07:39 info: Get room started -2026-07-02 19:07:39 info: Get room executed successfully -2026-07-02 19:07:39 info: Fetching of router started -2026-07-02 19:07:39 info: Fetching of router executed successfully -2026-07-02 19:07:39 info: Join viewer listner successfully executed -2026-07-02 19:07:40 info: Create viewer transport listner started -2026-07-02 19:07:40 info: Get room started -2026-07-02 19:07:40 info: Get room executed successfully -2026-07-02 19:07:40 info: Get room started -2026-07-02 19:07:40 info: Get room executed successfully -2026-07-02 19:07:40 info: Transport created : 13111c21-7bca-4aa9-a346-03ef86b58f55 -2026-07-02 19:07:40 info: Viewer transport successfully created -2026-07-02 19:07:40 info: Create viewer transport listner successfully executed -2026-07-02 19:07:40 info: Consume lister started -2026-07-02 19:07:40 info: Get room started -2026-07-02 19:07:40 info: Get room executed successfully -2026-07-02 19:07:40 info: Get room started -2026-07-02 19:07:40 info: Get room executed successfully -2026-07-02 19:07:40 info: Get room started -2026-07-02 19:07:40 info: Get room executed successfully -2026-07-02 19:07:40 info: Viewer media consume successfully executed -2026-07-02 19:07:40 info: Consume lister executed successfully -2026-07-02 19:07:41 info: Connect consumer listner started -2026-07-02 19:07:41 info: Get room started -2026-07-02 19:07:41 info: Get room executed successfully -2026-07-02 19:07:41 info: Consumer transport connected successfully -2026-07-02 19:07:41 info: Connect consumer listner executed successfully -2026-07-02 19:07:41 info: Get room started -2026-07-02 19:07:41 info: Get room executed successfully -2026-07-02 19:07:41 info: Viewer consumer resumed -2026-07-02 19:07:41 info: Resume consumer listener executed successfully -2026-07-02 19:07:42 info: Get room started -2026-07-02 19:07:42 info: Get room executed successfully -2026-07-02 19:07:42 info: Viewer consumer resumed -2026-07-02 19:07:42 info: Resume consumer listener executed successfully -2026-07-02 19:08:20 info: Client connected: 2Wu-wDO7dgpblSU0AAAP -2026-07-02 19:08:28 info: Join as viewer listner started -2026-07-02 19:08:28 info: Get room started -2026-07-02 19:08:28 info: Get room executed successfully -2026-07-02 19:08:28 info: Viewer joined the room -2026-07-02 19:08:28 info: Get room started -2026-07-02 19:08:28 info: Get room executed successfully -2026-07-02 19:08:28 info: Fetching of router started -2026-07-02 19:08:28 info: Fetching of router executed successfully -2026-07-02 19:08:28 info: Join viewer listner successfully executed -2026-07-02 19:08:28 info: Create viewer transport listner started -2026-07-02 19:08:28 info: Get room started -2026-07-02 19:08:28 info: Get room executed successfully -2026-07-02 19:08:28 info: Get room started -2026-07-02 19:08:28 info: Get room executed successfully -2026-07-02 19:08:28 info: Transport created : ed7daa61-4933-4cb9-a6cf-ec8f7be80bee -2026-07-02 19:08:28 info: Viewer transport successfully created -2026-07-02 19:08:28 info: Create viewer transport listner successfully executed -2026-07-02 19:08:28 info: Consume lister started -2026-07-02 19:08:28 info: Get room started -2026-07-02 19:08:28 info: Get room executed successfully -2026-07-02 19:08:28 info: Get room started -2026-07-02 19:08:28 info: Get room executed successfully -2026-07-02 19:08:28 info: Get room started -2026-07-02 19:08:28 info: Get room executed successfully -2026-07-02 19:08:28 info: Viewer media consume successfully executed -2026-07-02 19:08:28 info: Consume lister executed successfully -2026-07-02 19:08:28 info: Connect consumer listner started -2026-07-02 19:08:28 info: Get room started -2026-07-02 19:08:28 info: Get room executed successfully -2026-07-02 19:08:28 info: Consumer transport connected successfully -2026-07-02 19:08:28 info: Connect consumer listner executed successfully -2026-07-02 19:08:28 info: Get room started -2026-07-02 19:08:28 info: Get room executed successfully -2026-07-02 19:08:28 info: Viewer consumer resumed -2026-07-02 19:08:28 info: Resume consumer listener executed successfully -2026-07-02 19:08:28 info: Get room started -2026-07-02 19:08:28 info: Get room executed successfully -2026-07-02 19:08:28 info: Viewer consumer resumed -2026-07-02 19:08:28 info: Resume consumer listener executed successfully -2026-07-02 19:14:30 info: User disconnected 2Wu-wDO7dgpblSU0AAAP beacuse of transport close -2026-07-02 19:14:34 info: User disconnected l0_Zn19jY0umCKuSAAAN beacuse of transport close -2026-07-02 19:16:52 info: User disconnected 0ERdhChZcGZT_j6LAAAD beacuse of transport close -2026-07-02 19:25:09 info: Get room started -2026-07-02 19:25:09 info: Get room executed successfully -2026-07-02 19:25:09 info: Router closed -2026-07-02 19:25:09 info: MediaSoup worker died -2026-07-02 19:25:09 info: Get room started -2026-07-02 19:25:09 info: Get room executed successfully -2026-07-02 19:25:09 info: Get room started -2026-07-02 19:25:09 info: Get room executed successfully -2026-07-02 19:25:24 info: Get room started -2026-07-02 19:25:24 info: Get room executed successfully -2026-07-02 19:25:24 info: Router closed -2026-07-02 19:25:24 info: MediaSoup worker died -2026-07-02 19:25:24 info: Get room started -2026-07-02 19:25:24 info: Get room executed successfully -2026-07-02 19:25:24 info: Get room started -2026-07-02 19:25:24 info: Get room executed successfully -2026-07-02 19:34:16 info: Client connected: ZQcnHe7bGQ08sukMAAAB -2026-07-02 19:34:20 info: Create room started -2026-07-02 19:34:20 info: Creating worker started -2026-07-02 19:34:20 info: Worker created successfully -2026-07-02 19:34:20 info: Creation of router started -2026-07-02 19:34:20 info: Router created -2026-07-02 19:34:20 info: Creation of room successfully executed -2026-07-02 19:34:20 info: Get room started -2026-07-02 19:34:20 info: Get room executed successfully -2026-07-02 19:34:20 info: Broadcaster added to the room -2026-07-02 19:34:20 info: Room created successfully -2026-07-02 19:34:20 info: Get getRouterRtpCapabilities started -2026-07-02 19:34:20 info: Fetching of router started -2026-07-02 19:34:20 info: Fetching of router executed successfully -2026-07-02 19:34:20 info: Rtp capabilities fetched successfully -2026-07-02 19:34:20 info: Get room started -2026-07-02 19:34:20 info: Get room executed successfully -2026-07-02 19:34:20 info: Transport created : 1e448f2d-00e5-4f41-8301-fc186d45cdcd -2026-07-02 19:34:20 info: Get room started -2026-07-02 19:34:20 info: Get room executed successfully -2026-07-02 19:34:25 info: Connect broadcaster transport listener started -2026-07-02 19:34:25 info: Get room started -2026-07-02 19:34:25 info: Get room executed successfully -2026-07-02 19:34:25 info: Connect broadcaster transport executed successfully -2026-07-02 19:34:25 info: Producer listener started -2026-07-02 19:34:25 info: Get room started -2026-07-02 19:34:25 info: Get room executed successfully -2026-07-02 19:34:25 info: Producer listener executed successfully: -2026-07-02 19:34:25 info: Producer listener started -2026-07-02 19:34:25 info: Get room started -2026-07-02 19:34:25 info: Get room executed successfully -2026-07-02 19:34:25 info: Producer listener executed successfully: -2026-07-02 19:36:09 info: Client connected: 7H9F9NHntCKqG3qUAAAD -2026-07-02 19:36:17 info: Join as viewer listner started -2026-07-02 19:36:17 info: Get room started -2026-07-02 19:36:17 info: Get room executed successfully -2026-07-02 19:36:17 info: Viewer joined the room -2026-07-02 19:36:17 info: Get room started -2026-07-02 19:36:17 info: Get room executed successfully -2026-07-02 19:36:17 info: Fetching of router started -2026-07-02 19:36:17 info: Fetching of router executed successfully -2026-07-02 19:36:17 info: Join viewer listner successfully executed -2026-07-02 19:36:17 info: Create viewer transport listner started -2026-07-02 19:36:17 info: Get room started -2026-07-02 19:36:17 info: Get room executed successfully -2026-07-02 19:36:17 info: Get room started -2026-07-02 19:36:17 info: Get room executed successfully -2026-07-02 19:36:17 info: Transport created : f32be605-737d-4fba-976f-7b9d58d454c2 -2026-07-02 19:36:17 info: Viewer transport successfully created -2026-07-02 19:36:17 info: Create viewer transport listner successfully executed -2026-07-02 19:36:17 info: Consume lister started -2026-07-02 19:36:17 info: Get room started -2026-07-02 19:36:17 info: Get room executed successfully -2026-07-02 19:36:17 info: Get room started -2026-07-02 19:36:17 info: Get room executed successfully -2026-07-02 19:36:17 info: Get room started -2026-07-02 19:36:17 info: Get room executed successfully -2026-07-02 19:36:17 info: Viewer media consume successfully executed -2026-07-02 19:36:17 info: Consume lister executed successfully -2026-07-02 19:36:18 info: Connect consumer listner started -2026-07-02 19:36:18 info: Get room started -2026-07-02 19:36:18 info: Get room executed successfully -2026-07-02 19:36:18 info: Consumer transport connected successfully -2026-07-02 19:36:18 info: Connect consumer listner executed successfully -2026-07-02 19:36:19 info: Get room started -2026-07-02 19:36:19 info: Get room executed successfully -2026-07-02 19:36:19 info: Viewer consumer resumed -2026-07-02 19:36:19 info: Resume consumer listener executed successfully -2026-07-02 19:36:19 info: Get room started -2026-07-02 19:36:19 info: Get room executed successfully -2026-07-02 19:36:19 info: Viewer consumer resumed -2026-07-02 19:36:19 info: Resume consumer listener executed successfully -2026-07-02 19:40:12 info: Client connected: 3kdn8Auknq59yDxXAAAF -2026-07-02 19:40:19 info: Join as viewer listner started -2026-07-02 19:40:19 info: Get room started -2026-07-02 19:40:19 info: Get room executed successfully -2026-07-02 19:40:19 info: Viewer joined the room -2026-07-02 19:40:19 info: Get room started -2026-07-02 19:40:19 info: Get room executed successfully -2026-07-02 19:40:19 info: Fetching of router started -2026-07-02 19:40:19 info: Fetching of router executed successfully -2026-07-02 19:40:19 info: Join viewer listner successfully executed -2026-07-02 19:40:19 info: Create viewer transport listner started -2026-07-02 19:40:19 info: Get room started -2026-07-02 19:40:19 info: Get room executed successfully -2026-07-02 19:40:19 info: Get room started -2026-07-02 19:40:19 info: Get room executed successfully -2026-07-02 19:40:19 info: Transport created : 4e8c416e-7adc-4623-a6ff-b0c90e16aaf3 -2026-07-02 19:40:19 info: Viewer transport successfully created -2026-07-02 19:40:19 info: Create viewer transport listner successfully executed -2026-07-02 19:40:19 info: Consume lister started -2026-07-02 19:40:19 info: Get room started -2026-07-02 19:40:19 info: Get room executed successfully -2026-07-02 19:40:19 info: Get room started -2026-07-02 19:40:19 info: Get room executed successfully -2026-07-02 19:40:19 info: Get room started -2026-07-02 19:40:19 info: Get room executed successfully -2026-07-02 19:40:19 info: Viewer media consume successfully executed -2026-07-02 19:40:19 info: Consume lister executed successfully -2026-07-02 19:40:19 info: Connect consumer listner started -2026-07-02 19:40:19 info: Get room started -2026-07-02 19:40:19 info: Get room executed successfully -2026-07-02 19:40:19 info: Consumer transport connected successfully -2026-07-02 19:40:19 info: Connect consumer listner executed successfully -2026-07-02 19:40:19 info: Get room started -2026-07-02 19:40:19 info: Get room executed successfully -2026-07-02 19:40:19 info: Viewer consumer resumed -2026-07-02 19:40:19 info: Resume consumer listener executed successfully -2026-07-02 19:40:19 info: Get room started -2026-07-02 19:40:19 info: Get room executed successfully -2026-07-02 19:40:19 info: Viewer consumer resumed -2026-07-02 19:40:19 info: Resume consumer listener executed successfully -2026-07-02 19:40:45 info: User disconnected ZQcnHe7bGQ08sukMAAAB beacuse of transport close -2026-07-02 19:40:47 info: User disconnected 3kdn8Auknq59yDxXAAAF beacuse of transport close -2026-07-02 19:41:20 info: User disconnected 7H9F9NHntCKqG3qUAAAD beacuse of transport close -2026-07-02 19:53:22 info: Client connected: xkVsaKXrruY68si6AAAB -2026-07-02 19:53:24 info: Create room started -2026-07-02 19:53:24 info: Creating worker started -2026-07-02 19:53:24 info: Worker created successfully -2026-07-02 19:53:24 info: Creation of router started -2026-07-02 19:53:24 info: Router created -2026-07-02 19:53:24 info: Creation of room successfully executed -2026-07-02 19:53:24 info: Get room started -2026-07-02 19:53:24 info: Get room executed successfully -2026-07-02 19:53:24 info: Broadcaster added to the room -2026-07-02 19:53:24 info: Room created successfully -2026-07-02 19:53:24 info: Get getRouterRtpCapabilities started -2026-07-02 19:53:24 info: Fetching of router started -2026-07-02 19:53:24 info: Fetching of router executed successfully -2026-07-02 19:53:24 info: Rtp capabilities fetched successfully -2026-07-02 19:53:24 info: Get room started -2026-07-02 19:53:24 info: Get room executed successfully -2026-07-02 19:53:24 info: Transport created : 1f4df043-b8ab-4136-ab5e-41958c6b3486 -2026-07-02 19:53:24 info: Get room started -2026-07-02 19:53:24 info: Get room executed successfully -2026-07-02 19:53:27 info: User disconnected xkVsaKXrruY68si6AAAB beacuse of transport close -2026-07-02 19:53:29 info: Client connected: itNJWLybQIHetK3nAAAD -2026-07-02 19:53:50 info: Create room started -2026-07-02 19:53:50 info: Creating worker started -2026-07-02 19:53:50 info: Worker created successfully -2026-07-02 19:53:50 info: Creation of router started -2026-07-02 19:53:50 info: Router created -2026-07-02 19:53:50 info: Creation of room successfully executed -2026-07-02 19:53:50 info: Get room started -2026-07-02 19:53:50 info: Get room executed successfully -2026-07-02 19:53:50 info: Broadcaster added to the room -2026-07-02 19:53:50 info: Room created successfully -2026-07-02 19:53:51 info: Get getRouterRtpCapabilities started -2026-07-02 19:53:51 info: Fetching of router started -2026-07-02 19:53:51 info: Fetching of router executed successfully -2026-07-02 19:53:51 info: Rtp capabilities fetched successfully -2026-07-02 19:53:51 info: Get room started -2026-07-02 19:53:51 info: Get room executed successfully -2026-07-02 19:53:51 info: Transport created : 3a7a413f-65ff-4155-93a5-656671ba2c4a -2026-07-02 19:53:51 info: Get room started -2026-07-02 19:53:51 info: Get room executed successfully -2026-07-02 19:53:51 info: User disconnected itNJWLybQIHetK3nAAAD beacuse of transport close -2026-07-02 19:53:53 info: Client connected: QpA4x6u3_xvqkxk-AAAF -2026-07-02 19:53:54 info: Create room started -2026-07-02 19:53:54 info: Creating worker started -2026-07-02 19:53:54 info: Worker created successfully -2026-07-02 19:53:54 info: Creation of router started -2026-07-02 19:53:54 info: Router created -2026-07-02 19:53:54 info: Creation of room successfully executed -2026-07-02 19:53:54 info: Get room started -2026-07-02 19:53:54 info: Get room executed successfully -2026-07-02 19:53:54 info: Broadcaster added to the room -2026-07-02 19:53:54 info: Room created successfully -2026-07-02 19:53:54 info: Get getRouterRtpCapabilities started -2026-07-02 19:53:54 info: Fetching of router started -2026-07-02 19:53:54 info: Fetching of router executed successfully -2026-07-02 19:53:54 info: Rtp capabilities fetched successfully -2026-07-02 19:53:54 info: Get room started -2026-07-02 19:53:54 info: Get room executed successfully -2026-07-02 19:53:54 info: Transport created : 4db265ad-3238-4bfe-95f0-d8c9589469fe -2026-07-02 19:53:54 info: Get room started -2026-07-02 19:53:54 info: Get room executed successfully -2026-07-02 19:54:30 info: User disconnected QpA4x6u3_xvqkxk-AAAF beacuse of transport close -2026-07-02 19:54:31 info: Client connected: kKkGvAf0XlxnkCFoAAAH -2026-07-02 19:54:33 info: Create room started -2026-07-02 19:54:33 info: Creating worker started -2026-07-02 19:54:33 info: Worker created successfully -2026-07-02 19:54:33 info: Creation of router started -2026-07-02 19:54:33 info: Router created -2026-07-02 19:54:33 info: Creation of room successfully executed -2026-07-02 19:54:33 info: Get room started -2026-07-02 19:54:33 info: Get room executed successfully -2026-07-02 19:54:33 info: Broadcaster added to the room -2026-07-02 19:54:33 info: Room created successfully -2026-07-02 19:54:33 info: Get getRouterRtpCapabilities started -2026-07-02 19:54:33 info: Fetching of router started -2026-07-02 19:54:33 info: Fetching of router executed successfully -2026-07-02 19:54:33 info: Rtp capabilities fetched successfully -2026-07-02 19:54:34 info: Get room started -2026-07-02 19:54:34 info: Get room executed successfully -2026-07-02 19:54:34 info: Transport created : 6ecfabd3-d253-453a-8c85-fa993bc67037 -2026-07-02 19:54:34 info: Get room started -2026-07-02 19:54:34 info: Get room executed successfully -2026-07-02 19:54:36 info: User disconnected kKkGvAf0XlxnkCFoAAAH beacuse of transport error -2026-07-02 19:54:41 info: Client connected: imiabIeqEXhQA5WmAAAJ -2026-07-02 19:55:04 info: Create room started -2026-07-02 19:55:04 info: Creating worker started -2026-07-02 19:55:04 info: Worker created successfully -2026-07-02 19:55:04 info: Creation of router started -2026-07-02 19:55:04 info: Router created -2026-07-02 19:55:04 info: Creation of room successfully executed -2026-07-02 19:55:04 info: Get room started -2026-07-02 19:55:04 info: Get room executed successfully -2026-07-02 19:55:04 info: Broadcaster added to the room -2026-07-02 19:55:04 info: Room created successfully -2026-07-02 19:55:05 info: Get getRouterRtpCapabilities started -2026-07-02 19:55:05 info: Fetching of router started -2026-07-02 19:55:05 info: Fetching of router executed successfully -2026-07-02 19:55:05 info: Rtp capabilities fetched successfully -2026-07-02 19:55:05 info: Get room started -2026-07-02 19:55:05 info: Get room executed successfully -2026-07-02 19:55:05 info: Transport created : 9f6691f5-0347-4bef-bc75-e68209fd7a27 -2026-07-02 19:55:05 info: Get room started -2026-07-02 19:55:05 info: Get room executed successfully -2026-07-02 19:55:12 info: User disconnected imiabIeqEXhQA5WmAAAJ beacuse of transport close -2026-07-02 19:55:14 info: Client connected: GQa6fVMRaM8-nRGhAAAL -2026-07-02 19:55:24 info: Client connected: ObwiHH9k60B2rETWAAAN -2026-07-02 19:55:25 info: Create room started -2026-07-02 19:55:25 info: Creating worker started -2026-07-02 19:55:26 info: Worker created successfully -2026-07-02 19:55:26 info: Creation of router started -2026-07-02 19:55:26 info: Router created -2026-07-02 19:55:26 info: Creation of room successfully executed -2026-07-02 19:55:26 info: Get room started -2026-07-02 19:55:26 info: Get room executed successfully -2026-07-02 19:55:26 info: Broadcaster added to the room -2026-07-02 19:55:26 info: Room created successfully -2026-07-02 19:55:26 info: Get getRouterRtpCapabilities started -2026-07-02 19:55:26 info: Fetching of router started -2026-07-02 19:55:26 info: Fetching of router executed successfully -2026-07-02 19:55:26 info: Rtp capabilities fetched successfully -2026-07-02 19:55:26 info: Get room started -2026-07-02 19:55:26 info: Get room executed successfully -2026-07-02 19:55:26 info: Transport created : 8c2e13f1-966a-44c6-8ee7-9418272a31ca -2026-07-02 19:55:26 info: Get room started -2026-07-02 19:55:26 info: Get room executed successfully -2026-07-02 19:55:28 info: Connect broadcaster transport listener started -2026-07-02 19:55:28 info: Get room started -2026-07-02 19:55:28 info: Get room executed successfully -2026-07-02 19:55:28 info: Connect broadcaster transport executed successfully -2026-07-02 19:55:28 info: Producer listener started -2026-07-02 19:55:28 info: Get room started -2026-07-02 19:55:28 info: Get room executed successfully -2026-07-02 19:55:28 info: Producer listener executed successfully: -2026-07-02 19:55:28 info: Producer listener started -2026-07-02 19:55:28 info: Get room started -2026-07-02 19:55:28 info: Get room executed successfully -2026-07-02 19:55:28 info: Producer listener executed successfully: -2026-07-02 19:55:51 info: Join as viewer listner started -2026-07-02 19:55:51 info: Get room started -2026-07-02 19:55:51 info: Get room executed successfully -2026-07-02 19:55:51 info: Viewer joined the room -2026-07-02 19:55:51 info: Get room started -2026-07-02 19:55:51 info: Get room executed successfully -2026-07-02 19:55:51 info: Fetching of router started -2026-07-02 19:55:51 info: Fetching of router executed successfully -2026-07-02 19:55:51 info: Join viewer listner successfully executed -2026-07-02 19:55:52 info: Create viewer transport listner started -2026-07-02 19:55:52 info: Get room started -2026-07-02 19:55:52 info: Get room executed successfully -2026-07-02 19:55:52 info: Get room started -2026-07-02 19:55:52 info: Get room executed successfully -2026-07-02 19:55:52 info: Transport created : 949c7c3a-8ea8-4241-a24b-5fe0c32ba8a7 -2026-07-02 19:55:52 info: Viewer transport successfully created -2026-07-02 19:55:52 info: Create viewer transport listner successfully executed -2026-07-02 19:55:52 info: Consume lister started -2026-07-02 19:55:52 info: Get room started -2026-07-02 19:55:52 info: Get room executed successfully -2026-07-02 19:55:52 info: Get room started -2026-07-02 19:55:52 info: Get room executed successfully -2026-07-02 19:55:52 info: Get room started -2026-07-02 19:55:52 info: Get room executed successfully -2026-07-02 19:55:52 info: Viewer media consume successfully executed -2026-07-02 19:55:52 info: Consume lister executed successfully -2026-07-02 19:55:53 info: Connect consumer listner started -2026-07-02 19:55:53 info: Get room started -2026-07-02 19:55:53 info: Get room executed successfully -2026-07-02 19:55:53 info: Consumer transport connected successfully -2026-07-02 19:55:53 info: Connect consumer listner executed successfully -2026-07-02 19:55:53 info: Get room started -2026-07-02 19:55:53 info: Get room executed successfully -2026-07-02 19:55:53 info: Viewer consumer resumed -2026-07-02 19:55:53 info: Resume consumer listener executed successfully -2026-07-02 19:55:53 info: Get room started -2026-07-02 19:55:53 info: Get room executed successfully -2026-07-02 19:55:53 info: Viewer consumer resumed -2026-07-02 19:55:53 info: Resume consumer listener executed successfully -2026-07-02 20:00:09 info: User disconnected GQa6fVMRaM8-nRGhAAAL beacuse of transport close -2026-07-02 20:00:11 info: Client connected: RgxYZwix7olLHPmwAAAP -2026-07-02 20:00:15 info: Join as viewer listner started -2026-07-02 20:00:15 info: Get room started -2026-07-02 20:00:15 info: Get room executed successfully -2026-07-02 20:00:15 info: Viewer joined the room -2026-07-02 20:00:15 info: Get room started -2026-07-02 20:00:15 info: Get room executed successfully -2026-07-02 20:00:15 info: Fetching of router started -2026-07-02 20:00:15 info: Fetching of router executed successfully -2026-07-02 20:00:15 info: Join viewer listner successfully executed -2026-07-02 20:00:15 info: Create viewer transport listner started -2026-07-02 20:00:15 info: Get room started -2026-07-02 20:00:15 info: Get room executed successfully -2026-07-02 20:00:15 info: Get room started -2026-07-02 20:00:15 info: Get room executed successfully -2026-07-02 20:00:15 info: Transport created : e983ebb4-05d9-4a23-b02e-9ce61bd78466 -2026-07-02 20:00:15 info: Viewer transport successfully created -2026-07-02 20:00:15 info: Create viewer transport listner successfully executed -2026-07-02 20:00:16 info: Consume lister started -2026-07-02 20:00:16 info: Get room started -2026-07-02 20:00:16 info: Get room executed successfully -2026-07-02 20:00:16 info: Get room started -2026-07-02 20:00:16 info: Get room executed successfully -2026-07-02 20:00:16 info: Get room started -2026-07-02 20:00:16 info: Get room executed successfully -2026-07-02 20:00:16 info: Viewer media consume successfully executed -2026-07-02 20:00:16 info: Consume lister executed successfully -2026-07-02 20:00:18 info: Connect consumer listner started -2026-07-02 20:00:18 info: Get room started -2026-07-02 20:00:18 info: Get room executed successfully -2026-07-02 20:00:18 info: Consumer transport connected successfully -2026-07-02 20:00:18 info: Connect consumer listner executed successfully -2026-07-02 20:00:19 info: Get room started -2026-07-02 20:00:19 info: Get room executed successfully -2026-07-02 20:00:19 info: Viewer consumer resumed -2026-07-02 20:00:19 info: Resume consumer listener executed successfully -2026-07-02 20:00:19 info: Get room started -2026-07-02 20:00:19 info: Get room executed successfully -2026-07-02 20:00:19 info: Viewer consumer resumed -2026-07-02 20:00:19 info: Resume consumer listener executed successfully -2026-07-02 20:02:14 info: User disconnected ObwiHH9k60B2rETWAAAN beacuse of transport close -2026-07-02 20:03:15 info: User disconnected RgxYZwix7olLHPmwAAAP beacuse of transport close -2026-07-02 20:27:22 info: Client connected: Loz3T9JV4QqWUXpzAAAB -2026-07-02 20:27:28 info: Create room started -2026-07-02 20:27:28 info: Creating worker started -2026-07-02 20:27:28 info: Worker created successfully -2026-07-02 20:27:28 info: Creation of router started -2026-07-02 20:27:28 info: Router created -2026-07-02 20:27:28 info: Creation of room successfully executed -2026-07-02 20:27:28 info: Get room started -2026-07-02 20:27:28 info: Get room executed successfully -2026-07-02 20:27:28 info: Broadcaster added to the room -2026-07-02 20:27:28 info: Room created successfully -2026-07-02 20:27:28 info: Get getRouterRtpCapabilities started -2026-07-02 20:27:28 info: Fetching of router started -2026-07-02 20:27:28 info: Fetching of router executed successfully -2026-07-02 20:27:28 info: Rtp capabilities fetched successfully -2026-07-02 20:27:28 info: Get room started -2026-07-02 20:27:28 info: Get room executed successfully -2026-07-02 20:27:28 info: Transport created : 7e64d540-901d-4d19-a1aa-f898fa95a836 -2026-07-02 20:27:28 info: Get room started -2026-07-02 20:27:28 info: Get room executed successfully -2026-07-02 20:27:31 info: Connect broadcaster transport listener started -2026-07-02 20:27:31 info: Get room started -2026-07-02 20:27:31 info: Get room executed successfully -2026-07-02 20:27:31 info: Connect broadcaster transport executed successfully -2026-07-02 20:27:31 info: Producer listener started -2026-07-02 20:27:31 info: Get room started -2026-07-02 20:27:31 info: Get room executed successfully -2026-07-02 20:27:31 info: Producer listener executed successfully: -2026-07-02 20:27:31 info: Producer listener started -2026-07-02 20:27:31 info: Get room started -2026-07-02 20:27:31 info: Get room executed successfully -2026-07-02 20:27:31 info: Producer listener executed successfully: -2026-07-02 20:28:08 info: Client connected: rA3UHRnmfoWs3mlPAAAD -2026-07-02 20:28:14 info: Join as viewer listner started -2026-07-02 20:28:14 info: Get room started -2026-07-02 20:28:14 info: Get room executed successfully -2026-07-02 20:28:14 info: Viewer joined the room -2026-07-02 20:28:14 info: Get room started -2026-07-02 20:28:14 info: Get room executed successfully -2026-07-02 20:28:14 info: Fetching of router started -2026-07-02 20:28:14 info: Fetching of router executed successfully -2026-07-02 20:28:14 info: Join viewer listner successfully executed -2026-07-02 20:28:14 info: Create viewer transport listner started -2026-07-02 20:28:14 info: Get room started -2026-07-02 20:28:14 info: Get room executed successfully -2026-07-02 20:28:14 info: Get room started -2026-07-02 20:28:14 info: Get room executed successfully -2026-07-02 20:28:14 info: Transport created : e46d5d1a-bc03-4bfc-8321-412aa9ff2bd9 -2026-07-02 20:28:14 info: Viewer transport successfully created -2026-07-02 20:28:14 info: Create viewer transport listner successfully executed -2026-07-02 20:28:15 info: Consume lister started -2026-07-02 20:28:15 info: Get room started -2026-07-02 20:28:15 info: Get room executed successfully -2026-07-02 20:28:15 info: Get room started -2026-07-02 20:28:15 info: Get room executed successfully -2026-07-02 20:28:15 info: Get room started -2026-07-02 20:28:15 info: Get room executed successfully -2026-07-02 20:28:15 info: Viewer media consume successfully executed -2026-07-02 20:28:15 info: Consume lister executed successfully -2026-07-02 20:28:15 info: Connect consumer listner started -2026-07-02 20:28:15 info: Get room started -2026-07-02 20:28:15 info: Get room executed successfully -2026-07-02 20:28:15 info: Consumer transport connected successfully -2026-07-02 20:28:15 info: Connect consumer listner executed successfully -2026-07-02 20:28:16 info: Get room started -2026-07-02 20:28:16 info: Get room executed successfully -2026-07-02 20:28:16 info: Viewer consumer resumed -2026-07-02 20:28:16 info: Resume consumer listener executed successfully -2026-07-02 20:28:16 info: Get room started -2026-07-02 20:28:16 info: Get room executed successfully -2026-07-02 20:28:16 info: Viewer consumer resumed -2026-07-02 20:28:16 info: Resume consumer listener executed successfully -2026-07-02 20:29:09 info: User disconnected Loz3T9JV4QqWUXpzAAAB beacuse of transport close -2026-07-02 20:29:10 info: Client connected: ZlaUHglW7p_9KoAFAAAF -2026-07-02 20:30:37 info: Create room started -2026-07-02 20:30:37 info: Creating worker started -2026-07-02 20:30:37 info: Worker created successfully -2026-07-02 20:30:37 info: Creation of router started -2026-07-02 20:30:37 info: Router created -2026-07-02 20:30:37 info: Creation of room successfully executed -2026-07-02 20:30:37 info: Get room started -2026-07-02 20:30:37 info: Get room executed successfully -2026-07-02 20:30:37 info: Broadcaster added to the room -2026-07-02 20:30:37 info: Room created successfully -2026-07-02 20:30:37 info: Get getRouterRtpCapabilities started -2026-07-02 20:30:37 info: Fetching of router started -2026-07-02 20:30:37 info: Fetching of router executed successfully -2026-07-02 20:30:37 info: Rtp capabilities fetched successfully -2026-07-02 20:30:37 info: Get room started -2026-07-02 20:30:37 info: Get room executed successfully -2026-07-02 20:30:37 info: Transport created : cdaa303b-5a8e-4df4-aeb6-8c6a7bfd238c -2026-07-02 20:30:37 info: Get room started -2026-07-02 20:30:37 info: Get room executed successfully -2026-07-02 20:30:37 info: Connect broadcaster transport listener started -2026-07-02 20:30:37 info: Get room started -2026-07-02 20:30:37 info: Get room executed successfully -2026-07-02 20:30:37 info: Connect broadcaster transport executed successfully -2026-07-02 20:30:37 info: Producer listener started -2026-07-02 20:30:37 info: Get room started -2026-07-02 20:30:37 info: Get room executed successfully -2026-07-02 20:30:37 info: Producer listener executed successfully: -2026-07-02 20:30:37 info: Producer listener started -2026-07-02 20:30:37 info: Get room started -2026-07-02 20:30:37 info: Get room executed successfully -2026-07-02 20:30:37 info: Producer listener executed successfully: -2026-07-02 20:32:53 info: Client connected: TLYpCHajpL89taCZAAAH -2026-07-02 20:33:08 info: User disconnected rA3UHRnmfoWs3mlPAAAD beacuse of ping timeout -2026-07-02 20:35:32 info: User disconnected ZlaUHglW7p_9KoAFAAAF beacuse of transport close -2026-07-02 20:35:32 info: Client connected: YHrM6d3j7v2978r7AAAJ -2026-07-02 20:35:50 info: Create room started -2026-07-02 20:35:50 info: Creating worker started -2026-07-02 20:35:50 info: Worker created successfully -2026-07-02 20:35:50 info: Creation of router started -2026-07-02 20:35:50 info: Router created -2026-07-02 20:35:50 info: Creation of room successfully executed -2026-07-02 20:35:50 info: Get room started -2026-07-02 20:35:50 info: Get room executed successfully -2026-07-02 20:35:50 info: Broadcaster added to the room -2026-07-02 20:35:50 info: Room created successfully -2026-07-02 20:35:50 info: Get getRouterRtpCapabilities started -2026-07-02 20:35:50 info: Fetching of router started -2026-07-02 20:35:50 info: Fetching of router executed successfully -2026-07-02 20:35:50 info: Rtp capabilities fetched successfully -2026-07-02 20:35:50 info: Get room started -2026-07-02 20:35:50 info: Get room executed successfully -2026-07-02 20:35:50 info: Transport created : 1f7f11a8-988f-490e-aabd-23ac722c3bec -2026-07-02 20:35:50 info: Get room started -2026-07-02 20:35:50 info: Get room executed successfully -2026-07-02 20:35:50 info: Connect broadcaster transport listener started -2026-07-02 20:35:50 info: Get room started -2026-07-02 20:35:50 info: Get room executed successfully -2026-07-02 20:35:50 info: Connect broadcaster transport executed successfully -2026-07-02 20:35:50 info: Producer listener started -2026-07-02 20:35:50 info: Get room started -2026-07-02 20:35:50 info: Get room executed successfully -2026-07-02 20:35:50 info: Producer listener executed successfully: -2026-07-02 20:35:50 info: Producer listener started -2026-07-02 20:35:50 info: Get room started -2026-07-02 20:35:50 info: Get room executed successfully -2026-07-02 20:35:50 info: Producer listener executed successfully: -2026-07-02 20:35:58 info: User disconnected TLYpCHajpL89taCZAAAH beacuse of transport close -2026-07-02 20:35:59 info: Client connected: yiS9WREYIfR7u26SAAAL -2026-07-02 20:36:11 info: Join as viewer listner started -2026-07-02 20:36:11 info: Get room started -2026-07-02 20:36:11 info: Get room executed successfully -2026-07-02 20:36:11 info: Viewer joined the room -2026-07-02 20:36:11 info: Get room started -2026-07-02 20:36:11 info: Get room executed successfully -2026-07-02 20:36:11 info: Fetching of router started -2026-07-02 20:36:11 info: Fetching of router executed successfully -2026-07-02 20:36:11 info: Join viewer listner successfully executed -2026-07-02 20:36:11 info: Create viewer transport listner started -2026-07-02 20:36:11 info: Get room started -2026-07-02 20:36:11 info: Get room executed successfully -2026-07-02 20:36:11 info: Get room started -2026-07-02 20:36:11 info: Get room executed successfully -2026-07-02 20:36:11 info: Transport created : 682cd5ad-a959-48d6-a224-bf49d419f57a -2026-07-02 20:36:11 info: Viewer transport successfully created -2026-07-02 20:36:11 info: Create viewer transport listner successfully executed -2026-07-02 20:36:11 info: Consume lister started -2026-07-02 20:36:11 info: Get room started -2026-07-02 20:36:11 info: Get room executed successfully -2026-07-02 20:36:11 info: Get room started -2026-07-02 20:36:11 info: Get room executed successfully -2026-07-02 20:36:11 info: Get room started -2026-07-02 20:36:11 info: Get room executed successfully -2026-07-02 20:36:11 info: Viewer media consume successfully executed -2026-07-02 20:36:11 info: Consume lister executed successfully -2026-07-02 20:36:12 info: Connect consumer listner started -2026-07-02 20:36:12 info: Get room started -2026-07-02 20:36:12 info: Get room executed successfully -2026-07-02 20:36:12 info: Consumer transport connected successfully -2026-07-02 20:36:12 info: Connect consumer listner executed successfully -2026-07-02 20:36:12 info: Get room started -2026-07-02 20:36:12 info: Get room executed successfully -2026-07-02 20:36:12 info: Viewer consumer resumed -2026-07-02 20:36:12 info: Resume consumer listener executed successfully -2026-07-02 20:36:12 info: Get room started -2026-07-02 20:36:12 info: Get room executed successfully -2026-07-02 20:36:12 info: Viewer consumer resumed -2026-07-02 20:36:12 info: Resume consumer listener executed successfully -2026-07-02 20:40:15 info: User disconnected yiS9WREYIfR7u26SAAAL beacuse of transport close -2026-07-02 20:40:16 info: Client connected: O6ryFAg3zmgGgJj0AAAN -2026-07-02 20:40:20 info: Join as viewer listner started -2026-07-02 20:40:20 info: Get room started -2026-07-02 20:40:20 info: Get room executed successfully -2026-07-02 20:40:20 info: Viewer joined the room -2026-07-02 20:40:20 info: Get room started -2026-07-02 20:40:20 info: Get room executed successfully -2026-07-02 20:40:20 info: Fetching of router started -2026-07-02 20:40:20 info: Fetching of router executed successfully -2026-07-02 20:40:20 info: Join viewer listner successfully executed -2026-07-02 20:40:20 info: Create viewer transport listner started -2026-07-02 20:40:20 info: Get room started -2026-07-02 20:40:20 info: Get room executed successfully -2026-07-02 20:40:20 info: Get room started -2026-07-02 20:40:20 info: Get room executed successfully -2026-07-02 20:40:20 info: Transport created : 5985fd6b-fd36-4c72-8f6e-7ba338810524 -2026-07-02 20:40:20 info: Viewer transport successfully created -2026-07-02 20:40:20 info: Create viewer transport listner successfully executed -2026-07-02 20:40:21 info: Consume lister started -2026-07-02 20:40:21 info: Get room started -2026-07-02 20:40:21 info: Get room executed successfully -2026-07-02 20:40:21 info: Get room started -2026-07-02 20:40:21 info: Get room executed successfully -2026-07-02 20:40:21 info: Get room started -2026-07-02 20:40:21 info: Get room executed successfully -2026-07-02 20:40:21 info: Viewer media consume successfully executed -2026-07-02 20:40:21 info: Consume lister executed successfully -2026-07-02 20:40:21 info: Connect consumer listner started -2026-07-02 20:40:21 info: Get room started -2026-07-02 20:40:21 info: Get room executed successfully -2026-07-02 20:40:21 info: Consumer transport connected successfully -2026-07-02 20:40:21 info: Connect consumer listner executed successfully -2026-07-02 20:40:21 info: Get room started -2026-07-02 20:40:21 info: Get room executed successfully -2026-07-02 20:40:21 info: Viewer consumer resumed -2026-07-02 20:40:21 info: Resume consumer listener executed successfully -2026-07-02 20:40:21 info: Get room started -2026-07-02 20:40:21 info: Get room executed successfully -2026-07-02 20:40:21 info: Viewer consumer resumed -2026-07-02 20:40:21 info: Resume consumer listener executed successfully -2026-07-02 20:40:57 info: User disconnected YHrM6d3j7v2978r7AAAJ beacuse of transport close -2026-07-02 22:00:12 info: Client connected: 7gjR3Yc0U-9Q8CwqAAAB -2026-07-02 22:00:15 info: Create room started -2026-07-02 22:00:15 info: Creating worker started -2026-07-02 22:00:15 info: Worker created successfully -2026-07-02 22:00:15 info: Creation of router started -2026-07-02 22:00:15 info: Router created -2026-07-02 22:00:15 info: Creation of room successfully executed -2026-07-02 22:00:15 info: Get room started -2026-07-02 22:00:15 info: Get room executed successfully -2026-07-02 22:00:15 info: Broadcaster added to the room -2026-07-02 22:00:15 info: Room created successfully -2026-07-02 22:00:15 info: Get getRouterRtpCapabilities started -2026-07-02 22:00:15 info: Fetching of router started -2026-07-02 22:00:15 info: Fetching of router executed successfully -2026-07-02 22:00:15 info: Rtp capabilities fetched successfully -2026-07-02 22:00:15 info: Get room started -2026-07-02 22:00:15 info: Get room executed successfully -2026-07-02 22:00:15 info: Transport created : 766f0b9f-7772-4c34-b33f-768f65c0c082 -2026-07-02 22:00:15 info: Get room started -2026-07-02 22:00:15 info: Get room executed successfully -2026-07-02 22:00:17 info: Connect broadcaster transport listener started -2026-07-02 22:00:17 info: Get room started -2026-07-02 22:00:17 info: Get room executed successfully -2026-07-02 22:00:17 info: Connect broadcaster transport executed successfully -2026-07-02 22:00:17 info: Producer listener started -2026-07-02 22:00:17 info: Get room started -2026-07-02 22:00:17 info: Get room executed successfully -2026-07-02 22:00:17 info: Producer listener executed successfully: -2026-07-02 22:00:18 info: Producer listener started -2026-07-02 22:00:18 info: Get room started -2026-07-02 22:00:18 info: Get room executed successfully -2026-07-02 22:00:18 info: Producer listener executed successfully: -2026-07-02 22:01:07 info: User disconnected 7gjR3Yc0U-9Q8CwqAAAB beacuse of transport close -2026-07-02 22:01:08 info: Client connected: 5vxdWxDBZco9erVKAAAD -2026-07-02 22:01:49 info: Create room started -2026-07-02 22:01:49 info: Creating worker started -2026-07-02 22:01:49 info: Worker created successfully -2026-07-02 22:01:49 info: Creation of router started -2026-07-02 22:01:49 info: Router created -2026-07-02 22:01:49 info: Creation of room successfully executed -2026-07-02 22:01:49 info: Get room started -2026-07-02 22:01:49 info: Get room executed successfully -2026-07-02 22:01:49 info: Broadcaster added to the room -2026-07-02 22:01:49 info: Room created successfully -2026-07-02 22:01:49 info: Get getRouterRtpCapabilities started -2026-07-02 22:01:49 info: Fetching of router started -2026-07-02 22:01:49 info: Fetching of router executed successfully -2026-07-02 22:01:49 info: Rtp capabilities fetched successfully -2026-07-02 22:01:49 info: Get room started -2026-07-02 22:01:49 info: Get room executed successfully -2026-07-02 22:01:49 info: Transport created : 3d952252-8a9e-4dd7-b80a-5d9b0a119a56 -2026-07-02 22:01:49 info: Get room started -2026-07-02 22:01:49 info: Get room executed successfully -2026-07-02 22:01:49 info: Connect broadcaster transport listener started -2026-07-02 22:01:49 info: Get room started -2026-07-02 22:01:49 info: Get room executed successfully -2026-07-02 22:01:49 info: Connect broadcaster transport executed successfully -2026-07-02 22:01:49 info: Producer listener started -2026-07-02 22:01:49 info: Get room started -2026-07-02 22:01:49 info: Get room executed successfully -2026-07-02 22:01:49 info: Producer listener executed successfully: -2026-07-02 22:01:49 info: Producer listener started -2026-07-02 22:01:49 info: Get room started -2026-07-02 22:01:49 info: Get room executed successfully -2026-07-02 22:01:49 info: Producer listener executed successfully: -2026-07-02 22:02:34 info: User disconnected 5vxdWxDBZco9erVKAAAD beacuse of transport close -2026-07-02 22:02:34 info: Client connected: Lnzl2ebHcPLg0QRvAAAF -2026-07-02 22:04:49 info: User disconnected Lnzl2ebHcPLg0QRvAAAF beacuse of transport close -2026-07-02 22:04:50 info: Client connected: ggqhFyUbMXLi7FfcAAAH -2026-07-02 22:04:51 info: Create room started -2026-07-02 22:04:51 info: Creating worker started -2026-07-02 22:04:51 info: Worker created successfully -2026-07-02 22:04:51 info: Creation of router started -2026-07-02 22:04:51 info: Router created -2026-07-02 22:04:51 info: Creation of room successfully executed -2026-07-02 22:04:51 info: Get room started -2026-07-02 22:04:51 info: Get room executed successfully -2026-07-02 22:04:51 info: Broadcaster added to the room -2026-07-02 22:04:51 info: Room created successfully -2026-07-02 22:04:51 info: Get getRouterRtpCapabilities started -2026-07-02 22:04:51 info: Fetching of router started -2026-07-02 22:04:51 info: Fetching of router executed successfully -2026-07-02 22:04:51 info: Rtp capabilities fetched successfully -2026-07-02 22:04:51 info: Get room started -2026-07-02 22:04:51 info: Get room executed successfully -2026-07-02 22:04:51 info: Transport created : ec506d7a-10d5-479d-8919-f48395d2dbad -2026-07-02 22:04:51 info: Get room started -2026-07-02 22:04:51 info: Get room executed successfully -2026-07-02 22:04:51 info: Connect broadcaster transport listener started -2026-07-02 22:04:51 info: Get room started -2026-07-02 22:04:51 info: Get room executed successfully -2026-07-02 22:04:51 info: Connect broadcaster transport executed successfully -2026-07-02 22:04:51 info: Producer listener started -2026-07-02 22:04:51 info: Get room started -2026-07-02 22:04:51 info: Get room executed successfully -2026-07-02 22:04:51 info: Producer listener executed successfully: -2026-07-02 22:04:51 info: Producer listener started -2026-07-02 22:04:51 info: Get room started -2026-07-02 22:04:51 info: Get room executed successfully -2026-07-02 22:04:51 info: Producer listener executed successfully: -2026-07-02 22:06:22 info: User disconnected ggqhFyUbMXLi7FfcAAAH beacuse of transport close -2026-07-02 22:07:43 info: Get room started -2026-07-02 22:07:43 info: Get room executed successfully -2026-07-02 22:07:43 info: Router closed -2026-07-02 22:07:43 info: MediaSoup worker died -2026-07-02 22:07:43 info: Get room started -2026-07-02 22:07:43 info: Get room executed successfully -2026-07-02 22:07:43 info: Get room started -2026-07-02 22:07:43 info: Get room executed successfully -2026-07-02 22:07:49 info: Get room started -2026-07-02 22:07:49 info: Get room executed successfully -2026-07-02 22:07:49 info: Router closed -2026-07-02 22:07:49 info: MediaSoup worker died -2026-07-02 22:07:49 info: Get room started -2026-07-02 22:07:49 info: Get room executed successfully -2026-07-02 22:07:49 info: Get room started -2026-07-02 22:07:49 info: Get room executed successfully -2026-07-02 22:07:55 info: Get room started -2026-07-02 22:07:55 info: Get room executed successfully -2026-07-02 22:07:55 info: Router closed -2026-07-02 22:07:55 info: MediaSoup worker died -2026-07-02 22:07:55 info: Get room started -2026-07-02 22:07:55 info: Get room executed successfully -2026-07-02 22:07:55 info: Get room started -2026-07-02 22:07:55 info: Get room executed successfully -2026-07-02 22:27:47 info: Client connected: pRI8r6B5FV_rN0woAAAB -2026-07-02 22:27:50 info: User disconnected pRI8r6B5FV_rN0woAAAB beacuse of transport close -2026-07-02 22:27:56 info: Client connected: u7yaAZK8KiRiAdEEAAAD -2026-07-02 22:28:44 info: Create room started -2026-07-02 22:28:44 info: Creating worker started -2026-07-02 22:28:44 info: Worker created successfully -2026-07-02 22:28:44 info: Creation of router started -2026-07-02 22:28:44 info: Router created -2026-07-02 22:28:44 info: Creation of room successfully executed -2026-07-02 22:28:44 info: Get room started -2026-07-02 22:28:44 info: Get room executed successfully -2026-07-02 22:28:44 info: Broadcaster added to the room -2026-07-02 22:28:44 info: Room created successfully -2026-07-02 22:28:44 info: Get getRouterRtpCapabilities started -2026-07-02 22:28:44 info: Fetching of router started -2026-07-02 22:28:44 info: Fetching of router executed successfully -2026-07-02 22:28:44 info: Rtp capabilities fetched successfully -2026-07-02 22:28:44 info: Get room started -2026-07-02 22:28:44 info: Get room executed successfully -2026-07-02 22:28:44 info: Transport created : 2b18ca0c-4e5a-4810-b769-4b6d2b782311 -2026-07-02 22:28:44 info: Get room started -2026-07-02 22:28:44 info: Get room executed successfully -2026-07-02 22:28:58 info: Connect broadcaster transport listener started -2026-07-02 22:28:58 info: Get room started -2026-07-02 22:28:58 info: Get room executed successfully -2026-07-02 22:28:58 info: Connect broadcaster transport executed successfully -2026-07-02 22:28:58 info: Producer listener started -2026-07-02 22:28:58 info: Get room started -2026-07-02 22:28:58 info: Get room executed successfully -2026-07-02 22:28:58 info: Producer listener executed successfully: -2026-07-02 22:28:58 info: Producer listener started -2026-07-02 22:28:58 info: Get room started -2026-07-02 22:28:58 info: Get room executed successfully -2026-07-02 22:28:58 info: Producer listener executed successfully: -2026-07-02 22:30:13 info: Client connected: gzT-_JuTF-_qIp6lAAAF -2026-07-02 22:30:21 info: Join as viewer listner started -2026-07-02 22:30:21 info: Get room started -2026-07-02 22:30:21 info: Get room executed successfully -2026-07-02 22:30:21 info: Viewer joined the room -2026-07-02 22:30:21 info: Get room started -2026-07-02 22:30:21 info: Get room executed successfully -2026-07-02 22:30:21 info: Fetching of router started -2026-07-02 22:30:21 info: Fetching of router executed successfully -2026-07-02 22:30:21 info: Join viewer listner successfully executed -2026-07-02 22:30:21 info: Create viewer transport listner started -2026-07-02 22:30:21 info: Get room started -2026-07-02 22:30:21 info: Get room executed successfully -2026-07-02 22:30:21 info: Get room started -2026-07-02 22:30:21 info: Get room executed successfully -2026-07-02 22:30:21 info: Transport created : a55d0c2d-af5b-469a-962c-9a6acb53c296 -2026-07-02 22:30:21 info: Viewer transport successfully created -2026-07-02 22:30:21 info: Create viewer transport listner successfully executed -2026-07-02 22:30:21 info: Consume lister started -2026-07-02 22:30:21 info: Get room started -2026-07-02 22:30:21 info: Get room executed successfully -2026-07-02 22:30:21 info: Get room started -2026-07-02 22:30:21 info: Get room executed successfully -2026-07-02 22:30:21 info: Get room started -2026-07-02 22:30:21 info: Get room executed successfully -2026-07-02 22:30:21 info: Viewer media consume successfully executed -2026-07-02 22:30:21 info: Consume lister executed successfully -2026-07-02 22:30:22 info: Connect consumer listner started -2026-07-02 22:30:22 info: Get room started -2026-07-02 22:30:22 info: Get room executed successfully -2026-07-02 22:30:22 info: Consumer transport connected successfully -2026-07-02 22:30:22 info: Connect consumer listner executed successfully -2026-07-02 22:30:22 info: Get room started -2026-07-02 22:30:22 info: Get room executed successfully -2026-07-02 22:30:22 info: Viewer consumer resumed -2026-07-02 22:30:22 info: Resume consumer listener executed successfully -2026-07-02 22:30:22 info: Get room started -2026-07-02 22:30:22 info: Get room executed successfully -2026-07-02 22:30:22 info: Viewer consumer resumed -2026-07-02 22:30:22 info: Resume consumer listener executed successfully -2026-07-02 22:30:54 info: User disconnected gzT-_JuTF-_qIp6lAAAF beacuse of transport close -2026-07-02 22:35:57 info: User disconnected u7yaAZK8KiRiAdEEAAAD beacuse of transport close -2026-07-02 23:07:27 info: Client connected: 61sFIQy3ehftZuPmAAAB -2026-07-02 23:07:28 info: Create room started -2026-07-02 23:07:28 info: Creating worker started -2026-07-02 23:07:28 info: Worker created successfully -2026-07-02 23:07:28 info: Creation of router started -2026-07-02 23:07:28 info: Router created -2026-07-02 23:07:28 info: Creation of room successfully executed -2026-07-02 23:07:28 info: Get room started -2026-07-02 23:07:28 info: Get room executed successfully -2026-07-02 23:07:28 info: Broadcaster added to the room -2026-07-02 23:07:28 info: Room created successfully -2026-07-02 23:07:28 info: Get getRouterRtpCapabilities started -2026-07-02 23:07:28 info: Fetching of router started -2026-07-02 23:07:28 info: Fetching of router executed successfully -2026-07-02 23:07:28 info: Rtp capabilities fetched successfully -2026-07-02 23:07:28 info: Get room started -2026-07-02 23:07:28 info: Get room executed successfully -2026-07-02 23:07:28 info: Transport created : f7e87c07-a9e1-4f88-8d09-a182d357e091 -2026-07-02 23:07:28 info: Get room started -2026-07-02 23:07:28 info: Get room executed successfully -2026-07-02 23:07:31 info: Connect broadcaster transport listener started -2026-07-02 23:07:31 info: Get room started -2026-07-02 23:07:31 info: Get room executed successfully -2026-07-02 23:07:31 info: Connect broadcaster transport executed successfully -2026-07-02 23:07:31 info: Producer listener started -2026-07-02 23:07:31 info: Get room started -2026-07-02 23:07:31 info: Get room executed successfully -2026-07-02 23:07:31 info: Producer listener executed successfully: -2026-07-02 23:07:31 info: Producer listener started -2026-07-02 23:07:31 info: Get room started -2026-07-02 23:07:31 info: Get room executed successfully -2026-07-02 23:07:31 info: Producer listener executed successfully: -2026-07-02 23:10:19 info: User disconnected 61sFIQy3ehftZuPmAAAB beacuse of transport close -2026-07-04 13:27:44 error: MongoParseError: Invalid scheme, expected connection string to start with "mongodb://" or "mongodb+srv://" - at new ConnectionString (/home/harshit/CrowdStream/backend/node_modules/mongodb-connection-string-url/src/index.ts:133:13) - at parseOptions (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/connection_string.ts:255:15) - at new MongoClient (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:443:32) - at NativeConnection.createClient (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/drivers/node-mongodb-native/connection.js:343:14) - at NativeConnection.openUri (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/connection.js:1075:34) - at Mongoose.connect (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/mongoose.js:450:15) - at connectToDataBase (/home/harshit/CrowdStream/backend/src/database/index.ts:15:39) - at Object. (/home/harshit/CrowdStream/backend/src/index.ts:37:18) - at Module._compile (node:internal/modules/cjs/loader:1873:14) - at Module.m._compile (/home/harshit/CrowdStream/backend/node_modules/ts-node/src/index.ts:1618:23) -2026-07-04 13:29:40 error: MongooseServerSelectionError: Could not connect to any servers in your MongoDB Atlas cluster. One common reason is that you're trying to access the database from an IP that isn't whitelisted. Make sure your current IP address is on your Atlas cluster's IP whitelist: https://www.mongodb.com/docs/atlas/security-whitelist/ - at _handleConnectionErrors (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/connection.js:1169:11) - at NativeConnection.openUri (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/connection.js:1100:11) - at async connectToDataBase (/home/harshit/CrowdStream/backend/src/database/index.ts:15:24) -2026-07-04 13:33:45 info: Database connected successfully -2026-07-04 13:33:59 info: Database connected successfully -2026-07-04 13:36:39 info: Database connected successfully -2026-07-04 13:37:55 error: JsonWebTokenError: jwt must be provided - at Object.module.exports [as verify] (/home/harshit/CrowdStream/backend/node_modules/jsonwebtoken/verify.js:60:17) - at verifyAccessToken (/home/harshit/CrowdStream/backend/src/utils/verifyJwt.ts:10:16) - at Array.socketAuth (/home/harshit/CrowdStream/backend/src/middlewares/authentication.middleware.ts:44:38) - at run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:133:19) - at Namespace.run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:144:9) - at Namespace._add (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:221:14) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-07-04 13:37:55 error: Error: Unauthorized - at verifyAccessToken (/home/harshit/CrowdStream/backend/src/utils/verifyJwt.ts:19:11) - at Array.socketAuth (/home/harshit/CrowdStream/backend/src/middlewares/authentication.middleware.ts:44:38) - at run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:133:19) - at Namespace.run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:144:9) - at Namespace._add (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:221:14) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-07-04 13:44:53 info: Database connected successfully -2026-07-04 14:07:27 info: Database connected successfully -2026-07-04 14:10:13 info: Database connected successfully -2026-07-04 14:11:11 info: Database connected successfully -2026-07-04 14:11:16 info: SignUp started -2026-07-04 14:11:16 error: Validation error "password" length must be at least 8 characters long -2026-07-04 14:11:25 info: SignUp started -2026-07-04 14:11:26 info: SignUp completed -2026-07-04 14:19:17 info: Database connected successfully -2026-07-04 14:19:36 info: SignIn started -2026-07-04 14:19:36 info: SignIn completed -2026-07-04 14:21:54 info: Database connected successfully -2026-07-04 14:21:54 info: Database connected successfully -2026-07-04 14:23:14 info: Database connected successfully -2026-07-04 14:24:22 info: Database connected successfully -2026-07-04 14:25:45 info: SignIn started -2026-07-04 14:25:45 info: SignIn completed -2026-07-04 14:32:04 info: Database connected successfully -2026-07-04 14:34:41 info: Database connected successfully -2026-07-04 14:37:20 info: SignIn started -2026-07-04 14:37:20 info: SignIn completed -2026-07-04 14:37:20 error: JsonWebTokenError: jwt must be provided - at Object.module.exports [as verify] (/home/harshit/CrowdStream/backend/node_modules/jsonwebtoken/verify.js:60:17) - at verifyAccessToken (/home/harshit/CrowdStream/backend/src/utils/verifyJwt.ts:10:16) - at Array.socketAuth (/home/harshit/CrowdStream/backend/src/middlewares/authentication.middleware.ts:44:38) - at run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:133:19) - at Namespace.run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:144:9) - at Namespace._add (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:221:14) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-07-04 14:37:20 error: Error: Unauthorized - at verifyAccessToken (/home/harshit/CrowdStream/backend/src/utils/verifyJwt.ts:19:11) - at Array.socketAuth (/home/harshit/CrowdStream/backend/src/middlewares/authentication.middleware.ts:44:38) - at run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:133:19) - at Namespace.run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:144:9) - at Namespace._add (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:221:14) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-07-04 14:40:47 info: Database connected successfully -2026-07-04 14:41:21 info: Database connected successfully -2026-07-04 14:41:34 info: SignIn started -2026-07-04 14:41:34 info: SignIn completed -2026-07-04 14:41:34 error: JsonWebTokenError: jwt must be provided - at Object.module.exports [as verify] (/home/harshit/CrowdStream/backend/node_modules/jsonwebtoken/verify.js:60:17) - at verifyAccessToken (/home/harshit/CrowdStream/backend/src/utils/verifyJwt.ts:10:16) - at Array.socketAuth (/home/harshit/CrowdStream/backend/src/middlewares/authentication.middleware.ts:46:38) - at run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:133:19) - at Namespace.run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:144:9) - at Namespace._add (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:221:14) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-07-04 14:41:34 error: Error: Unauthorized - at verifyAccessToken (/home/harshit/CrowdStream/backend/src/utils/verifyJwt.ts:19:11) - at Array.socketAuth (/home/harshit/CrowdStream/backend/src/middlewares/authentication.middleware.ts:46:38) - at run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:133:19) - at Namespace.run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:144:9) - at Namespace._add (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:221:14) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-07-04 14:43:12 info: Database connected successfully -2026-07-04 14:43:43 info: Database connected successfully -2026-07-04 14:43:49 info: Database connected successfully -2026-07-04 14:44:15 info: Database connected successfully -2026-07-04 14:44:53 info: Database connected successfully -2026-07-04 14:45:13 info: SignIn started -2026-07-04 14:45:13 info: SignIn completed -2026-07-04 14:45:13 info: Client connected: M_huQ4aWW0BcwpGkAAAB -2026-07-04 14:45:51 info: User disconnected M_huQ4aWW0BcwpGkAAAB beacuse of transport close -2026-07-04 17:23:57 info: Database connected successfully -2026-07-04 17:24:23 info: SignIn started -2026-07-04 17:24:23 error: User does not exist -2026-07-04 17:24:32 info: SignIn started -2026-07-04 17:24:33 info: SignIn completed -2026-07-04 17:24:33 info: Client connected: UfLVG4Von7I-sDzaAAAB -2026-07-04 17:25:37 info: SignIn started -2026-07-04 17:25:38 info: SignIn completed -2026-07-04 17:25:59 info: User disconnected UfLVG4Von7I-sDzaAAAB beacuse of transport close -2026-07-04 17:26:13 info: SignIn started -2026-07-04 17:26:13 info: SignIn completed -2026-07-04 17:26:13 info: Client connected: zr-1NN8zs1UZXoGBAAAD -2026-07-04 17:27:15 info: User disconnected zr-1NN8zs1UZXoGBAAAD beacuse of transport close -2026-07-04 17:27:23 info: SignIn started -2026-07-04 17:27:23 info: SignIn completed -2026-07-04 17:27:23 info: Client connected: yCtNmbE2wm7rRU8_AAAF -2026-07-04 17:28:09 info: User disconnected yCtNmbE2wm7rRU8_AAAF beacuse of transport close -2026-07-04 17:31:07 info: Database connected successfully -2026-07-04 17:31:30 info: Database connected successfully -2026-07-04 17:32:19 info: Database connected successfully -2026-07-04 17:32:31 info: SignIn started -2026-07-04 17:32:31 info: SignIn completed -2026-07-04 17:32:31 info: Client connected: iTj2Nj_65VBkPdqlAAAB -2026-07-04 17:33:44 info: Database connected successfully -2026-07-04 17:33:51 info: Database connected successfully -2026-07-04 17:33:54 info: Client connected: YLb7rAJTTzujIpwpAAAB -2026-07-04 17:34:02 info: SignIn started -2026-07-04 17:34:02 info: SignIn completed -2026-07-04 17:34:56 info: Database connected successfully -2026-07-04 17:34:58 error: JsonWebTokenError: jwt must be provided - at Object.module.exports [as verify] (/home/harshit/CrowdStream/backend/node_modules/jsonwebtoken/verify.js:60:17) - at verifyAccessToken (/home/harshit/CrowdStream/backend/src/utils/verifyJwt.ts:10:16) - at Array.socketAuth (/home/harshit/CrowdStream/backend/src/middlewares/authentication.middleware.ts:40:38) - at run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:133:19) - at Namespace.run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:144:9) - at Namespace._add (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:221:14) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-07-04 17:34:58 error: Error: Unauthorized - at verifyAccessToken (/home/harshit/CrowdStream/backend/src/utils/verifyJwt.ts:19:11) - at Array.socketAuth (/home/harshit/CrowdStream/backend/src/middlewares/authentication.middleware.ts:40:38) - at run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:133:19) - at Namespace.run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:144:9) - at Namespace._add (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:221:14) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-07-04 17:35:06 info: SignIn started -2026-07-04 17:35:06 info: SignIn completed -2026-07-04 17:35:06 info: Client connected: SnJrtrsnQhanPTN6AAAD -2026-07-04 17:37:37 info: Database connected successfully -2026-07-04 17:37:41 info: Client connected: p18kDGOhNsywl04pAAAB -2026-07-04 17:37:53 info: Database connected successfully -2026-07-04 17:37:58 info: Client connected: Z7WAGc1ZnBO8es99AAAB -2026-07-04 17:38:03 info: User disconnected Z7WAGc1ZnBO8es99AAAB beacuse of transport close -2026-07-04 17:38:49 info: Database connected successfully -2026-07-04 17:40:38 info: Database connected successfully -2026-07-04 17:40:56 info: SignIn started -2026-07-04 17:40:56 info: SignIn completed -2026-07-04 17:40:56 info: Client connected: BeHQB5UNCTZeAY1dAAAB -2026-07-04 17:41:17 info: Create room started -2026-07-04 17:41:17 info: Creating worker started -2026-07-04 17:41:17 info: Worker created successfully -2026-07-04 17:41:17 info: Creation of router started -2026-07-04 17:41:17 info: Router created -2026-07-04 17:41:17 info: Creation of room successfully executed -2026-07-04 17:41:17 info: Get room started -2026-07-04 17:41:17 info: Get room executed successfully -2026-07-04 17:41:17 info: Broadcaster added to the room -2026-07-04 17:41:17 info: Room created successfully -2026-07-04 17:41:17 info: Get getRouterRtpCapabilities started -2026-07-04 17:41:17 info: Fetching of router started -2026-07-04 17:41:17 info: Fetching of router executed successfully -2026-07-04 17:41:17 info: Rtp capabilities fetched successfully -2026-07-04 17:41:17 info: Get room started -2026-07-04 17:41:17 info: Get room executed successfully -2026-07-04 17:41:17 info: Transport created : 8aab940f-cc1b-4c59-94f4-b69664e9f594 -2026-07-04 17:41:17 info: Get room started -2026-07-04 17:41:17 info: Get room executed successfully -2026-07-04 17:41:19 info: Connect broadcaster transport listener started -2026-07-04 17:41:19 info: Get room started -2026-07-04 17:41:19 info: Get room executed successfully -2026-07-04 17:41:19 info: Connect broadcaster transport executed successfully -2026-07-04 17:41:19 info: Producer listener started -2026-07-04 17:41:19 info: Get room started -2026-07-04 17:41:19 info: Get room executed successfully -2026-07-04 17:41:19 info: Producer listener executed successfully: -2026-07-04 17:41:19 info: Producer listener started -2026-07-04 17:41:19 info: Get room started -2026-07-04 17:41:19 info: Get room executed successfully -2026-07-04 17:41:19 info: Producer listener executed successfully: -2026-07-04 17:41:52 info: User disconnected BeHQB5UNCTZeAY1dAAAB beacuse of transport close -2026-07-04 18:32:21 info: Database connected successfully -2026-07-04 18:32:32 info: SignIn started -2026-07-04 18:32:32 info: SignIn completed -2026-07-04 18:32:32 info: Client connected: 7gjGLDw913NTXi2oAAAB -2026-07-04 18:32:37 info: Create room started -2026-07-04 18:32:37 info: Creating worker started -2026-07-04 18:32:37 info: Worker created successfully -2026-07-04 18:32:37 info: Creation of router started -2026-07-04 18:32:37 info: Router created -2026-07-04 18:32:37 info: Creation of room successfully executed -2026-07-04 18:32:37 info: Get room started -2026-07-04 18:32:37 info: Get room executed successfully -2026-07-04 18:32:37 info: Broadcaster added to the room -2026-07-04 18:32:37 info: Room created successfully -2026-07-04 18:32:37 info: Get getRouterRtpCapabilities started -2026-07-04 18:32:37 info: Fetching of router started -2026-07-04 18:32:37 info: Fetching of router executed successfully -2026-07-04 18:32:37 info: Rtp capabilities fetched successfully -2026-07-04 18:32:37 info: Get room started -2026-07-04 18:32:37 info: Get room executed successfully -2026-07-04 18:32:37 info: Transport created : df0aa570-22c3-43be-a30a-4f60046be904 -2026-07-04 18:32:37 info: Get room started -2026-07-04 18:32:37 info: Get room executed successfully -2026-07-04 18:32:39 info: Connect broadcaster transport listener started -2026-07-04 18:32:39 info: Get room started -2026-07-04 18:32:39 info: Get room executed successfully -2026-07-04 18:32:39 info: Connect broadcaster transport executed successfully -2026-07-04 18:32:39 info: Transport ICE state changed -2026-07-04 18:32:39 info: Transport DTLS state changed -2026-07-04 18:32:39 info: Producer listener started -2026-07-04 18:32:39 info: Get room started -2026-07-04 18:32:39 info: Get room executed successfully -2026-07-04 18:32:39 info: Producer listener executed successfully: -2026-07-04 18:32:39 info: Transport DTLS state changed -2026-07-04 18:32:39 info: Producer listener started -2026-07-04 18:32:39 info: Get room started -2026-07-04 18:32:39 info: Get room executed successfully -2026-07-04 18:32:39 info: Producer listener executed successfully: -2026-07-04 18:37:20 info: User disconnected 7gjGLDw913NTXi2oAAAB beacuse of transport close -2026-07-04 18:37:20 info: Transport DTLS state changed -2026-07-04 18:37:48 info: Transport ICE state changed -2026-07-04 18:38:19 info: SignIn started -2026-07-04 18:38:19 info: SignIn completed -2026-07-04 18:38:19 info: Client connected: CzlQqtiO7QtlN1v8AAAD -2026-07-04 18:38:22 info: Create room started -2026-07-04 18:38:22 info: Creating worker started -2026-07-04 18:38:22 info: Worker created successfully -2026-07-04 18:38:22 info: Creation of router started -2026-07-04 18:38:22 info: Router created -2026-07-04 18:38:22 info: Creation of room successfully executed -2026-07-04 18:38:22 info: Get room started -2026-07-04 18:38:22 info: Get room executed successfully -2026-07-04 18:38:22 info: Broadcaster added to the room -2026-07-04 18:38:22 info: Room created successfully -2026-07-04 18:38:22 info: Get getRouterRtpCapabilities started -2026-07-04 18:38:22 info: Fetching of router started -2026-07-04 18:38:22 info: Fetching of router executed successfully -2026-07-04 18:38:22 info: Rtp capabilities fetched successfully -2026-07-04 18:38:22 info: Get room started -2026-07-04 18:38:22 info: Get room executed successfully -2026-07-04 18:38:22 info: Transport created : 08d27a59-0df4-42bc-a6fd-f380573259b3 -2026-07-04 18:38:22 info: Get room started -2026-07-04 18:38:22 info: Get room executed successfully -2026-07-04 18:38:24 info: Create room started -2026-07-04 18:38:24 info: Creating worker started -2026-07-04 18:38:24 info: Worker created successfully -2026-07-04 18:38:24 info: Creation of router started -2026-07-04 18:38:24 info: Router created -2026-07-04 18:38:24 info: Creation of room successfully executed -2026-07-04 18:38:24 info: Get room started -2026-07-04 18:38:24 info: Get room executed successfully -2026-07-04 18:38:24 info: Broadcaster added to the room -2026-07-04 18:38:24 info: Room created successfully -2026-07-04 18:38:24 info: Get getRouterRtpCapabilities started -2026-07-04 18:38:24 info: Fetching of router started -2026-07-04 18:38:24 info: Fetching of router executed successfully -2026-07-04 18:38:24 info: Rtp capabilities fetched successfully -2026-07-04 18:38:24 info: Get room started -2026-07-04 18:38:24 info: Get room executed successfully -2026-07-04 18:38:24 info: Transport created : d3405319-3311-40d8-af7c-0d1ff42a6e9b -2026-07-04 18:38:24 info: Get room started -2026-07-04 18:38:24 info: Get room executed successfully -2026-07-04 18:38:25 info: Connect broadcaster transport listener started -2026-07-04 18:38:25 info: Get room started -2026-07-04 18:38:25 info: Get room executed successfully -2026-07-04 18:38:25 info: Connect broadcaster transport executed successfully -2026-07-04 18:38:25 info: Transport ICE state changed -2026-07-04 18:38:25 info: Transport DTLS state changed -2026-07-04 18:38:25 info: Producer listener started -2026-07-04 18:38:25 info: Get room started -2026-07-04 18:38:25 info: Get room executed successfully -2026-07-04 18:38:25 info: Producer listener executed successfully: -2026-07-04 18:38:25 info: Transport DTLS state changed -2026-07-04 18:38:25 info: Producer listener started -2026-07-04 18:38:25 info: Get room started -2026-07-04 18:38:25 info: Get room executed successfully -2026-07-04 18:38:25 info: Producer listener executed successfully: -2026-07-04 18:38:25 info: Producer listener started -2026-07-04 18:38:25 info: Get room started -2026-07-04 18:38:25 info: Get room executed successfully -2026-07-04 18:38:25 info: Producer listener executed successfully: -2026-07-04 18:38:25 info: Producer listener started -2026-07-04 18:38:25 info: Get room started -2026-07-04 18:38:25 info: Get room executed successfully -2026-07-04 18:38:25 info: Producer listener executed successfully: -2026-07-04 18:39:24 info: User disconnected CzlQqtiO7QtlN1v8AAAD beacuse of transport close -2026-07-04 18:39:24 info: Transport DTLS state changed -2026-07-04 18:39:53 info: Transport ICE state changed -2026-07-09 10:50:24 info: Database connected successfully -2026-07-09 10:50:24 info: Creating worker started -2026-07-09 10:50:24 info: Creating worker started -2026-07-09 10:50:24 info: Creating worker started -2026-07-09 10:50:24 info: Worker created successfully -2026-07-09 10:50:24 info: Worker created successfully -2026-07-09 10:50:24 info: Worker created successfully -2026-07-09 10:50:24 info: Worker pool initialized -2026-07-09 10:52:34 info: Database connected successfully -2026-07-09 10:52:34 info: Creating worker started -2026-07-09 10:52:34 info: Creating worker started -2026-07-09 10:52:34 info: Creating worker started -2026-07-09 10:52:34 info: Worker created successfully -2026-07-09 10:52:34 info: Worker created successfully -2026-07-09 10:52:34 info: Worker created successfully -2026-07-09 10:52:34 info: Worker pool initialized -2026-07-09 10:52:41 info: Database connected successfully -2026-07-09 10:52:41 info: Creating worker started -2026-07-09 10:52:41 info: Creating worker started -2026-07-09 10:52:41 info: Creating worker started -2026-07-09 10:52:41 info: Worker created successfully -2026-07-09 10:52:41 info: Worker created successfully -2026-07-09 10:52:41 info: Worker created successfully -2026-07-09 10:52:41 info: Worker pool initialized -2026-07-09 10:53:14 info: Database connected successfully -2026-07-09 10:53:14 info: Creating worker started -2026-07-09 10:53:14 info: Creating worker started -2026-07-09 10:53:14 info: Creating worker started -2026-07-09 10:53:14 info: Worker created successfully -2026-07-09 10:53:14 info: Worker created successfully -2026-07-09 10:53:14 info: Worker created successfully -2026-07-09 10:53:14 info: Worker pool initialized -2026-07-09 10:54:24 info: Database connected successfully -2026-07-09 10:54:24 info: Creating worker started -2026-07-09 10:54:24 info: Creating worker started -2026-07-09 10:54:24 info: Creating worker started -2026-07-09 10:54:24 info: Worker created successfully -2026-07-09 10:54:24 info: Worker created successfully -2026-07-09 10:54:24 info: Worker created successfully -2026-07-09 10:54:24 info: Worker pool initialized -2026-07-09 10:55:11 info: Database connected successfully -2026-07-09 10:55:11 info: Creating worker started -2026-07-09 10:55:11 info: Creating worker started -2026-07-09 10:55:11 info: Creating worker started -2026-07-09 10:55:11 info: Worker created successfully -2026-07-09 10:55:11 info: Worker created successfully -2026-07-09 10:55:11 info: Worker created successfully -2026-07-09 10:55:11 info: Worker pool initialized -2026-07-09 10:55:17 info: Database connected successfully -2026-07-09 10:55:17 info: Creating worker started -2026-07-09 10:55:17 info: Creating worker started -2026-07-09 10:55:17 info: Creating worker started -2026-07-09 10:55:17 info: Worker created successfully -2026-07-09 10:55:17 info: Worker created successfully -2026-07-09 10:55:17 info: Worker created successfully -2026-07-09 10:55:17 info: Worker pool initialized -2026-07-09 10:55:28 info: Database connected successfully -2026-07-09 10:55:28 info: Creating worker started -2026-07-09 10:55:28 info: Creating worker started -2026-07-09 10:55:28 info: Creating worker started -2026-07-09 10:55:28 info: Worker created successfully -2026-07-09 10:55:28 info: Worker created successfully -2026-07-09 10:55:28 info: Worker created successfully -2026-07-09 10:55:28 info: Worker pool initialized -2026-07-09 10:56:20 info: Database connected successfully -2026-07-09 10:56:20 info: Creating worker started -2026-07-09 10:56:20 info: Creating worker started -2026-07-09 10:56:20 info: Creating worker started -2026-07-09 10:56:20 info: Worker created successfully -2026-07-09 10:56:20 info: Worker created successfully -2026-07-09 10:56:20 info: Worker created successfully -2026-07-09 10:56:20 info: Worker pool initialized -2026-07-09 10:57:31 info: Database connected successfully -2026-07-09 10:57:31 info: Creating worker started -2026-07-09 10:57:31 info: Creating worker started -2026-07-09 10:57:31 info: Creating worker started -2026-07-09 10:57:31 info: Worker created successfully -2026-07-09 10:57:31 info: Worker created successfully -2026-07-09 10:57:31 info: Worker created successfully -2026-07-09 10:57:31 info: Worker pool initialized -2026-07-09 10:59:14 info: Database connected successfully -2026-07-09 10:59:14 info: Creating worker started -2026-07-09 10:59:14 info: Creating worker started -2026-07-09 10:59:14 info: Creating worker started -2026-07-09 10:59:14 info: Worker created successfully -2026-07-09 10:59:14 info: Worker created successfully -2026-07-09 10:59:14 info: Worker created successfully -2026-07-09 10:59:14 info: Worker pool initialized -2026-07-09 10:59:37 info: Database connected successfully -2026-07-09 10:59:37 info: Creating worker started -2026-07-09 10:59:37 info: Creating worker started -2026-07-09 10:59:37 info: Creating worker started -2026-07-09 10:59:37 info: Worker created successfully -2026-07-09 10:59:37 info: Worker created successfully -2026-07-09 10:59:37 info: Worker created successfully -2026-07-09 10:59:37 info: Worker pool initialized -2026-07-10 13:03:58 info: Database connected successfully -2026-07-10 13:03:58 info: Creating worker started -2026-07-10 13:03:58 info: Creating worker started -2026-07-10 13:03:58 info: Creating worker started -2026-07-10 13:03:58 info: Worker created successfully -2026-07-10 13:03:58 info: Worker created successfully -2026-07-10 13:03:58 info: Worker created successfully -2026-07-10 13:03:58 info: Worker pool initialized -2026-07-10 13:06:46 info: Database connected successfully -2026-07-10 13:08:14 info: Database connected successfully -2026-07-10 13:10:54 info: Database connected successfully -2026-07-10 13:10:54 info: Creating worker started -2026-07-10 13:10:54 info: Creating worker started -2026-07-10 13:10:54 info: Creating worker started -2026-07-10 13:10:54 info: Worker created successfully -2026-07-10 13:10:54 info: Worker created successfully -2026-07-10 13:10:54 info: Worker created successfully -2026-07-10 13:10:54 info: Worker pool initialized -2026-07-10 21:10:05 info: Database connected successfully -2026-07-10 21:10:05 info: Creating worker started -2026-07-10 21:10:05 info: Creating worker started -2026-07-10 21:10:05 info: Creating worker started -2026-07-10 21:10:05 info: Worker created successfully -2026-07-10 21:10:05 info: Worker created successfully -2026-07-10 21:10:05 info: Worker created successfully -2026-07-10 21:10:05 info: Worker pool initialized -2026-07-11 16:09:35 info: Database connected successfully -2026-07-11 16:09:35 info: Creating worker started -2026-07-11 16:09:35 info: Creating worker started -2026-07-11 16:09:35 info: Creating worker started -2026-07-11 16:09:35 info: Worker created successfully -2026-07-11 16:09:35 info: Worker created successfully -2026-07-11 16:09:35 info: Worker created successfully -2026-07-11 16:09:35 info: Worker pool initialized -2026-07-11 16:10:29 info: Database connected successfully -2026-07-11 16:10:29 info: Creating worker started -2026-07-11 16:10:29 info: Creating worker started -2026-07-11 16:10:29 info: Creating worker started -2026-07-11 16:10:29 info: Worker created successfully -2026-07-11 16:10:29 info: Worker created successfully -2026-07-11 16:10:29 info: Worker created successfully -2026-07-11 16:10:29 info: Worker pool initialized -2026-07-12 21:14:58 info: Database connected successfully -2026-07-12 21:14:58 info: Creating worker started -2026-07-12 21:14:58 info: Creating worker started -2026-07-12 21:14:58 info: Creating worker started -2026-07-12 21:14:58 info: Worker created successfully -2026-07-12 21:14:58 info: Worker created successfully -2026-07-12 21:14:58 info: Worker created successfully -2026-07-12 21:14:58 info: Worker pool initialized -2026-07-12 21:15:06 info: Database connected successfully -2026-07-12 21:15:06 info: Creating worker started -2026-07-12 21:15:06 info: Creating worker started -2026-07-12 21:15:06 info: Creating worker started -2026-07-12 21:15:06 info: Worker created successfully -2026-07-12 21:15:06 info: Worker created successfully -2026-07-12 21:15:06 info: Worker created successfully -2026-07-12 21:15:06 info: Worker pool initialized -2026-07-12 21:22:25 info: Database connected successfully -2026-07-12 21:22:25 info: Creating worker started -2026-07-12 21:22:25 info: Creating worker started -2026-07-12 21:22:25 info: Creating worker started -2026-07-12 21:22:25 info: Worker created successfully -2026-07-12 21:22:25 info: Worker created successfully -2026-07-12 21:22:25 info: Worker created successfully -2026-07-12 21:22:25 info: Worker pool initialized -2026-07-12 21:22:31 info: Database connected successfully -2026-07-12 21:22:31 info: Creating worker started -2026-07-12 21:22:31 info: Creating worker started -2026-07-12 21:22:31 info: Creating worker started -2026-07-12 21:22:31 info: Worker created successfully -2026-07-12 21:22:31 info: Worker created successfully -2026-07-12 21:22:31 info: Worker created successfully -2026-07-12 21:22:31 info: Worker pool initialized -2026-07-12 21:22:54 info: Database connected successfully -2026-07-12 21:22:54 info: Database connected successfully -2026-07-12 21:22:54 info: Creating worker started -2026-07-12 21:22:54 info: Creating worker started -2026-07-12 21:22:54 info: Creating worker started -2026-07-12 21:22:54 info: Worker created successfully -2026-07-12 21:22:54 info: Worker created successfully -2026-07-12 21:22:54 info: Worker created successfully -2026-07-12 21:22:54 info: Worker pool initialized -2026-07-12 21:22:54 info: Creating worker started -2026-07-12 21:22:54 info: Creating worker started -2026-07-12 21:22:54 info: Creating worker started -2026-07-12 21:22:54 info: Worker created successfully -2026-07-12 21:22:54 info: Worker created successfully -2026-07-12 21:22:54 info: Worker created successfully -2026-07-12 21:22:54 info: Worker pool initialized -2026-07-12 21:24:42 info: Database connected successfully -2026-07-12 21:24:42 info: Creating worker started -2026-07-12 21:24:42 info: Creating worker started -2026-07-12 21:24:42 info: Creating worker started -2026-07-12 21:24:42 info: Worker created successfully -2026-07-12 21:24:42 info: Worker created successfully -2026-07-12 21:24:42 info: Worker created successfully -2026-07-12 21:24:42 info: Worker pool initialized -2026-07-12 21:24:47 info: Database connected successfully -2026-07-12 21:24:47 info: Creating worker started -2026-07-12 21:24:47 info: Creating worker started -2026-07-12 21:24:47 info: Creating worker started -2026-07-12 21:24:47 info: Worker created successfully -2026-07-12 21:24:47 info: Worker created successfully -2026-07-12 21:24:47 info: Worker created successfully -2026-07-12 21:24:47 info: Worker pool initialized -2026-07-12 21:27:33 info: Database connected successfully -2026-07-12 21:27:33 info: Creating worker started -2026-07-12 21:27:33 info: Creating worker started -2026-07-12 21:27:33 info: Creating worker started -2026-07-12 21:27:33 info: Worker created successfully -2026-07-12 21:27:33 info: Worker created successfully -2026-07-12 21:27:33 info: Worker created successfully -2026-07-12 21:27:33 info: Worker pool initialized -2026-07-12 21:27:38 info: Database connected successfully -2026-07-12 21:27:38 info: Creating worker started -2026-07-12 21:27:38 info: Creating worker started -2026-07-12 21:27:38 info: Creating worker started -2026-07-12 21:27:38 info: Worker created successfully -2026-07-12 21:27:38 info: Worker created successfully -2026-07-12 21:27:38 info: Worker created successfully -2026-07-12 21:27:38 info: Worker pool initialized -2026-07-12 21:28:34 info: Database connected successfully -2026-07-12 21:28:34 info: Creating worker started -2026-07-12 21:28:34 info: Creating worker started -2026-07-12 21:28:34 info: Creating worker started -2026-07-12 21:28:34 info: Worker created successfully -2026-07-12 21:28:34 info: Worker created successfully -2026-07-12 21:28:34 info: Worker created successfully -2026-07-12 21:28:34 info: Worker pool initialized -2026-07-12 21:29:02 info: Database connected successfully -2026-07-12 21:29:02 info: Database connected successfully -2026-07-12 21:29:02 info: Creating worker started -2026-07-12 21:29:02 info: Creating worker started -2026-07-12 21:29:02 info: Creating worker started -2026-07-12 21:29:02 info: Worker created successfully -2026-07-12 21:29:02 info: Worker created successfully -2026-07-12 21:29:02 info: Creating worker started -2026-07-12 21:29:02 info: Creating worker started -2026-07-12 21:29:02 info: Creating worker started -2026-07-12 21:29:02 info: Worker created successfully -2026-07-12 21:29:02 info: Worker created successfully -2026-07-12 21:29:02 info: Worker created successfully -2026-07-12 21:29:02 info: Worker pool initialized -2026-07-12 21:29:02 info: Worker created successfully -2026-07-12 21:29:02 info: Worker pool initialized -2026-07-12 21:30:19 info: Database connected successfully -2026-07-12 21:30:19 info: Creating worker started -2026-07-12 21:30:19 info: Creating worker started -2026-07-12 21:30:19 info: Creating worker started -2026-07-12 21:30:19 info: Worker created successfully -2026-07-12 21:30:19 info: Worker created successfully -2026-07-12 21:30:19 info: Worker created successfully -2026-07-12 21:30:19 info: Worker pool initialized -2026-07-12 21:30:24 info: Database connected successfully -2026-07-12 21:30:24 info: Creating worker started -2026-07-12 21:30:24 info: Creating worker started -2026-07-12 21:30:24 info: Creating worker started -2026-07-12 21:30:24 info: Worker created successfully -2026-07-12 21:30:24 info: Worker created successfully -2026-07-12 21:30:24 info: Worker created successfully -2026-07-12 21:30:24 info: Worker pool initialized -2026-07-12 21:32:21 info: Database connected successfully -2026-07-12 21:32:21 info: Database connected successfully -2026-07-12 21:32:21 info: Creating worker started -2026-07-12 21:32:21 info: Creating worker started -2026-07-12 21:32:21 info: Creating worker started -2026-07-12 21:32:21 info: Creating worker started -2026-07-12 21:32:21 info: Creating worker started -2026-07-12 21:32:21 info: Creating worker started -2026-07-12 21:32:21 info: Worker created successfully -2026-07-12 21:32:21 info: Worker created successfully -2026-07-12 21:32:21 info: Worker created successfully -2026-07-12 21:32:21 info: Worker pool initialized -2026-07-12 21:32:21 info: Worker created successfully -2026-07-12 21:32:21 info: Worker created successfully -2026-07-12 21:32:21 info: Worker created successfully -2026-07-12 21:32:21 info: Worker pool initialized -2026-07-12 21:34:00 info: Database connected successfully -2026-07-12 21:34:00 info: Creating worker started -2026-07-12 21:34:00 info: Creating worker started -2026-07-12 21:34:00 info: Creating worker started -2026-07-12 21:34:00 info: Worker created successfully -2026-07-12 21:34:00 info: Worker created successfully -2026-07-12 21:34:00 info: Worker created successfully -2026-07-12 21:34:00 info: Worker pool initialized -2026-07-12 21:34:05 info: Database connected successfully -2026-07-12 21:34:05 info: Creating worker started -2026-07-12 21:34:05 info: Creating worker started -2026-07-12 21:34:05 info: Creating worker started -2026-07-12 21:34:05 info: Worker created successfully -2026-07-12 21:34:05 info: Worker created successfully -2026-07-12 21:34:05 info: Worker created successfully -2026-07-12 21:34:05 info: Worker pool initialized -2026-07-12 21:35:15 info: Database connected successfully -2026-07-12 21:35:15 info: Creating worker started -2026-07-12 21:35:15 info: Creating worker started -2026-07-12 21:35:15 info: Creating worker started -2026-07-12 21:35:15 info: Worker created successfully -2026-07-12 21:35:15 info: Worker created successfully -2026-07-12 21:35:15 info: Worker created successfully -2026-07-12 21:35:15 info: Worker pool initialized -2026-07-12 21:35:20 info: Database connected successfully -2026-07-12 21:35:20 info: Creating worker started -2026-07-12 21:35:20 info: Creating worker started -2026-07-12 21:35:20 info: Creating worker started -2026-07-12 21:35:20 info: Worker created successfully -2026-07-12 21:35:20 info: Worker created successfully -2026-07-12 21:35:20 info: Worker created successfully -2026-07-12 21:35:20 info: Worker pool initialized -2026-07-12 21:36:03 info: Database connected successfully -2026-07-12 21:36:03 info: Database connected successfully -2026-07-12 21:36:03 info: Creating worker started -2026-07-12 21:36:03 info: Creating worker started -2026-07-12 21:36:03 info: Creating worker started -2026-07-12 21:36:03 info: Creating worker started -2026-07-12 21:36:03 info: Creating worker started -2026-07-12 21:36:03 info: Creating worker started -2026-07-12 21:36:03 info: Worker created successfully -2026-07-12 21:36:03 info: Worker created successfully -2026-07-12 21:36:03 info: Worker created successfully -2026-07-12 21:36:03 info: Worker pool initialized -2026-07-12 21:36:03 info: Worker created successfully -2026-07-12 21:36:03 info: Worker created successfully -2026-07-12 21:36:03 info: Worker created successfully -2026-07-12 21:36:03 info: Worker pool initialized -2026-07-12 21:36:17 info: Database connected successfully -2026-07-12 21:36:17 info: Creating worker started -2026-07-12 21:36:17 info: Creating worker started -2026-07-12 21:36:17 info: Creating worker started -2026-07-12 21:36:17 info: Worker created successfully -2026-07-12 21:36:17 info: Worker created successfully -2026-07-12 21:36:17 info: Worker created successfully -2026-07-12 21:36:17 info: Worker pool initialized -2026-07-12 21:36:22 info: Database connected successfully -2026-07-12 21:36:22 info: Creating worker started -2026-07-12 21:36:22 info: Creating worker started -2026-07-12 21:36:22 info: Creating worker started -2026-07-12 21:36:22 info: Worker created successfully -2026-07-12 21:36:22 info: Worker created successfully -2026-07-12 21:36:22 info: Worker created successfully -2026-07-12 21:36:22 info: Worker pool initialized -2026-07-12 21:39:02 info: Database connected successfully -2026-07-12 21:39:02 info: Creating worker started -2026-07-12 21:39:02 info: Creating worker started -2026-07-12 21:39:02 info: Creating worker started -2026-07-12 21:39:02 info: Worker created successfully -2026-07-12 21:39:02 info: Worker created successfully -2026-07-12 21:39:02 info: Worker created successfully -2026-07-12 21:39:02 info: Worker pool initialized -2026-07-12 21:39:06 info: Database connected successfully -2026-07-12 21:39:06 info: Creating worker started -2026-07-12 21:39:06 info: Creating worker started -2026-07-12 21:39:06 info: Creating worker started -2026-07-12 21:39:06 info: Worker created successfully -2026-07-12 21:39:06 info: Worker created successfully -2026-07-12 21:39:07 info: Worker created successfully -2026-07-12 21:39:07 info: Worker pool initialized -2026-07-12 21:39:19 info: Database connected successfully -2026-07-12 21:39:19 info: Creating worker started -2026-07-12 21:39:19 info: Creating worker started -2026-07-12 21:39:19 info: Creating worker started -2026-07-12 21:39:19 info: Worker created successfully -2026-07-12 21:39:19 info: Worker created successfully -2026-07-12 21:39:19 info: Worker created successfully -2026-07-12 21:39:19 info: Worker pool initialized -2026-07-12 21:39:19 info: Database connected successfully -2026-07-12 21:39:19 info: Creating worker started -2026-07-12 21:39:19 info: Creating worker started -2026-07-12 21:39:19 info: Creating worker started -2026-07-12 21:39:19 info: Worker created successfully -2026-07-12 21:39:19 info: Worker created successfully -2026-07-12 21:39:19 info: Worker created successfully -2026-07-12 21:39:19 info: Worker pool initialized -2026-07-12 21:39:49 info: Database connected successfully -2026-07-12 21:39:49 info: Database connected successfully -2026-07-12 21:39:49 info: Creating worker started -2026-07-12 21:39:49 info: Creating worker started -2026-07-12 21:39:49 info: Creating worker started -2026-07-12 21:39:49 info: Creating worker started -2026-07-12 21:39:49 info: Creating worker started -2026-07-12 21:39:49 info: Creating worker started -2026-07-12 21:39:49 info: Worker created successfully -2026-07-12 21:39:49 info: Worker created successfully -2026-07-12 21:39:49 info: Worker created successfully -2026-07-12 21:39:49 info: Worker created successfully -2026-07-12 21:39:49 info: Worker created successfully -2026-07-12 21:39:49 info: Worker created successfully -2026-07-12 21:39:49 info: Worker pool initialized -2026-07-12 21:39:49 info: Worker pool initialized -2026-07-12 21:41:16 info: Database connected successfully -2026-07-12 21:41:16 info: Creating worker started -2026-07-12 21:41:16 info: Creating worker started -2026-07-12 21:41:16 info: Creating worker started -2026-07-12 21:41:16 info: Worker created successfully -2026-07-12 21:41:16 info: Worker created successfully -2026-07-12 21:41:16 info: Worker created successfully -2026-07-12 21:41:16 info: Worker pool initialized -2026-07-12 21:41:20 info: Database connected successfully -2026-07-12 21:41:20 info: Creating worker started -2026-07-12 21:41:20 info: Creating worker started -2026-07-12 21:41:20 info: Creating worker started -2026-07-12 21:41:20 info: Worker created successfully -2026-07-12 21:41:20 info: Worker created successfully -2026-07-12 21:41:20 info: Worker created successfully -2026-07-12 21:41:20 info: Worker pool initialized -2026-07-12 21:48:06 info: Database connected successfully -2026-07-12 21:48:06 info: Creating worker started -2026-07-12 21:48:06 info: Creating worker started -2026-07-12 21:48:06 info: Creating worker started -2026-07-12 21:48:06 info: Worker created successfully -2026-07-12 21:48:06 info: Worker created successfully -2026-07-12 21:48:06 info: Worker created successfully -2026-07-12 21:48:06 info: Worker pool initialized -2026-07-12 21:48:06 info: Database connected successfully -2026-07-12 21:48:06 info: Creating worker started -2026-07-12 21:48:06 info: Creating worker started -2026-07-12 21:48:06 info: Creating worker started -2026-07-12 21:48:06 info: Worker created successfully -2026-07-12 21:48:06 info: Worker created successfully -2026-07-12 21:48:06 info: Worker created successfully -2026-07-12 21:48:06 info: Worker pool initialized -2026-07-12 21:48:12 info: SignIn started -2026-07-12 21:48:12 info: SignIn completed -2026-07-12 21:48:12 info: [node-1] Client connected: Wm2aQYE6oG4BxAjaAAAB -2026-07-12 21:49:18 info: SignUp started -2026-07-12 21:49:18 info: SignUp completed -2026-07-12 21:49:18 info: [node-2] Client connected: -80a54qzh0f78LmlAAAB -2026-07-12 21:49:35 info: User disconnected -80a54qzh0f78LmlAAAB beacuse of transport close -2026-07-12 21:51:15 info: User disconnected Wm2aQYE6oG4BxAjaAAAB beacuse of transport close -2026-07-12 21:56:33 info: Database connected successfully -2026-07-12 21:57:47 info: Database connected successfully -2026-07-12 21:58:54 info: Database connected successfully -2026-07-12 21:58:54 info: Creating worker started -2026-07-12 21:58:54 info: Creating worker started -2026-07-12 21:58:54 info: Creating worker started -2026-07-12 21:58:54 info: Worker created successfully -2026-07-12 21:58:54 info: Worker created successfully -2026-07-12 21:58:54 info: Worker created successfully -2026-07-12 21:58:54 info: Worker pool initialized -2026-07-12 21:59:04 info: SignIn started -2026-07-12 21:59:04 info: SignIn completed -2026-07-12 21:59:04 info: [node-1] Client connected: cCr6yOeyELShCPCPAAAB -2026-07-12 22:00:36 info: [node-2] Client connected: ZbXiRmGqWwrz0hxrAAAD -2026-07-13 00:29:34 info: Creating worker started -2026-07-13 00:29:34 info: Creating worker started -2026-07-13 00:29:34 info: Creating worker started -2026-07-13 00:29:34 info: Worker created successfully -2026-07-13 00:29:34 info: Worker created successfully -2026-07-13 00:29:34 info: Worker created successfully -2026-07-13 00:29:34 info: Worker pool initialized -2026-07-13 00:29:58 info: Creating worker started -2026-07-13 00:29:58 info: Creating worker started -2026-07-13 00:29:58 info: Creating worker started -2026-07-13 00:29:58 info: Worker created successfully -2026-07-13 00:29:58 info: Worker created successfully -2026-07-13 00:29:58 info: Worker created successfully -2026-07-13 00:29:58 info: Worker pool initialized -2026-07-13 00:30:11 info: Creating worker started -2026-07-13 00:30:11 info: Creating worker started -2026-07-13 00:30:11 info: Creating worker started -2026-07-13 00:30:11 info: Worker created successfully -2026-07-13 00:30:11 info: Worker created successfully -2026-07-13 00:30:11 info: Worker created successfully -2026-07-13 00:30:11 info: Worker pool initialized -2026-07-13 00:31:10 info: Creating worker started -2026-07-13 00:31:10 info: Creating worker started -2026-07-13 00:31:10 info: Creating worker started -2026-07-13 00:31:10 info: Worker created successfully -2026-07-13 00:31:10 info: Worker created successfully -2026-07-13 00:31:10 info: Worker created successfully -2026-07-13 00:31:10 info: Worker pool initialized -2026-07-13 00:31:58 info: Creating worker started -2026-07-13 00:31:58 info: Creating worker started -2026-07-13 00:31:58 info: Creating worker started -2026-07-13 00:31:58 info: Worker created successfully -2026-07-13 00:31:58 info: Worker created successfully -2026-07-13 00:31:58 info: Worker created successfully -2026-07-13 00:31:58 info: Worker pool initialized -2026-07-13 00:32:15 info: Creating worker started -2026-07-13 00:32:15 info: Creating worker started -2026-07-13 00:32:15 info: Creating worker started -2026-07-13 00:32:15 info: Worker created successfully -2026-07-13 00:32:15 info: Worker created successfully -2026-07-13 00:32:15 info: Worker created successfully -2026-07-13 00:32:15 info: Worker pool initialized -2026-07-20 12:53:44 info: MongoDB connected -2026-07-20 12:53:44 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 12:53:44 info: Creating worker started -2026-07-20 12:53:44 info: Creating worker started -2026-07-20 12:53:44 info: Creating worker started -2026-07-20 12:53:44 info: Worker created successfully -2026-07-20 12:53:44 info: Worker created successfully -2026-07-20 12:53:44 info: Worker created successfully -2026-07-20 12:53:44 info: Worker pool initialized -2026-07-20 12:55:44 info: MongoDB readiness check -2026-07-20 12:55:44 info: Database UP -2026-07-20 12:55:46 info: MongoDB readiness check -2026-07-20 12:55:46 info: Database UP -2026-07-20 12:55:48 info: MongoDB readiness check -2026-07-20 12:55:48 info: Database UP -2026-07-20 12:55:50 info: MongoDB readiness check -2026-07-20 12:55:50 info: Database UP -2026-07-20 12:55:52 info: MongoDB readiness check -2026-07-20 12:55:52 info: SignIn started -2026-07-20 12:55:52 info: Database UP -2026-07-20 12:55:52 info: SignIn completed -2026-07-20 12:55:52 info: [node-1] Client connected: 4VJsxcDj2TI1XzKNAAAB -2026-07-20 12:55:54 info: MongoDB readiness check -2026-07-20 12:55:54 info: Database UP -2026-07-20 12:55:56 info: MongoDB readiness check -2026-07-20 12:55:56 info: Database UP -2026-07-20 12:55:58 info: MongoDB readiness check -2026-07-20 12:55:59 info: Database UP -2026-07-20 12:56:01 info: MongoDB readiness check -2026-07-20 12:56:01 info: Database UP -2026-07-20 12:56:03 info: MongoDB readiness check -2026-07-20 12:56:03 info: Database UP -2026-07-20 12:56:04 info: Create room started -2026-07-20 12:56:04 info: Woker loads loaded successfully -2026-07-20 12:56:04 info: Woker assigned succesfully -2026-07-20 12:56:04 info: Creation of router started -2026-07-20 12:56:04 info: Router created -2026-07-20 12:56:04 info: Creation of room successfully executed -2026-07-20 12:56:04 info: Get room started -2026-07-20 12:56:04 info: Get room executed successfully -2026-07-20 12:56:04 info: Broadcaster added to the room -2026-07-20 12:56:04 info: Room created successfully -2026-07-20 12:56:05 info: MongoDB readiness check -2026-07-20 12:56:05 info: Database UP -2026-07-20 12:56:07 info: MongoDB readiness check -2026-07-20 12:56:07 info: Database UP -2026-07-20 12:56:09 info: MongoDB readiness check -2026-07-20 12:56:09 info: Database UP -2026-07-20 12:56:11 info: MongoDB readiness check -2026-07-20 12:56:12 info: Database UP -2026-07-20 12:56:14 info: MongoDB readiness check -2026-07-20 12:56:14 info: Database UP -2026-07-20 12:56:16 info: MongoDB readiness check -2026-07-20 12:56:16 info: Database UP -2026-07-20 12:56:17 error: Validation error "roomId" must only contain alpha-numeric characters -2026-07-20 12:56:17 error: Error: Validation error - at validateMessage (/home/harshit/CrowdStream/backend/src/utils/chat.util.ts:36:15) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:50:40) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 12:56:18 info: MongoDB readiness check -2026-07-20 12:56:18 info: Database UP -2026-07-20 12:56:20 info: MongoDB readiness check -2026-07-20 12:56:20 info: Database UP -2026-07-20 12:56:22 info: MongoDB readiness check -2026-07-20 12:56:22 info: Database UP -2026-07-20 12:56:24 info: MongoDB readiness check -2026-07-20 12:56:24 info: Database UP -2026-07-20 12:56:26 info: MongoDB readiness check -2026-07-20 12:56:26 info: Database UP -2026-07-20 12:56:28 info: MongoDB readiness check -2026-07-20 12:56:29 info: Database UP -2026-07-20 12:56:31 info: MongoDB readiness check -2026-07-20 12:56:31 info: Database UP -2026-07-20 12:56:33 info: MongoDB readiness check -2026-07-20 12:56:33 info: Database UP -2026-07-20 12:56:35 info: MongoDB readiness check -2026-07-20 12:56:35 info: Database UP -2026-07-20 12:56:37 info: MongoDB readiness check -2026-07-20 12:56:37 info: Database UP -2026-07-20 12:56:39 info: MongoDB readiness check -2026-07-20 12:56:39 info: Database UP -2026-07-20 12:56:41 info: MongoDB readiness check -2026-07-20 12:56:41 info: Database UP -2026-07-20 12:56:43 info: MongoDB readiness check -2026-07-20 12:56:43 info: Database UP -2026-07-20 12:56:45 info: MongoDB readiness check -2026-07-20 12:56:45 info: Database UP -2026-07-20 12:56:47 info: MongoDB readiness check -2026-07-20 12:56:47 info: Database UP -2026-07-20 12:56:49 info: MongoDB readiness check -2026-07-20 12:56:49 info: Database UP -2026-07-20 12:56:51 info: MongoDB readiness check -2026-07-20 12:56:52 info: Database UP -2026-07-20 12:56:54 info: MongoDB readiness check -2026-07-20 12:56:54 info: Database UP -2026-07-20 12:56:56 info: MongoDB readiness check -2026-07-20 12:56:56 info: Database UP -2026-07-20 12:56:58 info: MongoDB readiness check -2026-07-20 12:56:58 info: Database UP -2026-07-20 12:57:00 info: MongoDB readiness check -2026-07-20 12:57:00 info: Database UP -2026-07-20 12:57:02 info: MongoDB readiness check -2026-07-20 12:57:02 info: Database UP -2026-07-20 12:57:04 info: MongoDB readiness check -2026-07-20 12:57:04 info: Database UP -2026-07-20 12:57:06 info: MongoDB readiness check -2026-07-20 12:57:07 info: Database UP -2026-07-20 12:57:09 info: MongoDB readiness check -2026-07-20 12:57:09 info: Database UP -2026-07-20 12:57:11 info: MongoDB readiness check -2026-07-20 12:57:11 info: Database UP -2026-07-20 12:57:13 info: MongoDB readiness check -2026-07-20 12:57:13 info: Database UP -2026-07-20 12:57:15 info: MongoDB readiness check -2026-07-20 12:57:15 info: Database UP -2026-07-20 12:57:17 info: MongoDB readiness check -2026-07-20 12:57:19 info: Database UP -2026-07-20 12:57:21 info: MongoDB readiness check -2026-07-20 12:57:21 info: Database UP -2026-07-20 12:57:23 info: MongoDB readiness check -2026-07-20 12:57:23 info: Database UP -2026-07-20 12:57:25 info: MongoDB readiness check -2026-07-20 12:57:29 info: MongoDB readiness check -2026-07-20 12:57:32 info: Database UP -2026-07-20 12:57:32 info: Database UP -2026-07-20 12:57:33 info: MongoDB readiness check -2026-07-20 12:57:37 info: MongoDB readiness check -2026-07-20 12:57:38 error: Validation error "roomId" must only contain alpha-numeric characters -2026-07-20 12:57:38 error: Error: Validation error - at validateMessage (/home/harshit/CrowdStream/backend/src/utils/chat.util.ts:36:15) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:50:40) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 12:57:41 info: MongoDB readiness check -2026-07-20 12:57:44 info: Database UP -2026-07-20 12:57:44 info: Database UP -2026-07-20 12:57:44 info: Database UP -2026-07-20 12:57:45 info: MongoDB readiness check -2026-07-20 12:57:45 info: Database UP -2026-07-20 12:57:47 info: MongoDB readiness check -2026-07-20 12:57:47 info: Database UP -2026-07-20 12:57:49 info: MongoDB readiness check -2026-07-20 12:57:50 info: Database UP -2026-07-20 12:57:52 info: MongoDB readiness check -2026-07-20 12:57:52 info: Database UP -2026-07-20 12:57:54 info: MongoDB readiness check -2026-07-20 12:57:54 info: Database UP -2026-07-20 12:57:56 info: MongoDB readiness check -2026-07-20 12:57:56 info: Database UP -2026-07-20 12:57:58 info: MongoDB readiness check -2026-07-20 12:57:58 info: Database UP -2026-07-20 12:58:00 info: MongoDB readiness check -2026-07-20 12:58:00 info: Database UP -2026-07-20 12:58:02 info: MongoDB readiness check -2026-07-20 12:58:02 info: Database UP -2026-07-20 12:58:04 info: MongoDB readiness check -2026-07-20 12:58:04 info: Database UP -2026-07-20 12:58:06 info: MongoDB readiness check -2026-07-20 12:58:07 info: Database UP -2026-07-20 12:58:09 info: MongoDB readiness check -2026-07-20 12:58:09 info: Database UP -2026-07-20 12:58:11 info: MongoDB readiness check -2026-07-20 12:58:11 info: Database UP -2026-07-20 12:58:13 info: MongoDB readiness check -2026-07-20 12:58:13 info: Database UP -2026-07-20 12:58:22 info: MongoDB connected -2026-07-20 12:58:22 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 12:58:22 info: Creating worker started -2026-07-20 12:58:22 info: Creating worker started -2026-07-20 12:58:22 info: Creating worker started -2026-07-20 12:58:22 info: Worker created successfully -2026-07-20 12:58:22 info: Worker created successfully -2026-07-20 12:58:22 info: Worker created successfully -2026-07-20 12:58:22 info: Worker pool initialized -2026-07-20 12:58:23 info: MongoDB readiness check -2026-07-20 12:58:23 info: Database UP -2026-07-20 12:58:25 info: MongoDB readiness check -2026-07-20 12:58:25 info: Database UP -2026-07-20 12:58:27 info: [node-1] Client connected: fTWgKf5oL_HfNjRlAAAB -2026-07-20 12:58:27 info: MongoDB readiness check -2026-07-20 12:58:27 info: Database UP -2026-07-20 12:58:36 info: MongoDB connected -2026-07-20 12:58:36 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 12:58:36 info: Creating worker started -2026-07-20 12:58:36 info: Creating worker started -2026-07-20 12:58:36 info: Creating worker started -2026-07-20 12:58:36 info: Worker created successfully -2026-07-20 12:58:36 info: Worker created successfully -2026-07-20 12:58:36 info: Worker created successfully -2026-07-20 12:58:36 info: Worker pool initialized -2026-07-20 12:58:37 info: MongoDB readiness check -2026-07-20 12:58:37 info: Database UP -2026-07-20 12:58:39 info: MongoDB readiness check -2026-07-20 12:58:39 info: Database UP -2026-07-20 12:58:41 info: [node-1] Client connected: TJn4QRQdsBkI5n9MAAAB -2026-07-20 12:58:41 info: MongoDB readiness check -2026-07-20 12:58:42 info: Database UP -2026-07-20 12:58:44 info: MongoDB readiness check -2026-07-20 12:58:44 info: Database UP -2026-07-20 12:58:46 info: MongoDB readiness check -2026-07-20 12:58:46 info: Database UP -2026-07-20 12:58:48 info: MongoDB readiness check -2026-07-20 12:58:48 info: Database UP -2026-07-20 12:58:50 info: MongoDB readiness check -2026-07-20 12:58:50 info: Database UP -2026-07-20 12:58:52 info: MongoDB readiness check -2026-07-20 12:58:52 info: Database UP -2026-07-20 12:58:54 info: MongoDB readiness check -2026-07-20 12:58:54 info: Database UP -2026-07-20 12:58:56 info: MongoDB readiness check -2026-07-20 12:58:57 info: Database UP -2026-07-20 12:58:57 info: User disconnected TJn4QRQdsBkI5n9MAAAB beacuse of transport close -2026-07-20 12:58:57 info: Handle disconnect started -2026-07-20 12:58:57 error: RoomId not found -2026-07-20 12:58:57 warn: IDK -2026-07-20 12:58:59 info: MongoDB readiness check -2026-07-20 12:58:59 info: Database UP -2026-07-20 12:59:01 info: MongoDB readiness check -2026-07-20 12:59:01 info: Database UP -2026-07-20 12:59:03 info: MongoDB readiness check -2026-07-20 12:59:03 info: Database UP -2026-07-20 12:59:05 info: MongoDB readiness check -2026-07-20 12:59:05 info: Database UP -2026-07-20 12:59:07 info: MongoDB readiness check -2026-07-20 12:59:07 info: Database UP -2026-07-20 12:59:09 info: MongoDB readiness check -2026-07-20 12:59:09 info: SignIn started -2026-07-20 12:59:09 info: Database UP -2026-07-20 12:59:09 info: SignIn completed -2026-07-20 12:59:09 info: [node-1] Client connected: nV7rKLPOBkUaObxFAAAD -2026-07-20 12:59:11 info: MongoDB readiness check -2026-07-20 12:59:11 info: Database UP -2026-07-20 12:59:13 info: Create room started -2026-07-20 12:59:13 info: Woker loads loaded successfully -2026-07-20 12:59:13 info: Woker assigned succesfully -2026-07-20 12:59:13 info: Creation of router started -2026-07-20 12:59:13 info: Router created -2026-07-20 12:59:13 info: Creation of room successfully executed -2026-07-20 12:59:13 info: Get room started -2026-07-20 12:59:13 info: Get room executed successfully -2026-07-20 12:59:13 info: Broadcaster added to the room -2026-07-20 12:59:13 info: Room created successfully -2026-07-20 12:59:13 info: MongoDB readiness check -2026-07-20 12:59:13 info: Database UP -2026-07-20 12:59:15 info: MongoDB readiness check -2026-07-20 12:59:15 info: Database UP -2026-07-20 12:59:18 info: MongoDB readiness check -2026-07-20 12:59:18 info: Database UP -2026-07-20 12:59:20 info: MongoDB readiness check -2026-07-20 12:59:20 info: Database UP -2026-07-20 12:59:22 info: MongoDB readiness check -2026-07-20 12:59:22 info: Database UP -2026-07-20 12:59:22 error: Validation error "roomId" must only contain alpha-numeric characters -2026-07-20 12:59:22 error: Error: Validation error - at validateMessage (/home/harshit/CrowdStream/backend/src/utils/chat.util.ts:36:15) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:51:40) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 12:59:24 info: MongoDB readiness check -2026-07-20 12:59:24 info: Database UP -2026-07-20 12:59:26 info: MongoDB readiness check -2026-07-20 12:59:26 info: Database UP -2026-07-20 12:59:28 info: MongoDB readiness check -2026-07-20 12:59:29 info: Database UP -2026-07-20 12:59:31 info: MongoDB readiness check -2026-07-20 12:59:31 info: Database UP -2026-07-20 12:59:33 info: MongoDB readiness check -2026-07-20 12:59:33 info: Database UP -2026-07-20 12:59:35 info: MongoDB readiness check -2026-07-20 12:59:35 info: Database UP -2026-07-20 12:59:37 info: MongoDB readiness check -2026-07-20 12:59:37 info: Database UP -2026-07-20 12:59:39 info: MongoDB readiness check -2026-07-20 12:59:39 info: Database UP -2026-07-20 12:59:41 info: MongoDB readiness check -2026-07-20 12:59:41 info: Database UP -2026-07-20 12:59:43 info: MongoDB readiness check -2026-07-20 12:59:43 info: Database UP -2026-07-20 12:59:45 info: MongoDB readiness check -2026-07-20 12:59:45 info: Database UP -2026-07-20 12:59:47 info: MongoDB readiness check -2026-07-20 12:59:47 info: Database UP -2026-07-20 12:59:49 info: MongoDB readiness check -2026-07-20 12:59:50 info: Database UP -2026-07-20 12:59:52 info: MongoDB readiness check -2026-07-20 12:59:52 info: Database UP -2026-07-20 12:59:54 info: MongoDB readiness check -2026-07-20 12:59:54 info: Database UP -2026-07-20 12:59:56 info: MongoDB readiness check -2026-07-20 12:59:56 info: Database UP -2026-07-20 13:00:03 info: MongoDB connected -2026-07-20 13:00:03 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 13:00:03 info: Creating worker started -2026-07-20 13:00:03 info: Creating worker started -2026-07-20 13:00:03 info: Creating worker started -2026-07-20 13:00:03 info: Worker created successfully -2026-07-20 13:00:03 info: Worker created successfully -2026-07-20 13:00:03 info: Worker created successfully -2026-07-20 13:00:03 info: Worker pool initialized -2026-07-20 13:00:04 info: MongoDB readiness check -2026-07-20 13:00:04 info: Database UP -2026-07-20 13:00:06 info: MongoDB readiness check -2026-07-20 13:00:06 info: Database UP -2026-07-20 13:00:08 info: MongoDB readiness check -2026-07-20 13:00:08 info: Database UP -2026-07-20 13:00:10 info: MongoDB readiness check -2026-07-20 13:00:11 info: Database UP -2026-07-20 13:00:13 info: MongoDB readiness check -2026-07-20 13:00:13 info: Database UP -2026-07-20 13:00:14 info: SignIn started -2026-07-20 13:00:14 info: SignIn completed -2026-07-20 13:00:14 info: [node-1] Client connected: WeJV0UZ9nTHpoJcQAAAB -2026-07-20 13:00:15 info: MongoDB readiness check -2026-07-20 13:00:15 info: Database UP -2026-07-20 13:00:17 info: MongoDB readiness check -2026-07-20 13:00:17 info: Database UP -2026-07-20 13:00:17 info: Create room started -2026-07-20 13:00:17 info: Woker loads loaded successfully -2026-07-20 13:00:17 info: Woker assigned succesfully -2026-07-20 13:00:17 info: Creation of router started -2026-07-20 13:00:17 info: Router created -2026-07-20 13:00:17 info: Creation of room successfully executed -2026-07-20 13:00:17 info: Get room started -2026-07-20 13:00:17 info: Get room executed successfully -2026-07-20 13:00:17 info: Broadcaster added to the room -2026-07-20 13:00:17 info: Room created successfully -2026-07-20 13:00:19 info: MongoDB readiness check -2026-07-20 13:00:19 info: Database UP -2026-07-20 13:00:21 info: MongoDB readiness check -2026-07-20 13:00:21 info: Database UP -2026-07-20 13:00:23 info: MongoDB readiness check -2026-07-20 13:00:23 info: Database UP -2026-07-20 13:00:25 info: MongoDB readiness check -2026-07-20 13:00:25 info: Database UP -2026-07-20 13:00:27 info: MongoDB readiness check -2026-07-20 13:00:28 info: Database UP -2026-07-20 13:00:28 error: Validation error "roomId" must only contain alpha-numeric characters -2026-07-20 13:00:28 error: Error: Validation error - at validateMessage (/home/harshit/CrowdStream/backend/src/utils/chat.util.ts:36:15) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:52:40) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 13:00:30 info: MongoDB readiness check -2026-07-20 13:00:30 info: Database UP -2026-07-20 13:00:32 info: MongoDB readiness check -2026-07-20 13:00:32 info: Database UP -2026-07-20 13:00:34 info: MongoDB readiness check -2026-07-20 13:00:34 info: Database UP -2026-07-20 13:00:36 info: MongoDB readiness check -2026-07-20 13:00:36 info: Database UP -2026-07-20 13:00:38 info: MongoDB readiness check -2026-07-20 13:00:38 info: Database UP -2026-07-20 13:00:40 info: MongoDB readiness check -2026-07-20 13:00:40 info: Database UP -2026-07-20 13:00:42 info: MongoDB readiness check -2026-07-20 13:00:43 info: Database UP -2026-07-20 13:00:45 info: MongoDB readiness check -2026-07-20 13:00:45 info: Database UP -2026-07-20 13:00:47 info: MongoDB readiness check -2026-07-20 13:00:47 info: Database UP -2026-07-20 13:00:49 info: MongoDB readiness check -2026-07-20 13:00:49 info: Database UP -2026-07-20 13:00:51 info: MongoDB readiness check -2026-07-20 13:00:51 info: Database UP -2026-07-20 13:00:53 info: MongoDB readiness check -2026-07-20 13:00:53 info: Database UP -2026-07-20 13:00:55 info: MongoDB readiness check -2026-07-20 13:00:55 info: Database UP -2026-07-20 13:00:57 info: MongoDB readiness check -2026-07-20 13:00:58 info: Database UP -2026-07-20 13:01:00 info: MongoDB readiness check -2026-07-20 13:01:00 info: Database UP -2026-07-20 13:01:02 info: MongoDB readiness check -2026-07-20 13:01:02 info: Database UP -2026-07-20 13:01:04 info: MongoDB readiness check -2026-07-20 13:01:04 info: Database UP -2026-07-20 13:01:06 info: MongoDB readiness check -2026-07-20 13:01:06 info: Database UP -2026-07-20 13:01:08 info: MongoDB readiness check -2026-07-20 13:01:08 info: Database UP -2026-07-20 13:01:10 info: MongoDB readiness check -2026-07-20 13:01:10 info: Database UP -2026-07-20 13:01:12 info: MongoDB readiness check -2026-07-20 13:01:12 info: Database UP -2026-07-20 13:01:14 info: MongoDB readiness check -2026-07-20 13:01:14 info: Database UP -2026-07-20 13:01:16 info: MongoDB readiness check -2026-07-20 13:01:17 info: Database UP -2026-07-20 13:01:19 info: MongoDB readiness check -2026-07-20 13:01:19 info: Database UP -2026-07-20 13:01:21 info: MongoDB readiness check -2026-07-20 13:01:22 info: Database UP -2026-07-20 13:01:24 info: MongoDB readiness check -2026-07-20 13:01:24 info: Database UP -2026-07-20 13:01:26 info: MongoDB readiness check -2026-07-20 13:01:27 info: Database UP -2026-07-20 13:01:39 info: MongoDB connected -2026-07-20 13:01:39 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 13:01:39 info: Creating worker started -2026-07-20 13:01:39 info: Creating worker started -2026-07-20 13:01:39 info: Creating worker started -2026-07-20 13:01:39 info: Worker created successfully -2026-07-20 13:01:39 info: Worker created successfully -2026-07-20 13:01:39 info: Worker created successfully -2026-07-20 13:01:39 info: Worker pool initialized -2026-07-20 13:01:41 info: MongoDB readiness check -2026-07-20 13:01:41 info: Database UP -2026-07-20 13:01:43 info: MongoDB readiness check -2026-07-20 13:01:43 info: Database UP -2026-07-20 13:01:45 info: MongoDB readiness check -2026-07-20 13:01:45 info: Database UP -2026-07-20 13:01:46 info: [node-1] Client connected: -I1RprdtdLIxeaG8AAAB -2026-07-20 13:01:46 info: User disconnected -I1RprdtdLIxeaG8AAAB beacuse of transport close -2026-07-20 13:01:46 info: Handle disconnect started -2026-07-20 13:01:46 error: RoomId not found -2026-07-20 13:01:47 warn: IDK -2026-07-20 13:01:47 info: MongoDB readiness check -2026-07-20 13:01:47 info: Database UP -2026-07-20 13:01:49 info: MongoDB readiness check -2026-07-20 13:01:49 info: Database UP -2026-07-20 13:01:51 info: MongoDB readiness check -2026-07-20 13:01:52 info: Database UP -2026-07-20 13:01:54 info: MongoDB readiness check -2026-07-20 13:01:54 info: Database UP -2026-07-20 13:01:56 info: MongoDB readiness check -2026-07-20 13:01:56 info: Database UP -2026-07-20 13:01:58 info: MongoDB readiness check -2026-07-20 13:01:58 info: Database UP -2026-07-20 13:01:59 info: SignIn started -2026-07-20 13:02:00 info: SignIn completed -2026-07-20 13:02:00 info: [node-1] Client connected: _xgmtVjAqwiDFFteAAAD -2026-07-20 13:02:00 info: MongoDB readiness check -2026-07-20 13:02:00 info: Database UP -2026-07-20 13:02:02 info: MongoDB readiness check -2026-07-20 13:02:03 info: Database UP -2026-07-20 13:02:03 info: Create room started -2026-07-20 13:02:03 info: Woker loads loaded successfully -2026-07-20 13:02:03 info: Woker assigned succesfully -2026-07-20 13:02:03 info: Creation of router started -2026-07-20 13:02:03 info: Router created -2026-07-20 13:02:03 info: Creation of room successfully executed -2026-07-20 13:02:03 info: Get room started -2026-07-20 13:02:03 info: Get room executed successfully -2026-07-20 13:02:03 info: Broadcaster added to the room -2026-07-20 13:02:03 info: Room created successfully -2026-07-20 13:02:05 info: MongoDB readiness check -2026-07-20 13:02:05 info: Database UP -2026-07-20 13:02:06 error: Validation error "roomId" length must be less than or equal to 30 characters long -2026-07-20 13:02:06 error: Error: Validation error - at validateMessage (/home/harshit/CrowdStream/backend/src/utils/chat.util.ts:36:15) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:52:40) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 13:02:07 info: MongoDB readiness check -2026-07-20 13:02:07 info: Database UP -2026-07-20 13:02:09 info: MongoDB readiness check -2026-07-20 13:02:09 info: Database UP -2026-07-20 13:02:11 info: MongoDB readiness check -2026-07-20 13:02:11 info: Database UP -2026-07-20 13:02:13 info: MongoDB readiness check -2026-07-20 13:02:14 info: Database UP -2026-07-20 13:02:16 info: MongoDB readiness check -2026-07-20 13:02:16 info: Database UP -2026-07-20 13:02:18 info: MongoDB readiness check -2026-07-20 13:02:18 info: Database UP -2026-07-20 13:02:20 info: MongoDB readiness check -2026-07-20 13:02:20 info: Database UP -2026-07-20 13:02:22 info: MongoDB readiness check -2026-07-20 13:02:22 info: Database UP -2026-07-20 13:02:24 info: MongoDB readiness check -2026-07-20 13:02:25 info: Database UP -2026-07-20 13:02:27 info: MongoDB readiness check -2026-07-20 13:02:27 info: Database UP -2026-07-20 13:02:29 info: MongoDB readiness check -2026-07-20 13:02:29 info: Database UP -2026-07-20 13:02:31 info: MongoDB readiness check -2026-07-20 13:02:31 info: Database UP -2026-07-20 13:02:33 info: MongoDB readiness check -2026-07-20 13:02:33 info: Database UP -2026-07-20 13:02:35 info: MongoDB readiness check -2026-07-20 13:02:35 info: Database UP -2026-07-20 13:02:37 info: MongoDB readiness check -2026-07-20 13:02:37 info: Database UP -2026-07-20 13:02:39 info: MongoDB readiness check -2026-07-20 13:02:39 info: Database UP -2026-07-20 13:02:41 info: MongoDB readiness check -2026-07-20 13:02:42 info: Database UP -2026-07-20 13:02:44 info: MongoDB readiness check -2026-07-20 13:02:44 info: Database UP -2026-07-20 13:02:46 info: MongoDB readiness check -2026-07-20 13:02:46 info: Database UP -2026-07-20 13:02:48 info: MongoDB readiness check -2026-07-20 13:02:48 info: Database UP -2026-07-20 13:02:50 info: MongoDB readiness check -2026-07-20 13:02:50 info: Database UP -2026-07-20 13:02:52 info: MongoDB readiness check -2026-07-20 13:02:52 info: Database UP -2026-07-20 13:02:54 info: MongoDB readiness check -2026-07-20 13:02:54 info: Database UP -2026-07-20 13:02:56 info: MongoDB readiness check -2026-07-20 13:02:56 info: Database UP -2026-07-20 13:02:58 info: MongoDB readiness check -2026-07-20 13:02:58 info: Database UP -2026-07-20 13:03:00 info: MongoDB readiness check -2026-07-20 13:03:00 info: Database UP -2026-07-20 13:03:15 info: MongoDB connected -2026-07-20 13:03:15 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 13:03:15 info: Creating worker started -2026-07-20 13:03:15 info: Creating worker started -2026-07-20 13:03:15 info: Creating worker started -2026-07-20 13:03:15 info: Worker created successfully -2026-07-20 13:03:15 info: Worker created successfully -2026-07-20 13:03:15 info: Worker created successfully -2026-07-20 13:03:15 info: Worker pool initialized -2026-07-20 13:03:17 info: MongoDB readiness check -2026-07-20 13:03:17 info: Database UP -2026-07-20 13:03:19 info: MongoDB readiness check -2026-07-20 13:03:19 info: Database UP -2026-07-20 13:03:21 info: MongoDB readiness check -2026-07-20 13:03:21 info: Database UP -2026-07-20 13:03:23 info: MongoDB readiness check -2026-07-20 13:03:23 info: Database UP -2026-07-20 13:03:25 info: MongoDB readiness check -2026-07-20 13:03:25 info: Database UP -2026-07-20 13:03:27 info: MongoDB readiness check -2026-07-20 13:03:27 info: Database UP -2026-07-20 13:03:29 info: MongoDB readiness check -2026-07-20 13:03:29 info: Database UP -2026-07-20 13:03:30 info: SignIn started -2026-07-20 13:03:31 info: SignIn completed -2026-07-20 13:03:31 info: [node-1] Client connected: _rnB8AhQQ_7AQKWkAAAB -2026-07-20 13:03:31 info: MongoDB readiness check -2026-07-20 13:03:32 info: Database UP -2026-07-20 13:03:33 info: Create room started -2026-07-20 13:03:33 info: Woker loads loaded successfully -2026-07-20 13:03:33 info: Woker assigned succesfully -2026-07-20 13:03:33 info: Creation of router started -2026-07-20 13:03:33 info: Router created -2026-07-20 13:03:33 info: Creation of room successfully executed -2026-07-20 13:03:33 info: Get room started -2026-07-20 13:03:33 info: Get room executed successfully -2026-07-20 13:03:33 info: Broadcaster added to the room -2026-07-20 13:03:33 info: Room created successfully -2026-07-20 13:03:34 info: MongoDB readiness check -2026-07-20 13:03:34 info: Database UP -2026-07-20 13:03:35 info: Get room started -2026-07-20 13:03:35 info: Get room executed successfully -2026-07-20 13:03:36 info: MongoDB readiness check -2026-07-20 13:03:36 info: Database UP -2026-07-20 13:03:38 info: MongoDB readiness check -2026-07-20 13:03:38 info: Database UP -2026-07-20 13:03:40 info: MongoDB readiness check -2026-07-20 13:03:40 info: Database UP -2026-07-20 13:03:42 info: MongoDB readiness check -2026-07-20 13:03:42 info: Database UP -2026-07-20 13:03:44 info: MongoDB readiness check -2026-07-20 13:03:44 info: Database UP -2026-07-20 13:03:46 info: MongoDB readiness check -2026-07-20 13:03:47 info: Database UP -2026-07-20 13:03:49 info: MongoDB readiness check -2026-07-20 13:03:49 info: Database UP -2026-07-20 13:03:51 info: MongoDB readiness check -2026-07-20 13:03:51 info: Database UP -2026-07-20 13:03:53 info: MongoDB readiness check -2026-07-20 13:03:53 info: Database UP -2026-07-20 13:03:55 info: MongoDB readiness check -2026-07-20 13:03:55 info: Database UP -2026-07-20 13:03:57 info: MongoDB readiness check -2026-07-20 13:03:58 info: Database UP -2026-07-20 13:04:00 info: MongoDB readiness check -2026-07-20 13:04:00 info: Database UP -2026-07-20 13:04:02 info: MongoDB readiness check -2026-07-20 13:04:02 info: Database UP -2026-07-20 13:04:04 info: MongoDB readiness check -2026-07-20 13:04:04 info: Database UP -2026-07-20 13:04:06 info: MongoDB readiness check -2026-07-20 13:04:06 info: Database UP -2026-07-20 13:04:08 info: MongoDB readiness check -2026-07-20 13:04:08 info: Database UP -2026-07-20 13:04:10 info: MongoDB readiness check -2026-07-20 13:04:11 info: Database UP -2026-07-20 13:04:13 info: MongoDB readiness check -2026-07-20 13:04:13 info: Database UP -2026-07-20 13:04:15 info: MongoDB readiness check -2026-07-20 13:04:15 info: Database UP -2026-07-20 13:04:17 info: MongoDB readiness check -2026-07-20 13:04:18 info: Database UP -2026-07-20 13:04:20 info: MongoDB readiness check -2026-07-20 13:04:20 info: Database UP -2026-07-20 13:04:22 info: MongoDB readiness check -2026-07-20 13:04:22 info: Database UP -2026-07-20 13:04:24 info: MongoDB readiness check -2026-07-20 13:04:24 info: Database UP -2026-07-20 13:04:26 info: MongoDB readiness check -2026-07-20 13:04:26 info: Database UP -2026-07-20 13:04:28 info: MongoDB readiness check -2026-07-20 13:04:28 info: Database UP -2026-07-20 13:04:30 info: MongoDB readiness check -2026-07-20 13:04:30 info: Database UP -2026-07-20 13:04:32 info: MongoDB readiness check -2026-07-20 13:04:33 info: Database UP -2026-07-20 13:04:35 info: MongoDB readiness check -2026-07-20 13:04:35 info: Database UP -2026-07-20 13:04:37 info: MongoDB readiness check -2026-07-20 13:04:37 info: Database UP -2026-07-20 13:04:39 info: MongoDB readiness check -2026-07-20 13:04:39 info: Database UP -2026-07-20 13:04:41 info: MongoDB readiness check -2026-07-20 13:04:41 info: Database UP -2026-07-20 13:04:43 info: MongoDB readiness check -2026-07-20 13:04:44 info: Database UP -2026-07-20 13:04:46 info: MongoDB readiness check -2026-07-20 13:04:46 info: Database UP -2026-07-20 13:04:48 info: MongoDB readiness check -2026-07-20 13:04:48 info: Database UP -2026-07-20 13:04:50 info: MongoDB readiness check -2026-07-20 13:04:50 info: Database UP -2026-07-20 13:04:52 info: MongoDB readiness check -2026-07-20 13:04:52 info: Database UP -2026-07-20 13:04:54 info: MongoDB readiness check -2026-07-20 13:04:54 info: Database UP -2026-07-20 13:04:56 info: MongoDB readiness check -2026-07-20 13:04:56 info: Database UP -2026-07-20 13:04:58 info: MongoDB readiness check -2026-07-20 13:04:58 info: Database UP -2026-07-20 13:05:00 info: MongoDB readiness check -2026-07-20 13:05:00 info: Database UP -2026-07-20 13:05:02 info: MongoDB readiness check -2026-07-20 13:05:03 info: Database UP -2026-07-20 13:05:05 info: MongoDB readiness check -2026-07-20 13:05:05 info: Database UP -2026-07-20 13:05:07 info: MongoDB readiness check -2026-07-20 13:05:08 info: Database UP -2026-07-20 13:05:10 info: MongoDB readiness check -2026-07-20 13:05:10 info: Database UP -2026-07-20 13:05:12 info: MongoDB readiness check -2026-07-20 13:05:12 info: Database UP -2026-07-20 13:05:14 info: MongoDB readiness check -2026-07-20 13:05:14 info: Database UP -2026-07-20 13:05:16 info: MongoDB readiness check -2026-07-20 13:05:16 info: Database UP -2026-07-20 13:05:18 info: MongoDB readiness check -2026-07-20 13:05:18 info: Database UP -2026-07-20 13:05:20 info: MongoDB readiness check -2026-07-20 13:05:20 info: Database UP -2026-07-20 13:05:22 info: MongoDB readiness check -2026-07-20 13:05:23 info: Database UP -2026-07-20 13:05:25 info: MongoDB readiness check -2026-07-20 13:05:25 info: Database UP -2026-07-20 13:05:27 info: MongoDB readiness check -2026-07-20 13:05:27 info: Database UP -2026-07-20 13:05:29 info: MongoDB readiness check -2026-07-20 13:05:29 info: Database UP -2026-07-20 13:05:31 info: MongoDB readiness check -2026-07-20 13:05:31 info: Database UP -2026-07-20 13:05:33 info: MongoDB readiness check -2026-07-20 13:05:33 info: Database UP -2026-07-20 13:05:34 info: Get room started -2026-07-20 13:05:34 info: Get room executed successfully -2026-07-20 13:05:35 info: MongoDB readiness check -2026-07-20 13:05:36 info: Database UP -2026-07-20 13:05:38 info: MongoDB readiness check -2026-07-20 13:05:38 info: Database UP -2026-07-20 13:05:40 info: MongoDB readiness check -2026-07-20 13:05:40 info: Database UP -2026-07-20 13:05:42 info: MongoDB readiness check -2026-07-20 13:05:42 info: Database UP -2026-07-20 13:05:44 info: MongoDB readiness check -2026-07-20 13:05:44 info: Database UP -2026-07-20 13:05:45 info: Get room started -2026-07-20 13:05:45 info: Get room executed successfully -2026-07-20 13:05:46 info: MongoDB readiness check -2026-07-20 13:05:46 info: Database UP -2026-07-20 13:05:48 info: MongoDB readiness check -2026-07-20 13:05:49 info: Database UP -2026-07-20 13:05:51 info: MongoDB readiness check -2026-07-20 13:05:51 info: Database UP -2026-07-20 13:05:53 info: MongoDB readiness check -2026-07-20 13:05:53 info: Database UP -2026-07-20 13:05:55 info: MongoDB readiness check -2026-07-20 13:05:55 info: Database UP -2026-07-20 13:05:57 info: MongoDB readiness check -2026-07-20 13:05:57 info: Database UP -2026-07-20 13:05:59 info: MongoDB readiness check -2026-07-20 13:05:59 info: Database UP -2026-07-20 13:06:01 info: MongoDB readiness check -2026-07-20 13:06:01 info: Database UP -2026-07-20 13:06:03 info: MongoDB readiness check -2026-07-20 13:06:04 info: Database UP -2026-07-20 13:06:06 info: MongoDB readiness check -2026-07-20 13:06:06 info: Database UP -2026-07-20 13:06:06 info: Get room started -2026-07-20 13:06:06 info: Get room executed successfully -2026-07-20 13:06:08 info: MongoDB readiness check -2026-07-20 13:06:08 info: Database UP -2026-07-20 13:06:10 info: MongoDB readiness check -2026-07-20 13:06:10 info: Database UP -2026-07-20 13:06:11 info: User disconnected _rnB8AhQQ_7AQKWkAAAB beacuse of transport close -2026-07-20 13:06:11 info: Handle disconnect started -2026-07-20 13:06:11 info: Get room started -2026-07-20 13:06:11 info: Get room executed successfully -2026-07-20 13:06:11 info: Get room started -2026-07-20 13:06:11 info: Get room executed successfully -2026-07-20 13:06:11 info: Get room started -2026-07-20 13:06:11 info: Get room executed successfully -2026-07-20 13:06:11 info: Remove broadcaster success -2026-07-20 13:06:11 info: Handle disconnect succesfully -2026-07-20 13:06:11 info: room:4d8ef303-15f5-4fd5-9bb2-7e289fb9b1d3 room deleted successfully -2026-07-20 13:06:12 info: MongoDB readiness check -2026-07-20 13:06:13 info: Database UP -2026-07-20 13:06:15 info: MongoDB readiness check -2026-07-20 13:06:15 info: Database UP -2026-07-20 13:06:17 info: MongoDB readiness check -2026-07-20 13:06:17 info: Database UP -2026-07-20 13:06:19 info: MongoDB readiness check -2026-07-20 13:06:19 info: Database UP -2026-07-20 13:06:21 info: MongoDB readiness check -2026-07-20 13:06:21 info: Database UP -2026-07-20 13:06:23 info: MongoDB readiness check -2026-07-20 13:06:23 info: Database UP -2026-07-20 13:06:25 info: MongoDB readiness check -2026-07-20 13:06:25 info: Database UP -2026-07-20 13:06:27 info: MongoDB readiness check -2026-07-20 13:06:28 info: Database UP -2026-07-20 13:06:30 info: MongoDB readiness check -2026-07-20 13:06:30 info: Database UP -2026-07-20 13:06:32 info: MongoDB readiness check -2026-07-20 13:06:32 info: Database UP -2026-07-20 13:06:34 info: MongoDB readiness check -2026-07-20 13:06:34 info: Database UP -2026-07-20 13:06:36 info: MongoDB readiness check -2026-07-20 13:06:36 info: Database UP -2026-07-20 13:06:37 info: SignIn started -2026-07-20 13:06:37 info: SignIn completed -2026-07-20 13:06:37 info: [node-1] Client connected: 4TgYqckeDvZXIxvbAAAD -2026-07-20 13:06:38 info: MongoDB readiness check -2026-07-20 13:06:38 info: Database UP -2026-07-20 13:06:40 info: MongoDB readiness check -2026-07-20 13:06:40 info: Database UP -2026-07-20 13:06:41 info: Create room started -2026-07-20 13:06:41 info: Woker loads loaded successfully -2026-07-20 13:06:41 info: Woker assigned succesfully -2026-07-20 13:06:41 info: Creation of router started -2026-07-20 13:06:41 info: Router created -2026-07-20 13:06:41 info: Creation of room successfully executed -2026-07-20 13:06:41 info: Get room started -2026-07-20 13:06:41 info: Get room executed successfully -2026-07-20 13:06:41 info: Broadcaster added to the room -2026-07-20 13:06:41 info: Room created successfully -2026-07-20 13:06:42 info: MongoDB readiness check -2026-07-20 13:06:43 info: Database UP -2026-07-20 13:06:45 info: MongoDB readiness check -2026-07-20 13:06:45 info: Database UP -2026-07-20 13:06:47 info: MongoDB readiness check -2026-07-20 13:06:47 info: Database UP -2026-07-20 13:06:48 info: Get room started -2026-07-20 13:06:48 info: Get room executed successfully -2026-07-20 13:06:49 info: MongoDB readiness check -2026-07-20 13:06:49 info: Database UP -2026-07-20 13:06:51 info: MongoDB readiness check -2026-07-20 13:06:51 info: Database UP -2026-07-20 13:06:51 info: Get room started -2026-07-20 13:06:51 info: Get room executed successfully -2026-07-20 13:06:53 info: MongoDB readiness check -2026-07-20 13:06:53 info: Database UP -2026-07-20 13:06:55 info: MongoDB readiness check -2026-07-20 13:06:55 info: Database UP -2026-07-20 13:06:57 info: MongoDB readiness check -2026-07-20 13:06:57 info: Database UP -2026-07-20 13:06:59 info: MongoDB readiness check -2026-07-20 13:07:00 info: Database UP -2026-07-20 13:07:02 info: MongoDB readiness check -2026-07-20 13:07:02 info: Database UP -2026-07-20 13:07:04 info: MongoDB readiness check -2026-07-20 13:07:04 info: Database UP -2026-07-20 13:07:06 info: MongoDB readiness check -2026-07-20 13:07:06 info: Database UP -2026-07-20 13:07:08 info: MongoDB readiness check -2026-07-20 13:07:08 info: Database UP -2026-07-20 13:07:10 info: MongoDB readiness check -2026-07-20 13:07:11 info: Database UP -2026-07-20 13:07:13 info: MongoDB readiness check -2026-07-20 13:07:13 info: Database UP -2026-07-20 13:07:15 info: MongoDB readiness check -2026-07-20 13:07:15 info: Database UP -2026-07-20 13:07:17 info: MongoDB readiness check -2026-07-20 13:07:17 info: Database UP -2026-07-20 13:07:19 info: MongoDB readiness check -2026-07-20 13:07:20 info: Database UP -2026-07-20 13:07:22 info: MongoDB readiness check -2026-07-20 13:07:22 info: Database UP -2026-07-20 13:07:23 info: Get room started -2026-07-20 13:07:23 info: Get room executed successfully -2026-07-20 13:07:24 info: MongoDB readiness check -2026-07-20 13:07:24 info: Database UP -2026-07-20 13:07:26 info: MongoDB readiness check -2026-07-20 13:07:26 info: Database UP -2026-07-20 13:07:28 info: MongoDB readiness check -2026-07-20 13:07:28 info: Database UP -2026-07-20 13:07:30 info: MongoDB readiness check -2026-07-20 13:07:30 info: Database UP -2026-07-20 13:07:31 info: Get room started -2026-07-20 13:07:31 info: Get room executed successfully -2026-07-20 13:07:32 info: MongoDB readiness check -2026-07-20 13:07:33 info: Database UP -2026-07-20 13:07:35 info: MongoDB readiness check -2026-07-20 13:07:35 info: Database UP -2026-07-20 13:07:37 info: MongoDB readiness check -2026-07-20 13:07:39 info: Database UP -2026-07-20 13:07:41 info: MongoDB readiness check -2026-07-20 13:07:41 info: Database UP -2026-07-20 13:07:43 info: MongoDB readiness check -2026-07-20 13:07:43 info: Database UP -2026-07-20 13:07:45 info: MongoDB readiness check -2026-07-20 13:07:45 info: Database UP -2026-07-20 13:07:47 info: MongoDB readiness check -2026-07-20 13:07:48 info: Database UP -2026-07-20 13:07:50 info: MongoDB readiness check -2026-07-20 13:07:50 info: Database UP -2026-07-20 13:07:50 error: Validation error "message" length must be less than or equal to 10 characters long -2026-07-20 13:07:50 error: Error: Validation error - at validateMessage (/home/harshit/CrowdStream/backend/src/utils/chat.util.ts:36:15) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:52:40) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 13:07:52 info: MongoDB readiness check -2026-07-20 13:07:52 info: Database UP -2026-07-20 13:07:54 info: MongoDB readiness check -2026-07-20 13:07:54 info: Database UP -2026-07-20 13:07:56 info: MongoDB readiness check -2026-07-20 13:07:56 info: Database UP -2026-07-20 13:07:58 info: MongoDB readiness check -2026-07-20 13:07:58 info: Database UP -2026-07-20 13:08:00 info: MongoDB readiness check -2026-07-20 13:08:00 info: Database UP -2026-07-20 13:08:03 info: MongoDB readiness check -2026-07-20 13:08:03 info: Database UP -2026-07-20 13:08:05 info: MongoDB readiness check -2026-07-20 13:08:05 info: Database UP -2026-07-20 13:08:07 info: MongoDB readiness check -2026-07-20 13:08:07 info: Database UP -2026-07-20 13:08:09 info: MongoDB readiness check -2026-07-20 13:08:10 info: Database UP -2026-07-20 13:08:12 info: MongoDB readiness check -2026-07-20 13:08:12 info: Database UP -2026-07-20 13:08:14 info: MongoDB readiness check -2026-07-20 13:08:14 info: Database UP -2026-07-20 13:08:16 info: MongoDB readiness check -2026-07-20 13:08:16 info: Database UP -2026-07-20 13:08:18 info: MongoDB readiness check -2026-07-20 13:08:19 info: Database UP -2026-07-20 13:08:21 info: MongoDB readiness check -2026-07-20 13:08:21 info: Database UP -2026-07-20 13:08:23 info: MongoDB readiness check -2026-07-20 13:08:23 info: Database UP -2026-07-20 13:08:25 info: MongoDB readiness check -2026-07-20 13:08:25 info: Database UP -2026-07-20 13:08:27 info: MongoDB readiness check -2026-07-20 13:08:27 info: Database UP -2026-07-20 13:08:29 info: MongoDB readiness check -2026-07-20 13:08:29 info: Database UP -2026-07-20 13:08:31 info: MongoDB readiness check -2026-07-20 13:08:31 info: Database UP -2026-07-20 13:08:33 info: MongoDB readiness check -2026-07-20 13:08:33 info: Database UP -2026-07-20 13:08:35 info: MongoDB readiness check -2026-07-20 13:08:36 info: Database UP -2026-07-20 13:08:38 info: MongoDB readiness check -2026-07-20 13:08:38 info: Database UP -2026-07-20 13:08:40 info: MongoDB readiness check -2026-07-20 13:08:40 info: Database UP -2026-07-20 13:08:42 info: MongoDB readiness check -2026-07-20 13:08:42 info: Database UP -2026-07-20 13:08:44 info: MongoDB readiness check -2026-07-20 13:08:44 info: Database UP -2026-07-20 13:08:46 info: MongoDB readiness check -2026-07-20 13:08:46 info: Database UP -2026-07-20 13:08:48 info: MongoDB readiness check -2026-07-20 13:08:48 info: Database UP -2026-07-20 13:08:50 info: MongoDB readiness check -2026-07-20 13:08:50 info: Database UP -2026-07-20 13:08:52 info: MongoDB readiness check -2026-07-20 13:08:52 info: Database UP -2026-07-20 13:08:54 info: MongoDB readiness check -2026-07-20 13:08:55 info: Database UP -2026-07-20 13:08:57 info: MongoDB readiness check -2026-07-20 13:08:57 info: Database UP -2026-07-20 13:08:59 info: MongoDB readiness check -2026-07-20 13:08:59 info: Database UP -2026-07-20 13:09:01 info: MongoDB readiness check -2026-07-20 13:09:01 info: Database UP -2026-07-20 13:09:03 info: MongoDB readiness check -2026-07-20 13:09:03 info: Database UP -2026-07-20 13:09:05 info: MongoDB readiness check -2026-07-20 13:09:05 info: Database UP -2026-07-20 13:09:07 info: MongoDB readiness check -2026-07-20 13:09:07 info: Database UP -2026-07-20 13:09:09 info: MongoDB readiness check -2026-07-20 13:09:09 info: Database UP -2026-07-20 13:09:11 info: MongoDB readiness check -2026-07-20 13:09:12 info: Database UP -2026-07-20 13:09:14 info: MongoDB readiness check -2026-07-20 13:09:14 info: Database UP -2026-07-20 13:09:16 info: MongoDB readiness check -2026-07-20 13:09:16 info: Database UP -2026-07-20 13:09:18 info: MongoDB readiness check -2026-07-20 13:09:18 info: Database UP -2026-07-20 13:09:20 info: MongoDB readiness check -2026-07-20 13:09:20 info: Database UP -2026-07-20 13:09:22 info: MongoDB readiness check -2026-07-20 13:09:22 info: Database UP -2026-07-20 13:09:35 info: MongoDB connected -2026-07-20 13:09:35 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 13:09:35 info: Creating worker started -2026-07-20 13:09:35 info: Creating worker started -2026-07-20 13:09:35 info: Creating worker started -2026-07-20 13:09:35 info: Worker created successfully -2026-07-20 13:09:35 info: Worker created successfully -2026-07-20 13:09:35 info: Worker created successfully -2026-07-20 13:09:35 info: Worker pool initialized -2026-07-20 13:09:36 info: MongoDB readiness check -2026-07-20 13:09:37 info: Database UP -2026-07-20 13:09:39 info: MongoDB readiness check -2026-07-20 13:09:39 info: Database UP -2026-07-20 13:09:41 info: MongoDB readiness check -2026-07-20 13:09:41 info: Database UP -2026-07-20 13:09:43 info: MongoDB readiness check -2026-07-20 13:09:43 info: Database UP -2026-07-20 13:09:45 info: MongoDB readiness check -2026-07-20 13:09:46 info: Database UP -2026-07-20 13:09:48 info: MongoDB readiness check -2026-07-20 13:09:48 info: Database UP -2026-07-20 13:09:48 info: SignIn started -2026-07-20 13:09:49 info: SignIn completed -2026-07-20 13:09:49 info: [node-1] Client connected: FHkJPfXFMPG5TwY4AAAB -2026-07-20 13:09:50 info: MongoDB readiness check -2026-07-20 13:09:50 info: Database UP -2026-07-20 13:09:52 info: MongoDB readiness check -2026-07-20 13:09:52 info: Database UP -2026-07-20 13:09:52 info: Create room started -2026-07-20 13:09:52 info: Woker loads loaded successfully -2026-07-20 13:09:52 info: Woker assigned succesfully -2026-07-20 13:09:52 info: Creation of router started -2026-07-20 13:09:52 info: Router created -2026-07-20 13:09:52 info: Creation of room successfully executed -2026-07-20 13:09:52 info: Get room started -2026-07-20 13:09:52 info: Get room executed successfully -2026-07-20 13:09:52 info: Broadcaster added to the room -2026-07-20 13:09:52 info: Room created successfully -2026-07-20 13:09:54 info: MongoDB readiness check -2026-07-20 13:09:54 info: Database UP -2026-07-20 13:09:56 info: MongoDB readiness check -2026-07-20 13:09:56 info: Database UP -2026-07-20 13:09:58 info: MongoDB readiness check -2026-07-20 13:09:58 info: Database UP -2026-07-20 13:10:00 info: MongoDB readiness check -2026-07-20 13:10:01 info: Database UP -2026-07-20 13:10:03 info: MongoDB readiness check -2026-07-20 13:10:03 info: Database UP -2026-07-20 13:10:05 info: Get room started -2026-07-20 13:10:05 info: Get room executed successfully -2026-07-20 13:10:05 info: MongoDB readiness check -2026-07-20 13:10:05 info: Database UP -2026-07-20 13:10:07 info: MongoDB readiness check -2026-07-20 13:10:07 info: Database UP -2026-07-20 13:10:09 info: MongoDB readiness check -2026-07-20 13:10:09 info: Database UP -2026-07-20 13:10:11 info: MongoDB readiness check -2026-07-20 13:10:12 info: Database UP -2026-07-20 13:10:14 info: MongoDB readiness check -2026-07-20 13:10:14 info: Database UP -2026-07-20 13:10:16 info: MongoDB readiness check -2026-07-20 13:10:16 info: Database UP -2026-07-20 13:10:18 info: MongoDB readiness check -2026-07-20 13:10:18 info: Database UP -2026-07-20 13:10:20 info: MongoDB readiness check -2026-07-20 13:10:20 info: Database UP -2026-07-20 13:10:22 info: MongoDB readiness check -2026-07-20 13:10:22 info: Database UP -2026-07-20 13:10:24 info: MongoDB readiness check -2026-07-20 13:10:24 info: Database UP -2026-07-20 13:10:26 info: MongoDB readiness check -2026-07-20 13:10:27 info: Database UP -2026-07-20 13:10:29 info: MongoDB readiness check -2026-07-20 13:10:29 info: Database UP -2026-07-20 13:10:31 info: MongoDB readiness check -2026-07-20 13:10:31 info: Database UP -2026-07-20 13:10:33 info: MongoDB readiness check -2026-07-20 13:10:33 info: Database UP -2026-07-20 13:10:35 info: MongoDB readiness check -2026-07-20 13:10:35 info: Database UP -2026-07-20 13:10:37 info: MongoDB readiness check -2026-07-20 13:10:37 info: Database UP -2026-07-20 13:10:39 info: MongoDB readiness check -2026-07-20 13:10:40 info: Database UP -2026-07-20 13:10:42 info: MongoDB readiness check -2026-07-20 13:10:42 info: Database UP -2026-07-20 13:10:44 info: MongoDB readiness check -2026-07-20 13:10:44 info: Database UP -2026-07-20 13:10:46 info: MongoDB readiness check -2026-07-20 13:10:46 info: Database UP -2026-07-20 13:10:48 info: MongoDB readiness check -2026-07-20 13:10:48 info: Database UP -2026-07-20 13:10:50 info: MongoDB readiness check -2026-07-20 13:10:50 info: Database UP -2026-07-20 13:10:52 info: MongoDB readiness check -2026-07-20 13:10:52 info: Database UP -2026-07-20 13:10:54 info: MongoDB readiness check -2026-07-20 13:10:54 info: Database UP -2026-07-20 13:10:56 info: MongoDB readiness check -2026-07-20 13:10:57 info: Database UP -2026-07-20 13:10:59 info: MongoDB readiness check -2026-07-20 13:10:59 info: Database UP -2026-07-20 13:11:01 info: MongoDB readiness check -2026-07-20 13:11:01 info: Database UP -2026-07-20 13:11:03 info: MongoDB readiness check -2026-07-20 13:11:03 info: Database UP -2026-07-20 13:11:05 info: MongoDB readiness check -2026-07-20 13:11:05 info: Database UP -2026-07-20 13:11:07 info: MongoDB readiness check -2026-07-20 13:11:07 info: Database UP -2026-07-20 13:11:09 info: MongoDB readiness check -2026-07-20 13:11:09 info: Database UP -2026-07-20 13:11:11 info: MongoDB readiness check -2026-07-20 13:11:11 info: Database UP -2026-07-20 13:11:13 info: MongoDB readiness check -2026-07-20 13:11:14 info: Database UP -2026-07-20 13:11:16 info: MongoDB readiness check -2026-07-20 13:11:16 info: Database UP -2026-07-20 13:11:18 info: MongoDB readiness check -2026-07-20 13:11:19 info: Database UP -2026-07-20 13:11:21 info: MongoDB readiness check -2026-07-20 13:11:22 info: Database UP -2026-07-20 13:11:24 info: MongoDB readiness check -2026-07-20 13:11:24 info: Database UP -2026-07-20 13:11:26 info: MongoDB readiness check -2026-07-20 13:11:26 info: Database UP -2026-07-20 13:11:28 info: MongoDB readiness check -2026-07-20 13:11:28 info: Database UP -2026-07-20 13:11:30 info: MongoDB readiness check -2026-07-20 13:11:30 info: Database UP -2026-07-20 13:11:32 info: MongoDB readiness check -2026-07-20 13:11:32 info: Database UP -2026-07-20 13:11:34 info: MongoDB readiness check -2026-07-20 13:11:34 info: Database UP -2026-07-20 13:11:36 info: MongoDB readiness check -2026-07-20 13:11:37 info: Database UP -2026-07-20 13:11:39 info: MongoDB readiness check -2026-07-20 13:11:39 info: Database UP -2026-07-20 13:11:41 info: MongoDB readiness check -2026-07-20 13:11:41 info: Database UP -2026-07-20 13:11:43 info: MongoDB readiness check -2026-07-20 13:11:43 info: Database UP -2026-07-20 13:11:45 info: MongoDB readiness check -2026-07-20 13:11:45 info: Database UP -2026-07-20 13:11:47 info: MongoDB readiness check -2026-07-20 13:11:47 info: Database UP -2026-07-20 13:11:49 info: MongoDB readiness check -2026-07-20 13:11:50 info: Database UP -2026-07-20 13:11:52 info: MongoDB readiness check -2026-07-20 13:11:52 info: Database UP -2026-07-20 13:11:54 info: MongoDB readiness check -2026-07-20 13:11:54 info: Database UP -2026-07-20 13:11:56 info: MongoDB readiness check -2026-07-20 13:11:56 info: Database UP -2026-07-20 13:11:58 info: MongoDB readiness check -2026-07-20 13:11:58 info: Database UP -2026-07-20 13:12:00 info: MongoDB readiness check -2026-07-20 13:12:00 info: Database UP -2026-07-20 13:12:02 info: MongoDB readiness check -2026-07-20 13:12:02 info: Database UP -2026-07-20 13:12:04 info: MongoDB readiness check -2026-07-20 13:12:04 info: Database UP -2026-07-20 13:12:06 info: MongoDB readiness check -2026-07-20 13:12:06 info: Database UP -2026-07-20 13:12:08 info: MongoDB readiness check -2026-07-20 13:12:09 info: Database UP -2026-07-20 13:12:11 info: MongoDB readiness check -2026-07-20 13:12:11 info: Database UP -2026-07-20 13:12:13 info: MongoDB readiness check -2026-07-20 13:12:13 info: Database UP -2026-07-20 13:12:15 info: MongoDB readiness check -2026-07-20 13:12:15 info: Database UP -2026-07-20 13:12:17 info: MongoDB readiness check -2026-07-20 13:12:17 info: Database UP -2026-07-20 13:12:19 info: MongoDB readiness check -2026-07-20 13:12:19 info: Database UP -2026-07-20 13:12:21 info: MongoDB readiness check -2026-07-20 13:12:21 info: Database UP -2026-07-20 13:12:23 info: MongoDB readiness check -2026-07-20 13:12:23 info: Database UP -2026-07-20 13:12:25 info: MongoDB readiness check -2026-07-20 13:12:26 info: Database UP -2026-07-20 13:12:28 info: MongoDB readiness check -2026-07-20 13:12:28 info: Database UP -2026-07-20 13:12:30 info: MongoDB readiness check -2026-07-20 13:12:30 info: Database UP -2026-07-20 13:12:32 info: MongoDB readiness check -2026-07-20 13:12:32 info: Database UP -2026-07-20 13:12:34 info: MongoDB readiness check -2026-07-20 13:12:34 info: Database UP -2026-07-20 13:12:36 info: MongoDB readiness check -2026-07-20 13:12:36 info: Database UP -2026-07-20 13:12:38 info: MongoDB readiness check -2026-07-20 13:12:38 info: Database UP -2026-07-20 13:12:40 info: MongoDB readiness check -2026-07-20 13:12:40 info: Database UP -2026-07-20 13:12:42 info: MongoDB readiness check -2026-07-20 13:12:43 info: Database UP -2026-07-20 13:12:45 info: MongoDB readiness check -2026-07-20 13:12:45 info: Database UP -2026-07-20 13:12:47 info: MongoDB readiness check -2026-07-20 13:12:47 info: Database UP -2026-07-20 13:12:49 info: MongoDB readiness check -2026-07-20 13:12:49 info: Database UP -2026-07-20 13:12:51 info: MongoDB readiness check -2026-07-20 13:12:51 info: Database UP -2026-07-20 13:12:53 info: MongoDB readiness check -2026-07-20 13:12:54 info: Database UP -2026-07-20 13:12:56 info: MongoDB readiness check -2026-07-20 13:12:56 info: Database UP -2026-07-20 13:12:58 info: MongoDB readiness check -2026-07-20 13:12:58 info: Database UP -2026-07-20 13:13:00 info: MongoDB readiness check -2026-07-20 13:13:00 info: Database UP -2026-07-20 13:13:02 info: MongoDB readiness check -2026-07-20 13:13:02 info: Database UP -2026-07-20 13:13:04 info: MongoDB readiness check -2026-07-20 13:13:04 info: Database UP -2026-07-20 13:13:06 info: MongoDB readiness check -2026-07-20 13:13:06 info: Database UP -2026-07-20 13:13:08 info: MongoDB readiness check -2026-07-20 13:13:09 info: Database UP -2026-07-20 13:13:11 info: MongoDB readiness check -2026-07-20 13:13:11 info: Database UP -2026-07-20 13:13:13 info: MongoDB readiness check -2026-07-20 13:13:13 info: Database UP -2026-07-20 13:13:15 info: MongoDB readiness check -2026-07-20 13:13:15 info: Database UP -2026-07-20 13:13:17 info: MongoDB readiness check -2026-07-20 13:13:17 info: Database UP -2026-07-20 13:13:19 info: MongoDB readiness check -2026-07-20 13:13:19 info: Database UP -2026-07-20 13:13:21 info: MongoDB readiness check -2026-07-20 13:13:21 info: Database UP -2026-07-20 13:13:23 info: MongoDB readiness check -2026-07-20 13:13:24 info: Database UP -2026-07-20 13:13:26 info: MongoDB readiness check -2026-07-20 13:13:26 info: Database UP -2026-07-20 13:13:28 info: MongoDB readiness check -2026-07-20 13:13:28 info: Database UP -2026-07-20 13:13:30 info: MongoDB readiness check -2026-07-20 13:13:30 info: Database UP -2026-07-20 13:13:32 info: MongoDB readiness check -2026-07-20 13:13:32 info: Database UP -2026-07-20 13:13:34 info: MongoDB readiness check -2026-07-20 13:13:34 info: Database UP -2026-07-20 13:13:36 info: MongoDB readiness check -2026-07-20 13:13:37 info: Database UP -2026-07-20 13:13:39 info: MongoDB readiness check -2026-07-20 13:13:39 info: Database UP -2026-07-20 13:13:41 info: MongoDB readiness check -2026-07-20 13:13:41 info: Database UP -2026-07-20 13:13:43 info: MongoDB readiness check -2026-07-20 13:13:43 info: Database UP -2026-07-20 13:13:45 info: MongoDB readiness check -2026-07-20 13:13:45 info: Database UP -2026-07-20 13:13:47 info: MongoDB readiness check -2026-07-20 13:13:47 info: Database UP -2026-07-20 13:13:49 info: MongoDB readiness check -2026-07-20 13:13:49 info: Database UP -2026-07-20 13:13:51 info: MongoDB readiness check -2026-07-20 13:13:52 info: Database UP -2026-07-20 13:13:54 info: MongoDB readiness check -2026-07-20 13:13:54 info: Database UP -2026-07-20 13:13:56 info: MongoDB readiness check -2026-07-20 13:13:56 info: Database UP -2026-07-20 13:13:58 info: MongoDB readiness check -2026-07-20 13:14:02 info: MongoDB readiness check -2026-07-20 13:14:06 info: MongoDB readiness check -2026-07-20 13:14:07 info: Database UP -2026-07-20 13:14:09 info: Database UP -2026-07-20 13:14:09 info: MongoDB readiness check -2026-07-20 13:14:09 info: Database UP -2026-07-20 13:14:11 info: MongoDB readiness check -2026-07-20 13:14:11 info: Database UP -2026-07-20 13:14:13 info: Database UP -2026-07-20 13:14:13 info: MongoDB readiness check -2026-07-20 13:14:13 info: Database UP -2026-07-20 13:14:15 info: MongoDB readiness check -2026-07-20 13:14:16 info: Database UP -2026-07-20 13:14:18 info: MongoDB readiness check -2026-07-20 13:14:18 info: Database UP -2026-07-20 13:14:20 info: MongoDB readiness check -2026-07-20 13:14:20 info: Database UP -2026-07-20 13:14:22 info: MongoDB readiness check -2026-07-20 13:14:22 info: Database UP -2026-07-20 13:14:24 info: MongoDB readiness check -2026-07-20 13:14:25 info: Database UP -2026-07-20 13:14:27 info: MongoDB readiness check -2026-07-20 13:14:27 info: Database UP -2026-07-20 13:14:29 info: MongoDB readiness check -2026-07-20 13:14:29 info: Database UP -2026-07-20 13:14:31 info: MongoDB readiness check -2026-07-20 13:14:31 info: Database UP -2026-07-20 13:14:33 info: MongoDB readiness check -2026-07-20 13:14:34 info: Database UP -2026-07-20 13:14:36 info: MongoDB readiness check -2026-07-20 13:14:36 info: Database UP -2026-07-20 13:14:38 info: MongoDB readiness check -2026-07-20 13:14:38 info: Database UP -2026-07-20 13:14:40 info: MongoDB readiness check -2026-07-20 13:14:40 info: Database UP -2026-07-20 13:14:42 info: MongoDB readiness check -2026-07-20 13:14:42 info: Database UP -2026-07-20 13:14:44 info: MongoDB readiness check -2026-07-20 13:14:44 info: Database UP -2026-07-20 13:14:46 info: MongoDB readiness check -2026-07-20 13:14:46 info: Database UP -2026-07-20 13:14:48 info: MongoDB readiness check -2026-07-20 13:14:49 info: Database UP -2026-07-20 13:14:51 info: MongoDB readiness check -2026-07-20 13:14:51 info: Database UP -2026-07-20 13:14:53 info: MongoDB readiness check -2026-07-20 13:14:53 info: Database UP -2026-07-20 13:14:55 info: MongoDB readiness check -2026-07-20 13:14:55 info: Database UP -2026-07-20 13:14:57 info: MongoDB readiness check -2026-07-20 13:14:57 info: Database UP -2026-07-20 13:14:59 info: MongoDB readiness check -2026-07-20 13:15:00 info: Database UP -2026-07-20 13:15:02 info: MongoDB readiness check -2026-07-20 13:15:02 info: Database UP -2026-07-20 13:15:04 info: MongoDB readiness check -2026-07-20 13:15:04 info: Database UP -2026-07-20 13:15:06 info: MongoDB readiness check -2026-07-20 13:15:06 info: Database UP -2026-07-20 13:15:08 info: MongoDB readiness check -2026-07-20 13:15:08 info: Database UP -2026-07-20 13:15:10 info: MongoDB readiness check -2026-07-20 13:15:10 info: Database UP -2026-07-20 13:15:12 info: MongoDB readiness check -2026-07-20 13:15:12 info: Database UP -2026-07-20 13:15:14 info: MongoDB readiness check -2026-07-20 13:15:14 info: Database UP -2026-07-20 13:15:16 info: MongoDB readiness check -2026-07-20 13:15:17 info: Database UP -2026-07-20 13:15:19 info: MongoDB readiness check -2026-07-20 13:15:19 info: Database UP -2026-07-20 13:15:21 info: MongoDB readiness check -2026-07-20 13:15:21 info: Database UP -2026-07-20 13:15:23 info: MongoDB readiness check -2026-07-20 13:15:23 info: Database UP -2026-07-20 13:15:25 info: MongoDB readiness check -2026-07-20 13:15:25 info: Database UP -2026-07-20 13:15:27 info: MongoDB readiness check -2026-07-20 13:15:27 info: Database UP -2026-07-20 13:15:29 info: MongoDB readiness check -2026-07-20 13:15:29 info: Database UP -2026-07-20 13:15:31 info: MongoDB readiness check -2026-07-20 13:15:32 info: Database UP -2026-07-20 13:15:34 info: MongoDB readiness check -2026-07-20 13:15:34 info: Database UP -2026-07-20 13:15:36 info: MongoDB readiness check -2026-07-20 13:15:36 info: Database UP -2026-07-20 13:15:38 info: MongoDB readiness check -2026-07-20 13:15:38 info: Database UP -2026-07-20 13:15:40 info: MongoDB readiness check -2026-07-20 13:15:40 info: Database UP -2026-07-20 13:15:42 info: MongoDB readiness check -2026-07-20 13:15:42 info: Database UP -2026-07-20 13:15:44 info: MongoDB readiness check -2026-07-20 13:15:45 info: Database UP -2026-07-20 13:15:47 info: MongoDB readiness check -2026-07-20 13:15:47 info: Database UP -2026-07-20 13:15:49 info: MongoDB readiness check -2026-07-20 13:15:49 info: Database UP -2026-07-20 13:15:51 info: MongoDB readiness check -2026-07-20 13:15:51 info: Database UP -2026-07-20 13:15:53 info: MongoDB readiness check -2026-07-20 13:15:54 info: Database UP -2026-07-20 13:15:56 info: MongoDB readiness check -2026-07-20 13:15:56 info: Database UP -2026-07-20 13:15:58 info: MongoDB readiness check -2026-07-20 13:15:58 info: Database UP -2026-07-20 13:16:00 info: MongoDB readiness check -2026-07-20 13:16:00 info: Database UP -2026-07-20 13:16:02 info: MongoDB readiness check -2026-07-20 13:16:02 info: Database UP -2026-07-20 13:16:04 info: MongoDB readiness check -2026-07-20 13:16:04 info: Database UP -2026-07-20 13:16:06 info: MongoDB readiness check -2026-07-20 13:16:07 info: Database UP -2026-07-20 13:16:09 info: MongoDB readiness check -2026-07-20 13:16:09 info: Database UP -2026-07-20 13:16:11 info: MongoDB readiness check -2026-07-20 13:16:11 info: Database UP -2026-07-20 13:16:13 info: MongoDB readiness check -2026-07-20 13:16:13 info: Database UP -2026-07-20 13:16:15 info: MongoDB readiness check -2026-07-20 13:16:15 info: Database UP -2026-07-20 13:16:17 info: MongoDB readiness check -2026-07-20 13:16:17 info: Database UP -2026-07-20 13:16:19 info: MongoDB readiness check -2026-07-20 13:16:19 info: Database UP -2026-07-20 13:16:21 info: MongoDB readiness check -2026-07-20 13:16:22 info: Database UP -2026-07-20 13:16:24 info: MongoDB readiness check -2026-07-20 13:16:24 info: Database UP -2026-07-20 13:16:26 info: MongoDB readiness check -2026-07-20 13:16:26 info: Database UP -2026-07-20 13:16:28 info: MongoDB readiness check -2026-07-20 13:16:28 info: Database UP -2026-07-20 13:16:30 info: MongoDB readiness check -2026-07-20 13:16:30 info: Database UP -2026-07-20 13:16:32 info: MongoDB readiness check -2026-07-20 13:16:32 info: Database UP -2026-07-20 13:16:35 info: MongoDB readiness check -2026-07-20 13:16:35 info: Database UP -2026-07-20 13:16:37 info: MongoDB readiness check -2026-07-20 13:16:37 info: Database UP -2026-07-20 13:16:39 info: MongoDB readiness check -2026-07-20 13:16:39 info: Database UP -2026-07-20 13:16:41 info: MongoDB readiness check -2026-07-20 13:16:41 info: Database UP -2026-07-20 13:16:43 info: MongoDB readiness check -2026-07-20 13:16:43 info: Database UP -2026-07-20 13:16:45 info: MongoDB readiness check -2026-07-20 13:16:46 info: Database UP -2026-07-20 13:16:48 info: MongoDB readiness check -2026-07-20 13:16:48 info: Database UP -2026-07-20 13:16:50 info: MongoDB readiness check -2026-07-20 13:16:50 info: Database UP -2026-07-20 13:16:52 info: MongoDB readiness check -2026-07-20 13:16:52 info: Database UP -2026-07-20 13:16:53 info: User disconnected FHkJPfXFMPG5TwY4AAAB beacuse of transport close -2026-07-20 13:16:53 info: Handle disconnect started -2026-07-20 13:16:53 info: Get room started -2026-07-20 13:16:53 info: Get room executed successfully -2026-07-20 13:16:53 info: Get room started -2026-07-20 13:16:53 info: Get room executed successfully -2026-07-20 13:16:53 info: Get room started -2026-07-20 13:16:53 info: Get room executed successfully -2026-07-20 13:16:53 info: Remove broadcaster success -2026-07-20 13:16:53 info: Handle disconnect succesfully -2026-07-20 13:16:53 info: room:7d5dda2e-1fac-4761-85ff-26bc8880f469 room deleted successfully -2026-07-20 13:16:54 info: MongoDB readiness check -2026-07-20 13:16:54 info: Database UP -2026-07-20 13:16:56 info: MongoDB readiness check -2026-07-20 13:16:56 info: Database UP -2026-07-20 13:16:58 info: MongoDB readiness check -2026-07-20 13:16:59 info: Database UP -2026-07-20 13:17:01 info: MongoDB readiness check -2026-07-20 13:17:01 info: Database UP -2026-07-20 13:17:03 info: MongoDB readiness check -2026-07-20 13:17:03 info: Database UP -2026-07-20 13:17:05 info: MongoDB readiness check -2026-07-20 13:17:05 info: Database UP -2026-07-20 13:17:07 info: MongoDB readiness check -2026-07-20 13:17:07 info: Database UP -2026-07-20 13:17:09 info: MongoDB readiness check -2026-07-20 13:17:09 info: Database UP -2026-07-20 13:17:11 info: MongoDB readiness check -2026-07-20 13:17:11 info: Database UP -2026-07-20 13:17:13 info: MongoDB readiness check -2026-07-20 13:17:14 info: Database UP -2026-07-20 13:17:16 info: MongoDB readiness check -2026-07-20 13:17:16 info: Database UP -2026-07-20 13:17:18 info: MongoDB readiness check -2026-07-20 13:17:18 info: Database UP -2026-07-20 13:17:20 info: MongoDB readiness check -2026-07-20 13:17:20 info: Database UP -2026-07-20 13:17:22 info: MongoDB readiness check -2026-07-20 13:17:23 info: Database UP -2026-07-20 13:17:25 info: MongoDB readiness check -2026-07-20 13:17:25 info: Database UP -2026-07-20 13:17:27 info: MongoDB readiness check -2026-07-20 13:17:27 info: Database UP -2026-07-20 13:17:29 info: MongoDB readiness check -2026-07-20 13:17:30 info: Database UP -2026-07-20 13:17:32 info: MongoDB readiness check -2026-07-20 13:17:32 info: Database UP -2026-07-20 13:17:34 info: MongoDB readiness check -2026-07-20 13:17:34 info: Database UP -2026-07-20 13:17:36 info: MongoDB readiness check -2026-07-20 13:17:36 info: Database UP -2026-07-20 13:17:38 info: MongoDB readiness check -2026-07-20 13:17:38 info: Database UP -2026-07-20 13:17:40 info: MongoDB readiness check -2026-07-20 13:18:41 info: MongoDB connected -2026-07-20 13:18:41 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 13:18:41 info: Creating worker started -2026-07-20 13:18:41 info: Creating worker started -2026-07-20 13:18:41 info: Creating worker started -2026-07-20 13:18:41 info: Worker created successfully -2026-07-20 13:18:41 info: Worker created successfully -2026-07-20 13:18:41 info: Worker created successfully -2026-07-20 13:18:41 info: Worker pool initialized -2026-07-20 13:18:42 info: MongoDB readiness check -2026-07-20 13:18:43 info: Database UP -2026-07-20 13:18:45 info: MongoDB readiness check -2026-07-20 13:18:45 info: Database UP -2026-07-20 13:18:47 info: MongoDB readiness check -2026-07-20 13:18:47 info: Database UP -2026-07-20 13:18:49 info: MongoDB readiness check -2026-07-20 13:18:49 info: Database UP -2026-07-20 13:18:51 info: MongoDB readiness check -2026-07-20 13:18:51 info: Database UP -2026-07-20 13:18:53 info: MongoDB readiness check -2026-07-20 13:18:53 info: Database UP -2026-07-20 13:18:55 info: MongoDB readiness check -2026-07-20 13:18:55 info: Database UP -2026-07-20 13:18:57 info: MongoDB readiness check -2026-07-20 13:18:58 info: Database UP -2026-07-20 13:19:00 info: MongoDB readiness check -2026-07-20 13:19:00 info: Database UP -2026-07-20 13:19:02 info: MongoDB readiness check -2026-07-20 13:19:02 info: Database UP -2026-07-20 13:19:04 info: MongoDB readiness check -2026-07-20 13:19:04 info: Database UP -2026-07-20 13:19:06 info: MongoDB readiness check -2026-07-20 13:19:06 info: Database UP -2026-07-20 13:19:08 info: MongoDB readiness check -2026-07-20 13:19:08 info: Database UP -2026-07-20 13:19:10 info: MongoDB readiness check -2026-07-20 13:19:10 info: Database UP -2026-07-20 13:19:12 info: MongoDB readiness check -2026-07-20 13:19:13 info: Database UP -2026-07-20 13:19:15 info: MongoDB readiness check -2026-07-20 13:19:15 info: Database UP -2026-07-20 13:19:17 info: MongoDB readiness check -2026-07-20 13:19:17 info: Database UP -2026-07-20 13:19:19 info: MongoDB readiness check -2026-07-20 13:19:19 info: Database UP -2026-07-20 13:19:21 info: MongoDB readiness check -2026-07-20 13:19:21 info: Database UP -2026-07-20 13:19:23 info: MongoDB readiness check -2026-07-20 13:19:23 info: Database UP -2026-07-20 13:19:25 info: MongoDB readiness check -2026-07-20 13:19:26 info: Database UP -2026-07-20 13:19:28 info: MongoDB readiness check -2026-07-20 13:19:28 info: Database UP -2026-07-20 13:19:30 info: MongoDB readiness check -2026-07-20 13:19:30 info: Database UP -2026-07-20 13:19:32 info: MongoDB readiness check -2026-07-20 13:19:32 info: Database UP -2026-07-20 13:19:34 info: MongoDB readiness check -2026-07-20 13:19:34 info: Database UP -2026-07-20 13:19:36 info: MongoDB readiness check -2026-07-20 13:19:36 info: Database UP -2026-07-20 13:19:38 info: MongoDB readiness check -2026-07-20 13:19:39 info: Database UP -2026-07-20 13:19:41 info: MongoDB readiness check -2026-07-20 13:19:41 info: Database UP -2026-07-20 13:19:58 info: MongoDB connected -2026-07-20 13:19:58 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 13:19:58 info: Creating worker started -2026-07-20 13:19:58 info: Creating worker started -2026-07-20 13:19:58 info: Creating worker started -2026-07-20 13:19:58 info: Worker created successfully -2026-07-20 13:19:58 info: Worker created successfully -2026-07-20 13:19:58 info: Worker created successfully -2026-07-20 13:19:58 info: Worker pool initialized -2026-07-20 13:19:59 info: MongoDB readiness check -2026-07-20 13:19:59 info: Database UP -2026-07-20 13:20:01 info: MongoDB readiness check -2026-07-20 13:20:01 info: Database UP -2026-07-20 13:20:03 info: MongoDB readiness check -2026-07-20 13:20:03 info: Database UP -2026-07-20 13:20:05 info: MongoDB readiness check -2026-07-20 13:20:05 info: Database UP -2026-07-20 13:20:07 info: MongoDB readiness check -2026-07-20 13:20:08 info: Database UP -2026-07-20 13:20:10 info: MongoDB readiness check -2026-07-20 13:20:10 info: Database UP -2026-07-20 13:20:12 info: MongoDB readiness check -2026-07-20 13:20:12 info: Database UP -2026-07-20 13:20:19 info: MongoDB connected -2026-07-20 13:20:19 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 13:20:19 info: Creating worker started -2026-07-20 13:20:19 info: Creating worker started -2026-07-20 13:20:19 info: Creating worker started -2026-07-20 13:20:19 info: Worker created successfully -2026-07-20 13:20:19 info: Worker created successfully -2026-07-20 13:20:19 info: Worker created successfully -2026-07-20 13:20:19 info: Worker pool initialized -2026-07-20 13:20:20 info: MongoDB readiness check -2026-07-20 13:20:20 info: Database UP -2026-07-20 13:20:22 info: MongoDB readiness check -2026-07-20 13:20:22 info: Database UP -2026-07-20 13:20:24 info: MongoDB readiness check -2026-07-20 13:20:24 info: Database UP -2026-07-20 13:20:26 info: MongoDB readiness check -2026-07-20 13:20:26 info: Database UP -2026-07-20 13:20:28 info: MongoDB readiness check -2026-07-20 13:20:28 info: Database UP -2026-07-20 13:20:30 info: MongoDB readiness check -2026-07-20 13:20:30 info: Database UP -2026-07-20 13:20:33 info: MongoDB readiness check -2026-07-20 13:20:33 info: Database UP -2026-07-20 13:20:35 info: MongoDB readiness check -2026-07-20 13:20:35 info: Database UP -2026-07-20 13:20:37 info: MongoDB readiness check -2026-07-20 13:20:37 info: Database UP -2026-07-20 13:20:39 info: MongoDB readiness check -2026-07-20 13:20:39 info: Database UP -2026-07-20 13:20:41 info: MongoDB readiness check -2026-07-20 13:20:41 info: Database UP -2026-07-20 13:20:43 info: MongoDB readiness check -2026-07-20 13:20:43 info: Database UP -2026-07-20 13:20:45 info: MongoDB readiness check -2026-07-20 13:20:46 info: Database UP -2026-07-20 13:20:48 info: MongoDB readiness check -2026-07-20 13:20:48 info: Database UP -2026-07-20 13:20:50 info: MongoDB readiness check -2026-07-20 13:20:50 info: Database UP -2026-07-20 13:20:52 info: MongoDB readiness check -2026-07-20 13:20:52 info: Database UP -2026-07-20 13:20:54 info: MongoDB readiness check -2026-07-20 13:20:54 info: Database UP -2026-07-20 13:20:56 info: MongoDB readiness check -2026-07-20 13:20:56 info: Database UP -2026-07-20 13:20:58 info: MongoDB readiness check -2026-07-20 13:20:58 info: Database UP -2026-07-20 13:21:00 info: MongoDB readiness check -2026-07-20 13:21:00 info: Database UP -2026-07-20 13:21:02 info: MongoDB readiness check -2026-07-20 13:21:02 info: Database UP -2026-07-20 13:26:58 info: MongoDB connected -2026-07-20 13:26:58 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 13:26:58 info: Creating worker started -2026-07-20 13:26:58 info: Creating worker started -2026-07-20 13:26:58 info: Creating worker started -2026-07-20 13:26:58 info: Worker created successfully -2026-07-20 13:26:58 info: Worker created successfully -2026-07-20 13:26:58 info: Worker created successfully -2026-07-20 13:26:58 info: Worker pool initialized -2026-07-20 13:26:59 info: MongoDB readiness check -2026-07-20 13:26:59 info: Database UP -2026-07-20 13:27:01 info: MongoDB readiness check -2026-07-20 13:27:02 info: Database UP -2026-07-20 13:27:04 info: MongoDB readiness check -2026-07-20 13:27:04 info: Database UP -2026-07-20 13:27:06 info: MongoDB readiness check -2026-07-20 13:27:06 info: Database UP -2026-07-20 13:27:08 info: MongoDB readiness check -2026-07-20 13:27:08 info: Database UP -2026-07-20 13:27:10 info: MongoDB readiness check -2026-07-20 13:27:10 info: Database UP -2026-07-20 13:27:12 info: MongoDB readiness check -2026-07-20 13:27:12 info: Database UP -2026-07-20 13:27:14 info: MongoDB readiness check -2026-07-20 13:27:14 info: Database UP -2026-07-20 13:27:16 info: MongoDB readiness check -2026-07-20 13:27:16 info: Database UP -2026-07-20 13:27:18 info: MongoDB readiness check -2026-07-20 13:27:18 info: Database UP -2026-07-20 13:27:20 info: MongoDB readiness check -2026-07-20 13:27:21 info: Database UP -2026-07-20 13:27:23 info: MongoDB readiness check -2026-07-20 13:27:23 info: Database UP -2026-07-20 13:27:25 info: MongoDB readiness check -2026-07-20 13:27:25 info: Database UP -2026-07-20 13:27:27 info: MongoDB readiness check -2026-07-20 13:27:27 info: Database UP -2026-07-20 13:27:29 info: MongoDB readiness check -2026-07-20 13:27:29 info: Database UP -2026-07-20 13:30:19 info: MongoDB connected -2026-07-20 13:30:19 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 13:30:19 info: Creating worker started -2026-07-20 13:30:19 info: Creating worker started -2026-07-20 13:30:19 info: Creating worker started -2026-07-20 13:30:19 info: Worker created successfully -2026-07-20 13:30:19 info: Worker created successfully -2026-07-20 13:30:19 info: Worker created successfully -2026-07-20 13:30:19 info: Worker pool initialized -2026-07-20 13:30:19 info: MongoDB readiness check -2026-07-20 13:30:20 info: Database UP -2026-07-20 13:30:22 info: MongoDB readiness check -2026-07-20 13:30:23 info: Database UP -2026-07-20 13:30:25 info: MongoDB readiness check -2026-07-20 13:30:25 info: Database UP -2026-07-20 13:30:27 info: MongoDB readiness check -2026-07-20 13:30:27 info: Database UP -2026-07-20 13:30:29 info: MongoDB readiness check -2026-07-20 13:30:29 info: Database UP -2026-07-20 13:30:31 info: MongoDB readiness check -2026-07-20 13:30:31 info: Database UP -2026-07-20 13:30:33 info: MongoDB readiness check -2026-07-20 13:30:33 info: Database UP -2026-07-20 13:30:35 info: MongoDB readiness check -2026-07-20 13:30:35 info: Database UP -2026-07-20 13:30:37 info: MongoDB readiness check -2026-07-20 13:30:37 info: Database UP -2026-07-20 13:30:39 info: MongoDB readiness check -2026-07-20 13:30:40 info: Database UP -2026-07-20 13:30:42 info: MongoDB readiness check -2026-07-20 13:30:42 info: Database UP -2026-07-20 13:30:44 info: MongoDB readiness check -2026-07-20 13:30:44 info: Database UP -2026-07-20 13:30:46 info: MongoDB readiness check -2026-07-20 13:30:46 info: Database UP -2026-07-20 13:30:48 info: MongoDB readiness check -2026-07-20 13:30:48 info: Database UP -2026-07-20 13:30:50 info: MongoDB readiness check -2026-07-20 13:30:50 info: Database UP -2026-07-20 13:30:52 info: MongoDB readiness check -2026-07-20 13:30:52 info: Database UP -2026-07-20 13:30:54 info: MongoDB readiness check -2026-07-20 13:30:55 info: Database UP -2026-07-20 13:30:57 info: MongoDB readiness check -2026-07-20 13:30:57 info: Database UP -2026-07-20 13:30:59 info: MongoDB readiness check -2026-07-20 13:30:59 info: Database UP -2026-07-20 13:31:01 info: MongoDB readiness check -2026-07-20 13:31:01 info: Database UP -2026-07-20 13:31:03 info: MongoDB readiness check -2026-07-20 13:31:03 info: Database UP -2026-07-20 13:31:05 info: MongoDB readiness check -2026-07-20 13:31:05 info: Database UP -2026-07-20 13:31:07 info: MongoDB readiness check -2026-07-20 13:31:07 info: Database UP -2026-07-20 13:31:09 info: MongoDB readiness check -2026-07-20 13:31:09 info: Database UP -2026-07-20 13:31:11 info: MongoDB readiness check -2026-07-20 13:31:12 info: Database UP -2026-07-20 13:31:14 info: MongoDB readiness check -2026-07-20 13:31:14 info: Database UP -2026-07-20 13:31:16 info: MongoDB readiness check -2026-07-20 13:31:16 info: Database UP -2026-07-20 13:31:18 info: MongoDB readiness check -2026-07-20 13:31:18 info: Database UP -2026-07-20 13:31:20 info: MongoDB readiness check -2026-07-20 13:31:20 info: Database UP -2026-07-20 13:31:22 info: MongoDB readiness check -2026-07-20 13:31:22 info: Database UP -2026-07-20 13:32:00 info: MongoDB connected -2026-07-20 13:32:00 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 13:32:00 info: Creating worker started -2026-07-20 13:32:00 info: Creating worker started -2026-07-20 13:32:00 info: Creating worker started -2026-07-20 13:32:00 info: Worker created successfully -2026-07-20 13:32:00 info: Worker created successfully -2026-07-20 13:32:00 info: Worker created successfully -2026-07-20 13:32:00 info: Worker pool initialized -2026-07-20 13:32:02 info: MongoDB readiness check -2026-07-20 13:32:02 info: Database UP -2026-07-20 13:32:04 info: MongoDB readiness check -2026-07-20 13:32:05 info: Database UP -2026-07-20 13:32:07 info: MongoDB readiness check -2026-07-20 13:32:07 info: Database UP -2026-07-20 13:32:09 info: MongoDB readiness check -2026-07-20 13:32:09 info: Database UP -2026-07-20 13:32:11 info: MongoDB readiness check -2026-07-20 13:32:11 info: Database UP -2026-07-20 13:32:13 info: MongoDB readiness check -2026-07-20 13:32:13 info: Database UP -2026-07-20 13:32:15 info: MongoDB readiness check -2026-07-20 13:32:15 info: Database UP -2026-07-20 13:32:17 info: MongoDB readiness check -2026-07-20 13:32:17 info: Database UP -2026-07-20 13:32:19 info: MongoDB readiness check -2026-07-20 13:32:19 info: Database UP -2026-07-20 13:32:21 info: MongoDB readiness check -2026-07-20 13:32:21 info: Database UP -2026-07-20 13:32:23 info: MongoDB readiness check -2026-07-20 13:32:24 info: Database UP -2026-07-20 13:32:26 info: MongoDB readiness check -2026-07-20 13:32:26 info: Database UP -2026-07-20 13:32:28 info: MongoDB readiness check -2026-07-20 13:32:28 info: Database UP -2026-07-20 13:32:30 info: MongoDB readiness check -2026-07-20 13:32:30 info: Database UP -2026-07-20 13:32:32 info: MongoDB readiness check -2026-07-20 13:32:32 info: Database UP -2026-07-20 13:32:34 info: MongoDB readiness check -2026-07-20 13:32:34 info: Database UP -2026-07-20 13:32:36 info: MongoDB readiness check -2026-07-20 13:32:37 info: Database UP -2026-07-20 13:32:39 info: MongoDB readiness check -2026-07-20 13:32:39 info: Database UP -2026-07-20 13:32:41 info: MongoDB readiness check -2026-07-20 13:32:41 info: Database UP -2026-07-20 13:32:43 info: MongoDB readiness check -2026-07-20 13:32:43 info: Database UP -2026-07-20 13:32:45 info: MongoDB readiness check -2026-07-20 13:32:45 info: Database UP -2026-07-20 13:32:47 info: MongoDB readiness check -2026-07-20 13:32:47 info: Database UP -2026-07-20 13:32:49 info: MongoDB readiness check -2026-07-20 13:32:50 info: Database UP -2026-07-20 13:32:52 info: MongoDB readiness check -2026-07-20 13:32:52 info: Database UP -2026-07-20 13:32:54 info: MongoDB readiness check -2026-07-20 13:32:54 info: Database UP -2026-07-20 13:32:56 info: MongoDB readiness check -2026-07-20 13:32:56 info: Database UP -2026-07-20 13:32:58 info: MongoDB readiness check -2026-07-20 13:32:58 info: Database UP -2026-07-20 13:33:00 info: MongoDB readiness check -2026-07-20 13:33:00 info: Database UP -2026-07-20 13:33:02 info: MongoDB readiness check -2026-07-20 13:33:02 info: Database UP -2026-07-20 13:33:04 info: MongoDB readiness check -2026-07-20 13:33:04 info: Database UP -2026-07-20 14:04:35 info: MongoDB connected -2026-07-20 14:05:13 info: MongoDB connected -2026-07-20 14:06:10 info: MongoDB connected -2026-07-20 14:06:10 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 14:06:10 info: Creating worker started -2026-07-20 14:06:10 info: Creating worker started -2026-07-20 14:06:10 info: Creating worker started -2026-07-20 14:06:10 info: Worker created successfully -2026-07-20 14:06:10 info: Worker created successfully -2026-07-20 14:06:10 info: Worker created successfully -2026-07-20 14:06:10 info: Worker pool initialized -2026-07-20 14:06:10 info: MongoDB readiness check -2026-07-20 14:06:11 info: Database UP -2026-07-20 14:06:13 info: MongoDB readiness check -2026-07-20 14:06:13 info: Database UP -2026-07-20 14:06:15 info: MongoDB readiness check -2026-07-20 14:06:15 info: Database UP -2026-07-20 14:06:17 info: MongoDB readiness check -2026-07-20 14:06:17 info: Database UP -2026-07-20 14:06:19 info: MongoDB readiness check -2026-07-20 14:06:19 info: Database UP -2026-07-20 14:06:21 info: MongoDB readiness check -2026-07-20 14:06:21 info: Database UP -2026-07-20 14:06:23 info: MongoDB readiness check -2026-07-20 14:06:23 info: Database UP -2026-07-20 14:06:25 info: MongoDB readiness check -2026-07-20 14:06:26 info: Database UP -2026-07-20 14:06:28 info: MongoDB readiness check -2026-07-20 14:06:28 info: Database UP -2026-07-20 14:06:30 info: MongoDB readiness check -2026-07-20 14:06:30 info: Database UP -2026-07-20 14:06:32 info: MongoDB readiness check -2026-07-20 14:06:32 info: Database UP -2026-07-20 14:06:34 info: MongoDB readiness check -2026-07-20 14:06:34 info: Database UP -2026-07-20 14:06:36 info: MongoDB readiness check -2026-07-20 14:06:36 info: Database UP -2026-07-20 14:06:38 info: MongoDB readiness check -2026-07-20 14:06:39 info: Database UP -2026-07-20 14:06:41 info: MongoDB readiness check -2026-07-20 14:06:41 info: Database UP -2026-07-20 14:06:43 info: MongoDB readiness check -2026-07-20 14:06:43 info: Database UP -2026-07-20 14:06:45 info: MongoDB readiness check -2026-07-20 14:06:45 info: Database UP -2026-07-20 14:06:47 info: MongoDB readiness check -2026-07-20 14:06:47 info: Database UP -2026-07-20 14:06:49 info: MongoDB readiness check -2026-07-20 14:06:49 info: Database UP -2026-07-20 14:06:51 info: MongoDB readiness check -2026-07-20 14:06:51 info: Database UP -2026-07-20 14:06:53 info: MongoDB readiness check -2026-07-20 14:06:53 info: Database UP -2026-07-20 14:06:55 info: MongoDB readiness check -2026-07-20 14:06:56 info: Database UP -2026-07-20 14:06:58 info: MongoDB readiness check -2026-07-20 14:06:58 info: Database UP -2026-07-20 14:07:00 info: MongoDB readiness check -2026-07-20 14:07:00 info: Database UP -2026-07-20 14:07:02 info: MongoDB readiness check -2026-07-20 14:07:02 info: Database UP -2026-07-20 14:07:04 info: MongoDB readiness check -2026-07-20 14:07:04 info: Database UP -2026-07-20 14:07:06 info: MongoDB readiness check -2026-07-20 14:07:06 info: Database UP -2026-07-20 14:07:08 info: MongoDB readiness check -2026-07-20 14:07:08 info: Database UP -2026-07-20 14:07:10 info: MongoDB readiness check -2026-07-20 14:07:11 info: Database UP -2026-07-20 14:07:13 info: MongoDB readiness check -2026-07-20 14:07:13 info: Database UP -2026-07-20 14:07:15 info: MongoDB readiness check -2026-07-20 14:07:15 info: Database UP -2026-07-20 14:07:17 info: MongoDB readiness check -2026-07-20 14:07:17 info: Database UP -2026-07-20 14:07:19 info: MongoDB readiness check -2026-07-20 14:07:19 info: Database UP -2026-07-20 14:07:21 info: MongoDB readiness check -2026-07-20 14:07:21 info: Database UP -2026-07-20 14:07:23 info: MongoDB readiness check -2026-07-20 14:07:23 info: Database UP -2026-07-20 14:07:25 info: MongoDB readiness check -2026-07-20 14:07:25 info: Database UP -2026-07-20 14:07:27 info: MongoDB readiness check -2026-07-20 14:07:27 info: Database UP -2026-07-20 14:07:29 info: MongoDB readiness check -2026-07-20 14:07:30 info: Database UP -2026-07-20 14:07:32 info: MongoDB readiness check -2026-07-20 14:07:32 info: Database UP -2026-07-20 14:07:34 info: MongoDB readiness check -2026-07-20 14:07:34 info: Database UP -2026-07-20 14:07:36 info: MongoDB readiness check -2026-07-20 14:07:36 info: Database UP -2026-07-20 14:07:38 info: MongoDB readiness check -2026-07-20 14:07:38 info: Database UP -2026-07-20 14:07:40 info: MongoDB readiness check -2026-07-20 14:07:40 info: Database UP -2026-07-20 14:07:42 info: MongoDB readiness check -2026-07-20 14:07:42 info: Database UP -2026-07-20 14:07:44 info: MongoDB readiness check -2026-07-20 14:07:44 info: Database UP -2026-07-20 14:07:46 info: MongoDB readiness check -2026-07-20 14:07:47 info: Database UP -2026-07-20 14:07:49 info: MongoDB readiness check -2026-07-20 14:07:49 info: Database UP -2026-07-20 14:07:51 info: MongoDB readiness check -2026-07-20 14:07:51 info: Database UP -2026-07-20 14:07:53 info: MongoDB readiness check -2026-07-20 14:07:53 info: Database UP -2026-07-20 14:07:55 info: MongoDB readiness check -2026-07-20 14:07:55 info: Database UP -2026-07-20 14:07:57 info: MongoDB readiness check -2026-07-20 14:07:57 info: Database UP -2026-07-20 14:07:59 info: MongoDB readiness check -2026-07-20 14:07:59 info: Database UP -2026-07-20 14:08:01 info: MongoDB readiness check -2026-07-20 14:08:02 info: Database UP -2026-07-20 14:08:04 info: MongoDB readiness check -2026-07-20 14:08:04 info: Database UP -2026-07-20 14:08:06 info: MongoDB readiness check -2026-07-20 14:08:06 info: Database UP -2026-07-20 14:08:08 info: MongoDB readiness check -2026-07-20 14:08:08 info: Database UP -2026-07-20 14:08:10 info: MongoDB readiness check -2026-07-20 14:08:10 info: Database UP -2026-07-20 14:08:12 info: MongoDB readiness check -2026-07-20 14:08:12 info: Database UP -2026-07-20 14:08:14 info: MongoDB readiness check -2026-07-20 14:08:14 info: Database UP -2026-07-20 14:08:16 info: MongoDB readiness check -2026-07-20 14:08:16 info: Database UP -2026-07-20 14:08:18 info: MongoDB readiness check -2026-07-20 14:08:19 info: Database UP -2026-07-20 14:08:21 info: MongoDB readiness check -2026-07-20 14:08:21 info: Database UP -2026-07-20 14:08:23 info: MongoDB readiness check -2026-07-20 14:08:23 info: Database UP -2026-07-20 14:08:25 info: MongoDB readiness check -2026-07-20 14:08:25 info: Database UP -2026-07-20 14:08:27 info: MongoDB readiness check -2026-07-20 14:08:27 info: Database UP -2026-07-20 14:08:29 info: MongoDB readiness check -2026-07-20 14:08:29 info: Database UP -2026-07-20 14:08:31 info: MongoDB readiness check -2026-07-20 14:08:31 info: Database UP -2026-07-20 14:08:33 info: MongoDB readiness check -2026-07-20 14:08:34 info: Database UP -2026-07-20 14:08:36 info: MongoDB readiness check -2026-07-20 14:08:36 info: Database UP -2026-07-20 14:08:38 info: MongoDB readiness check -2026-07-20 14:08:38 info: Database UP -2026-07-20 14:08:40 info: MongoDB readiness check -2026-07-20 14:08:40 info: Database UP -2026-07-20 14:08:42 info: MongoDB readiness check -2026-07-20 14:08:42 info: Database UP -2026-07-20 14:08:44 info: MongoDB readiness check -2026-07-20 14:08:44 info: Database UP -2026-07-20 14:08:46 info: MongoDB readiness check -2026-07-20 14:08:47 info: Database UP -2026-07-20 14:08:49 info: MongoDB readiness check -2026-07-20 14:08:49 info: Database UP -2026-07-20 14:08:51 info: MongoDB readiness check -2026-07-20 14:08:51 info: Database UP -2026-07-20 14:08:53 info: MongoDB readiness check -2026-07-20 14:08:53 info: Database UP -2026-07-20 14:08:55 info: MongoDB readiness check -2026-07-20 14:08:55 info: Database UP -2026-07-20 14:08:57 info: MongoDB readiness check -2026-07-20 14:08:57 info: Database UP -2026-07-20 14:08:59 info: MongoDB readiness check -2026-07-20 14:08:59 info: Database UP -2026-07-20 14:09:01 info: MongoDB readiness check -2026-07-20 14:09:01 info: Database UP -2026-07-20 14:09:03 info: MongoDB readiness check -2026-07-20 14:09:04 info: Database UP -2026-07-20 14:09:06 info: MongoDB readiness check -2026-07-20 14:09:06 info: Database UP -2026-07-20 14:09:08 info: MongoDB readiness check -2026-07-20 14:09:08 info: Database UP -2026-07-20 14:09:10 info: MongoDB readiness check -2026-07-20 14:09:10 info: Database UP -2026-07-20 14:09:12 info: MongoDB readiness check -2026-07-20 14:09:12 info: Database UP -2026-07-20 14:09:14 info: MongoDB readiness check -2026-07-20 14:09:14 info: Database UP -2026-07-20 14:09:16 info: MongoDB readiness check -2026-07-20 14:09:16 info: Database UP -2026-07-20 14:09:18 info: MongoDB readiness check -2026-07-20 14:09:18 info: Database UP -2026-07-20 14:09:20 info: MongoDB readiness check -2026-07-20 14:09:20 info: Database UP -2026-07-20 14:09:22 info: MongoDB readiness check -2026-07-20 14:09:22 info: Database UP -2026-07-20 14:09:24 info: MongoDB readiness check -2026-07-20 14:09:25 info: Database UP -2026-07-20 14:09:27 info: MongoDB readiness check -2026-07-20 14:09:27 info: Database UP -2026-07-20 14:09:29 info: MongoDB readiness check -2026-07-20 14:09:29 info: Database UP -2026-07-20 14:09:31 info: MongoDB readiness check -2026-07-20 14:09:31 info: Database UP -2026-07-20 14:09:33 info: MongoDB readiness check -2026-07-20 14:09:33 info: Database UP -2026-07-20 14:09:35 info: MongoDB readiness check -2026-07-20 14:09:35 info: Database UP -2026-07-20 14:09:37 info: MongoDB readiness check -2026-07-20 14:09:37 info: Database UP -2026-07-20 14:09:39 info: MongoDB readiness check -2026-07-20 14:09:39 info: Database UP -2026-07-20 14:09:42 info: MongoDB readiness check -2026-07-20 14:09:42 info: Database UP -2026-07-20 14:09:44 info: MongoDB readiness check -2026-07-20 14:09:44 info: Database UP -2026-07-20 14:09:46 info: MongoDB readiness check -2026-07-20 14:09:46 info: Database UP -2026-07-20 14:09:48 info: MongoDB readiness check -2026-07-20 14:09:48 info: Database UP -2026-07-20 14:09:50 info: MongoDB readiness check -2026-07-20 14:09:50 info: Database UP -2026-07-20 14:09:52 info: MongoDB readiness check -2026-07-20 14:09:53 info: Database UP -2026-07-20 14:09:55 info: MongoDB readiness check -2026-07-20 14:09:55 info: Database UP -2026-07-20 14:09:57 info: MongoDB readiness check -2026-07-20 14:09:57 info: Database UP -2026-07-20 14:09:59 info: MongoDB readiness check -2026-07-20 14:09:59 info: Database UP -2026-07-20 14:10:01 info: MongoDB readiness check -2026-07-20 14:10:01 info: Database UP -2026-07-20 14:10:03 info: MongoDB readiness check -2026-07-20 14:10:03 info: Database UP -2026-07-20 14:10:05 info: MongoDB readiness check -2026-07-20 14:10:05 info: Database UP -2026-07-20 14:10:08 info: MongoDB readiness check -2026-07-20 14:10:08 info: Database UP -2026-07-20 14:10:10 info: MongoDB readiness check -2026-07-20 14:10:10 info: Database UP -2026-07-20 14:10:12 info: MongoDB readiness check -2026-07-20 14:10:12 info: Database UP -2026-07-20 14:10:14 info: MongoDB readiness check -2026-07-20 14:10:14 info: Database UP -2026-07-20 14:10:16 info: MongoDB readiness check -2026-07-20 14:10:16 info: Database UP -2026-07-20 14:10:18 info: MongoDB readiness check -2026-07-20 14:10:18 info: Database UP -2026-07-20 14:10:20 info: MongoDB readiness check -2026-07-20 14:10:20 info: Database UP -2026-07-20 14:10:22 info: MongoDB readiness check -2026-07-20 14:10:22 info: Database UP -2026-07-20 14:10:24 info: MongoDB readiness check -2026-07-20 14:10:24 info: Database UP -2026-07-20 14:10:26 info: MongoDB readiness check -2026-07-20 14:10:26 info: Database UP -2026-07-20 14:10:28 info: MongoDB readiness check -2026-07-20 14:10:29 info: Database UP -2026-07-20 14:10:31 info: MongoDB readiness check -2026-07-20 14:10:31 info: Database UP -2026-07-20 14:10:33 info: MongoDB readiness check -2026-07-20 14:10:33 info: Database UP -2026-07-20 14:10:35 info: MongoDB readiness check -2026-07-20 14:10:35 info: Database UP -2026-07-20 14:10:36 info: MongoDB readiness check -2026-07-20 14:10:36 info: MongoDB readiness check -2026-07-20 14:10:37 info: Database UP -2026-07-20 14:10:37 info: Database UP -2026-07-20 17:26:53 info: MongoDB connected -2026-07-20 17:26:53 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 17:26:53 info: Creating worker started -2026-07-20 17:26:53 info: Creating worker started -2026-07-20 17:26:53 info: Creating worker started -2026-07-20 17:26:53 info: Worker created successfully -2026-07-20 17:26:53 info: Worker created successfully -2026-07-20 17:26:53 info: Worker created successfully -2026-07-20 17:26:53 info: Worker pool initialized -2026-07-20 17:27:04 info: MongoDB readiness check -2026-07-20 17:27:04 info: Database UP -2026-07-20 17:27:06 info: MongoDB readiness check -2026-07-20 17:27:06 info: Database UP -2026-07-20 17:27:08 info: MongoDB readiness check -2026-07-20 17:27:08 info: Database UP -2026-07-20 17:27:10 info: MongoDB readiness check -2026-07-20 17:27:10 info: Database UP -2026-07-20 17:27:12 info: MongoDB readiness check -2026-07-20 17:27:12 info: Database UP -2026-07-20 17:27:14 info: MongoDB readiness check -2026-07-20 17:27:15 info: Database UP -2026-07-20 17:27:17 info: MongoDB readiness check -2026-07-20 17:27:17 info: Database UP -2026-07-20 17:27:19 info: MongoDB readiness check -2026-07-20 17:27:19 info: Database UP -2026-07-20 17:27:21 info: MongoDB readiness check -2026-07-20 17:27:22 info: Database UP -2026-07-20 17:27:24 info: MongoDB readiness check -2026-07-20 17:27:24 info: Database UP -2026-07-20 17:27:26 info: MongoDB readiness check -2026-07-20 17:27:26 info: Database UP -2026-07-20 17:27:28 info: MongoDB readiness check -2026-07-20 17:27:28 info: Database UP -2026-07-20 17:27:30 info: MongoDB readiness check -2026-07-20 17:27:30 info: Database UP -2026-07-20 17:27:32 info: MongoDB readiness check -2026-07-20 17:27:32 info: Database UP -2026-07-20 17:27:32 info: SignIn started -2026-07-20 17:27:32 info: SignIn completed -2026-07-20 17:27:32 info: [node-1] Client connected: 5UxwT8llfEFrP5NwAAAB -2026-07-20 17:27:34 info: MongoDB readiness check -2026-07-20 17:27:34 info: Database UP -2026-07-20 17:27:35 info: Create room started -2026-07-20 17:27:35 info: Woker loads loaded successfully -2026-07-20 17:27:35 info: Woker assigned succesfully -2026-07-20 17:27:35 info: Creation of router started -2026-07-20 17:27:35 info: Router created -2026-07-20 17:27:35 info: Creation of room successfully executed -2026-07-20 17:27:35 info: Get room started -2026-07-20 17:27:35 info: Get room executed successfully -2026-07-20 17:27:35 info: Broadcaster added to the room -2026-07-20 17:27:35 info: Room created successfully -2026-07-20 17:27:36 info: MongoDB readiness check -2026-07-20 17:27:36 info: Database UP -2026-07-20 17:27:38 info: MongoDB readiness check -2026-07-20 17:27:38 info: Database UP -2026-07-20 17:27:40 info: MongoDB readiness check -2026-07-20 17:27:40 info: Database UP -2026-07-20 17:27:42 info: Get room started -2026-07-20 17:27:42 info: Get room executed successfully -2026-07-20 17:27:42 info: MongoDB readiness check -2026-07-20 17:27:43 info: Database UP -2026-07-20 17:27:45 info: MongoDB readiness check -2026-07-20 17:27:45 info: Database UP -2026-07-20 17:27:47 info: MongoDB readiness check -2026-07-20 17:27:47 info: Database UP -2026-07-20 17:27:49 info: MongoDB readiness check -2026-07-20 17:27:49 info: Database UP -2026-07-20 17:27:51 info: MongoDB readiness check -2026-07-20 17:27:51 info: Database UP -2026-07-20 17:27:53 info: MongoDB readiness check -2026-07-20 17:27:54 info: Database UP -2026-07-20 17:27:56 info: MongoDB readiness check -2026-07-20 17:27:56 info: Database UP -2026-07-20 17:27:58 info: MongoDB readiness check -2026-07-20 17:27:58 info: Database UP -2026-07-20 17:28:00 info: MongoDB readiness check -2026-07-20 17:28:00 info: Database UP -2026-07-20 17:28:01 info: User disconnected 5UxwT8llfEFrP5NwAAAB beacuse of transport close -2026-07-20 17:28:01 info: Handle disconnect started -2026-07-20 17:28:01 info: Get room started -2026-07-20 17:28:01 info: Get room executed successfully -2026-07-20 17:28:01 info: Get room started -2026-07-20 17:28:01 info: Get room executed successfully -2026-07-20 17:28:01 info: Get room started -2026-07-20 17:28:01 info: Get room executed successfully -2026-07-20 17:28:01 info: Remove broadcaster success -2026-07-20 17:28:01 info: Handle disconnect succesfully -2026-07-20 17:28:01 info: room:0541ddb4-fe7f-439d-9aa0-e8588c3de238 room deleted successfully -2026-07-20 17:28:02 info: MongoDB readiness check -2026-07-20 17:28:02 info: Database UP -2026-07-20 17:28:04 info: MongoDB readiness check -2026-07-20 17:28:04 info: Database UP -2026-07-20 17:28:06 info: MongoDB readiness check -2026-07-20 17:28:06 info: Database UP -2026-07-20 17:28:09 info: MongoDB readiness check -2026-07-20 17:28:09 info: Database UP -2026-07-20 17:28:11 info: MongoDB readiness check -2026-07-20 17:28:11 info: Database UP -2026-07-20 17:28:13 info: MongoDB readiness check -2026-07-20 17:28:13 info: Database UP -2026-07-20 17:28:15 info: MongoDB readiness check -2026-07-20 17:28:15 info: Database UP -2026-07-20 17:28:17 info: MongoDB readiness check -2026-07-20 17:28:17 info: Database UP -2026-07-20 17:28:19 info: MongoDB readiness check -2026-07-20 17:28:20 info: Database UP -2026-07-20 17:28:22 info: MongoDB readiness check -2026-07-20 17:28:22 info: Database UP -2026-07-20 17:28:24 info: SignIn started -2026-07-20 17:28:24 info: MongoDB readiness check -2026-07-20 17:28:24 info: Database UP -2026-07-20 17:28:24 info: SignIn completed -2026-07-20 17:28:24 info: [node-1] Client connected: Y5nv28gjC-qaZndOAAAD -2026-07-20 17:28:26 info: MongoDB readiness check -2026-07-20 17:28:26 info: Database UP -2026-07-20 17:28:28 info: MongoDB readiness check -2026-07-20 17:28:28 info: Database UP -2026-07-20 17:28:30 info: Create room started -2026-07-20 17:28:30 info: Woker loads loaded successfully -2026-07-20 17:28:30 info: Woker assigned succesfully -2026-07-20 17:28:30 info: Creation of router started -2026-07-20 17:28:30 info: Router created -2026-07-20 17:28:30 info: Creation of room successfully executed -2026-07-20 17:28:30 info: Get room started -2026-07-20 17:28:30 info: Get room executed successfully -2026-07-20 17:28:30 info: Broadcaster added to the room -2026-07-20 17:28:30 info: Room created successfully -2026-07-20 17:28:30 info: MongoDB readiness check -2026-07-20 17:28:31 info: Database UP -2026-07-20 17:28:33 info: MongoDB readiness check -2026-07-20 17:28:33 info: Database UP -2026-07-20 17:28:35 info: MongoDB readiness check -2026-07-20 17:28:35 info: Database UP -2026-07-20 17:28:37 info: MongoDB readiness check -2026-07-20 17:28:37 info: Database UP -2026-07-20 17:28:39 info: MongoDB readiness check -2026-07-20 17:28:39 info: Database UP -2026-07-20 17:28:41 info: MongoDB readiness check -2026-07-20 17:28:41 info: Database UP -2026-07-20 17:28:43 info: MongoDB readiness check -2026-07-20 17:28:44 info: Database UP -2026-07-20 17:28:46 info: MongoDB readiness check -2026-07-20 17:28:46 info: Database UP -2026-07-20 17:28:48 info: MongoDB readiness check -2026-07-20 17:28:48 info: Database UP -2026-07-20 17:28:50 info: MongoDB readiness check -2026-07-20 17:28:50 info: Get room started -2026-07-20 17:28:50 info: Get room executed successfully -2026-07-20 17:28:50 info: Database UP -2026-07-20 17:28:52 info: MongoDB readiness check -2026-07-20 17:28:52 info: Database UP -2026-07-20 17:28:54 info: MongoDB readiness check -2026-07-20 17:28:54 info: Database UP -2026-07-20 17:28:56 info: MongoDB readiness check -2026-07-20 17:28:57 info: Database UP -2026-07-20 17:28:59 info: MongoDB readiness check -2026-07-20 17:28:59 info: Database UP -2026-07-20 17:29:01 info: MongoDB readiness check -2026-07-20 17:29:01 info: Database UP -2026-07-20 17:29:03 info: MongoDB readiness check -2026-07-20 17:29:03 info: Database UP -2026-07-20 17:29:05 info: MongoDB readiness check -2026-07-20 17:29:05 info: Database UP -2026-07-20 17:29:07 info: MongoDB readiness check -2026-07-20 17:29:07 info: Database UP -2026-07-20 17:29:09 info: MongoDB readiness check -2026-07-20 17:29:09 info: Database UP -2026-07-20 17:29:11 info: MongoDB readiness check -2026-07-20 17:29:11 info: Database UP -2026-07-20 17:29:13 info: MongoDB readiness check -2026-07-20 17:29:13 info: Database UP -2026-07-20 17:29:15 info: MongoDB readiness check -2026-07-20 17:29:15 info: Database UP -2026-07-20 17:29:17 info: MongoDB readiness check -2026-07-20 17:29:17 info: Database UP -2026-07-20 17:29:19 info: MongoDB readiness check -2026-07-20 17:29:19 info: Database UP -2026-07-20 17:29:21 info: MongoDB readiness check -2026-07-20 17:29:22 info: Database UP -2026-07-20 17:29:24 info: MongoDB readiness check -2026-07-20 17:29:24 info: Database UP -2026-07-20 17:29:26 info: MongoDB readiness check -2026-07-20 17:29:26 info: Database UP -2026-07-20 17:29:28 info: MongoDB readiness check -2026-07-20 17:29:28 info: Database UP -2026-07-20 17:29:30 info: MongoDB readiness check -2026-07-20 17:29:30 info: Database UP -2026-07-20 17:29:32 info: MongoDB readiness check -2026-07-20 17:29:32 info: Database UP -2026-07-20 17:29:34 info: MongoDB readiness check -2026-07-20 17:29:35 info: Database UP -2026-07-20 17:29:37 info: MongoDB readiness check -2026-07-20 17:29:37 info: Database UP -2026-07-20 17:29:39 info: MongoDB readiness check -2026-07-20 17:29:39 info: Database UP -2026-07-20 17:29:41 info: MongoDB readiness check -2026-07-20 17:29:41 info: Database UP -2026-07-20 17:29:43 info: MongoDB readiness check -2026-07-20 17:29:43 info: Database UP -2026-07-20 17:29:45 info: MongoDB readiness check -2026-07-20 17:29:45 info: Database UP -2026-07-20 17:29:47 info: MongoDB readiness check -2026-07-20 17:29:47 info: Database UP -2026-07-20 17:29:49 info: MongoDB readiness check -2026-07-20 17:29:49 info: Database UP -2026-07-20 17:29:51 info: MongoDB readiness check -2026-07-20 17:29:52 info: Database UP -2026-07-20 17:29:54 info: MongoDB readiness check -2026-07-20 17:29:54 info: Database UP -2026-07-20 17:29:56 info: MongoDB readiness check -2026-07-20 17:29:56 info: Database UP -2026-07-20 17:29:58 info: MongoDB readiness check -2026-07-20 17:29:58 info: Database UP -2026-07-20 17:30:00 info: MongoDB readiness check -2026-07-20 17:30:00 info: Database UP -2026-07-20 17:30:02 info: MongoDB readiness check -2026-07-20 17:30:02 info: Database UP -2026-07-20 17:30:04 info: MongoDB readiness check -2026-07-20 17:30:04 info: Database UP -2026-07-20 17:30:06 info: MongoDB readiness check -2026-07-20 17:30:07 info: Database UP -2026-07-20 17:30:09 info: MongoDB readiness check -2026-07-20 17:30:09 info: Database UP -2026-07-20 17:30:11 info: MongoDB readiness check -2026-07-20 17:30:11 info: Database UP -2026-07-20 17:30:13 info: MongoDB readiness check -2026-07-20 17:30:13 info: Database UP -2026-07-20 17:30:15 info: MongoDB readiness check -2026-07-20 17:30:15 info: Database UP -2026-07-20 17:30:17 info: MongoDB readiness check -2026-07-20 17:30:17 info: Database UP -2026-07-20 17:30:19 info: MongoDB readiness check -2026-07-20 17:30:19 info: Database UP -2026-07-20 17:30:21 info: MongoDB readiness check -2026-07-20 17:30:22 info: Database UP -2026-07-20 17:30:24 info: MongoDB readiness check -2026-07-20 17:30:24 info: Database UP -2026-07-20 17:30:26 info: MongoDB readiness check -2026-07-20 17:30:26 info: Database UP -2026-07-20 17:30:28 info: Get room started -2026-07-20 17:30:28 info: Get room executed successfully -2026-07-20 17:30:28 info: MongoDB readiness check -2026-07-20 17:30:28 info: Database UP -2026-07-20 17:30:30 info: MongoDB readiness check -2026-07-20 17:30:31 info: Database UP -2026-07-20 17:30:33 info: MongoDB readiness check -2026-07-20 17:30:33 info: Database UP -2026-07-20 17:30:35 info: MongoDB readiness check -2026-07-20 17:30:35 info: Database UP -2026-07-20 17:30:37 info: MongoDB readiness check -2026-07-20 17:30:37 info: Database UP -2026-07-20 17:30:39 info: MongoDB readiness check -2026-07-20 17:30:39 info: Database UP -2026-07-20 17:30:41 info: MongoDB readiness check -2026-07-20 17:30:41 info: Database UP -2026-07-20 17:30:43 info: MongoDB readiness check -2026-07-20 17:30:44 info: Database UP -2026-07-20 17:30:46 info: MongoDB readiness check -2026-07-20 17:30:46 info: Database UP -2026-07-20 17:30:48 info: MongoDB readiness check -2026-07-20 17:30:48 info: Database UP -2026-07-20 17:30:50 info: MongoDB readiness check -2026-07-20 17:30:50 info: Database UP -2026-07-20 17:30:52 info: MongoDB readiness check -2026-07-20 17:30:52 info: Database UP -2026-07-20 17:30:54 info: MongoDB readiness check -2026-07-20 17:30:54 info: Database UP -2026-07-20 17:30:56 info: MongoDB readiness check -2026-07-20 17:30:57 info: Database UP -2026-07-20 17:30:59 info: MongoDB readiness check -2026-07-20 17:30:59 info: Database UP -2026-07-20 17:31:01 info: MongoDB readiness check -2026-07-20 17:31:01 info: Database UP -2026-07-20 17:31:03 info: MongoDB readiness check -2026-07-20 17:31:03 info: Database UP -2026-07-20 17:31:05 info: MongoDB readiness check -2026-07-20 17:31:05 info: Database UP -2026-07-20 17:31:07 info: MongoDB readiness check -2026-07-20 17:31:07 info: Database UP -2026-07-20 17:31:09 info: MongoDB readiness check -2026-07-20 17:31:10 info: Database UP -2026-07-20 17:31:12 info: MongoDB readiness check -2026-07-20 17:31:12 info: Database UP -2026-07-20 17:31:14 info: MongoDB readiness check -2026-07-20 17:31:14 info: Database UP -2026-07-20 17:31:16 info: MongoDB readiness check -2026-07-20 17:31:16 info: Database UP -2026-07-20 17:31:18 info: MongoDB readiness check -2026-07-20 17:31:18 info: Database UP -2026-07-20 17:31:20 info: MongoDB readiness check -2026-07-20 17:31:20 info: Database UP -2026-07-20 17:31:22 info: MongoDB readiness check -2026-07-20 17:31:23 info: Database UP -2026-07-20 17:31:25 info: MongoDB readiness check -2026-07-20 17:31:25 info: Database UP -2026-07-20 17:31:27 info: MongoDB readiness check -2026-07-20 17:31:27 info: Database UP -2026-07-20 17:31:29 info: MongoDB readiness check -2026-07-20 17:31:29 info: Database UP -2026-07-20 17:31:31 info: MongoDB readiness check -2026-07-20 17:31:31 info: Database UP -2026-07-20 17:31:33 info: MongoDB readiness check -2026-07-20 17:31:34 info: Database UP -2026-07-20 17:31:36 info: MongoDB readiness check -2026-07-20 17:31:36 info: Database UP -2026-07-20 17:31:38 info: MongoDB readiness check -2026-07-20 17:31:38 info: Database UP -2026-07-20 17:31:40 info: MongoDB readiness check -2026-07-20 17:31:40 info: Database UP -2026-07-20 17:31:42 info: MongoDB readiness check -2026-07-20 17:31:42 info: Database UP -2026-07-20 17:31:44 info: MongoDB readiness check -2026-07-20 17:31:45 info: Database UP -2026-07-20 17:31:46 info: Get room started -2026-07-20 17:31:46 info: Get room executed successfully -2026-07-20 17:31:47 info: MongoDB readiness check -2026-07-20 17:31:47 info: Database UP -2026-07-20 17:31:49 info: MongoDB readiness check -2026-07-20 17:31:49 info: Database UP -2026-07-20 17:31:51 info: MongoDB readiness check -2026-07-20 17:31:51 info: Database UP -2026-07-20 17:31:53 info: MongoDB readiness check -2026-07-20 17:31:53 info: Database UP -2026-07-20 17:31:55 info: MongoDB readiness check -2026-07-20 17:31:55 info: Database UP -2026-07-20 17:31:57 info: MongoDB readiness check -2026-07-20 17:31:57 info: Database UP -2026-07-20 17:31:59 info: MongoDB readiness check -2026-07-20 17:32:00 info: Database UP -2026-07-20 17:32:02 info: MongoDB readiness check -2026-07-20 17:32:02 info: Database UP -2026-07-20 17:32:04 info: MongoDB readiness check -2026-07-20 17:32:04 info: Database UP -2026-07-20 17:32:06 info: MongoDB readiness check -2026-07-20 17:32:06 info: Database UP -2026-07-20 17:32:08 info: MongoDB readiness check -2026-07-20 17:32:08 info: Database UP -2026-07-20 17:32:10 info: MongoDB readiness check -2026-07-20 17:32:10 info: Database UP -2026-07-20 17:32:12 info: MongoDB readiness check -2026-07-20 17:32:13 info: Database UP -2026-07-20 17:32:15 info: MongoDB readiness check -2026-07-20 17:32:15 info: Database UP -2026-07-20 17:32:17 info: MongoDB readiness check -2026-07-20 17:32:17 info: Database UP -2026-07-20 17:32:19 info: MongoDB readiness check -2026-07-20 17:32:19 info: Database UP -2026-07-20 17:32:21 info: MongoDB readiness check -2026-07-20 17:32:21 info: Database UP -2026-07-20 17:32:23 info: MongoDB readiness check -2026-07-20 17:32:23 info: Database UP -2026-07-20 17:32:25 info: MongoDB readiness check -2026-07-20 17:32:25 info: Database UP -2026-07-20 17:32:27 info: MongoDB readiness check -2026-07-20 17:32:27 info: Database UP -2026-07-20 17:32:29 info: MongoDB readiness check -2026-07-20 17:32:30 info: Database UP -2026-07-20 17:32:32 info: MongoDB readiness check -2026-07-20 17:32:32 info: Database UP -2026-07-20 17:32:34 info: MongoDB readiness check -2026-07-20 17:32:34 info: Database UP -2026-07-20 17:32:36 info: MongoDB readiness check -2026-07-20 17:32:37 info: Database UP -2026-07-20 17:32:39 info: MongoDB readiness check -2026-07-20 17:32:39 info: Database UP -2026-07-20 17:32:41 info: MongoDB readiness check -2026-07-20 17:32:41 info: Database UP -2026-07-20 17:32:43 info: MongoDB readiness check -2026-07-20 17:32:43 info: Database UP -2026-07-20 17:32:45 info: MongoDB readiness check -2026-07-20 17:32:45 info: Database UP -2026-07-20 17:32:47 info: MongoDB readiness check -2026-07-20 17:32:47 info: Database UP -2026-07-20 17:32:49 info: MongoDB readiness check -2026-07-20 17:32:49 info: Database UP -2026-07-20 17:32:51 info: MongoDB readiness check -2026-07-20 17:32:51 info: Database UP -2026-07-20 17:32:53 info: MongoDB readiness check -2026-07-20 17:32:53 info: Database UP -2026-07-20 17:32:55 info: MongoDB readiness check -2026-07-20 17:32:55 info: Database UP -2026-07-20 17:33:07 info: MongoDB connected -2026-07-20 17:33:07 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 17:33:07 info: Creating worker started -2026-07-20 17:33:07 info: Creating worker started -2026-07-20 17:33:07 info: Creating worker started -2026-07-20 17:33:08 info: Worker created successfully -2026-07-20 17:33:08 info: Worker created successfully -2026-07-20 17:33:08 info: Worker created successfully -2026-07-20 17:33:08 info: Worker pool initialized -2026-07-20 17:33:10 info: MongoDB readiness check -2026-07-20 17:33:10 info: Database UP -2026-07-20 17:33:12 info: MongoDB readiness check -2026-07-20 17:33:12 info: Database UP -2026-07-20 17:33:14 info: [node-1] Client connected: K8hvfUHkES4JlOX0AAAB -2026-07-20 17:33:14 info: MongoDB readiness check -2026-07-20 17:33:14 info: Database UP -2026-07-20 17:33:16 info: MongoDB readiness check -2026-07-20 17:33:16 info: Database UP -2026-07-20 17:33:18 info: MongoDB readiness check -2026-07-20 17:33:18 info: Database UP -2026-07-20 17:33:20 info: MongoDB readiness check -2026-07-20 17:33:20 info: Database UP -2026-07-20 17:33:27 info: MongoDB connected -2026-07-20 17:33:27 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 17:33:27 info: Creating worker started -2026-07-20 17:33:27 info: Creating worker started -2026-07-20 17:33:27 info: Creating worker started -2026-07-20 17:33:27 info: Worker created successfully -2026-07-20 17:33:27 info: Worker created successfully -2026-07-20 17:33:27 info: Worker created successfully -2026-07-20 17:33:27 info: Worker pool initialized -2026-07-20 17:33:28 info: MongoDB readiness check -2026-07-20 17:33:28 info: Database UP -2026-07-20 17:33:30 info: MongoDB readiness check -2026-07-20 17:33:30 info: Database UP -2026-07-20 17:33:32 info: [node-1] Client connected: HDK-d-gyXNxEmJGgAAAB -2026-07-20 17:33:32 info: MongoDB readiness check -2026-07-20 17:33:32 info: Database UP -2026-07-20 17:33:34 info: MongoDB readiness check -2026-07-20 17:33:35 info: Database UP -2026-07-20 17:33:37 info: MongoDB readiness check -2026-07-20 17:33:37 info: Database UP -2026-07-20 17:33:39 info: MongoDB readiness check -2026-07-20 17:33:39 info: Database UP -2026-07-20 17:33:41 info: MongoDB readiness check -2026-07-20 17:33:41 info: Database UP -2026-07-20 17:33:42 info: User disconnected HDK-d-gyXNxEmJGgAAAB beacuse of transport close -2026-07-20 17:33:42 info: Handle disconnect started -2026-07-20 17:33:42 error: RoomId not found -2026-07-20 17:33:42 warn: IDK -2026-07-20 17:33:43 info: MongoDB readiness check -2026-07-20 17:33:43 info: Database UP -2026-07-20 17:33:45 info: MongoDB readiness check -2026-07-20 17:33:45 info: Database UP -2026-07-20 17:33:47 info: MongoDB readiness check -2026-07-20 17:33:48 info: Database UP -2026-07-20 17:33:50 info: MongoDB readiness check -2026-07-20 17:33:50 info: Database UP -2026-07-20 17:33:52 info: MongoDB readiness check -2026-07-20 17:33:52 info: Database UP -2026-07-20 17:33:52 info: SignIn started -2026-07-20 17:33:52 info: SignIn completed -2026-07-20 17:33:52 info: [node-1] Client connected: IjhS1SOAVTCK4EbHAAAD -2026-07-20 17:33:54 info: MongoDB readiness check -2026-07-20 17:33:54 info: Database UP -2026-07-20 17:33:55 info: Create room started -2026-07-20 17:33:55 info: Woker loads loaded successfully -2026-07-20 17:33:55 info: Woker assigned succesfully -2026-07-20 17:33:55 info: Creation of router started -2026-07-20 17:33:55 info: Router created -2026-07-20 17:33:55 info: Creation of room successfully executed -2026-07-20 17:33:55 info: Get room started -2026-07-20 17:33:55 info: Get room executed successfully -2026-07-20 17:33:55 info: Broadcaster added to the room -2026-07-20 17:33:55 info: Room created successfully -2026-07-20 17:33:56 info: MongoDB readiness check -2026-07-20 17:33:56 info: Database UP -2026-07-20 17:33:58 info: MongoDB readiness check -2026-07-20 17:33:58 info: Database UP -2026-07-20 17:34:00 info: MongoDB readiness check -2026-07-20 17:34:01 info: Database UP -2026-07-20 17:34:03 info: MongoDB readiness check -2026-07-20 17:34:03 info: Database UP -2026-07-20 17:34:05 info: MongoDB readiness check -2026-07-20 17:34:05 info: Database UP -2026-07-20 17:34:07 info: MongoDB readiness check -2026-07-20 17:34:07 info: Database UP -2026-07-20 17:34:07 info: Get room started -2026-07-20 17:34:07 info: Get room executed successfully -2026-07-20 17:34:09 info: MongoDB readiness check -2026-07-20 17:34:09 info: Database UP -2026-07-20 17:34:11 info: MongoDB readiness check -2026-07-20 17:34:11 info: Database UP -2026-07-20 17:34:13 info: MongoDB readiness check -2026-07-20 17:34:14 info: Database UP -2026-07-20 17:34:16 info: MongoDB readiness check -2026-07-20 17:34:16 info: Database UP -2026-07-20 17:34:18 info: MongoDB readiness check -2026-07-20 17:34:18 info: Database UP -2026-07-20 17:34:20 info: MongoDB readiness check -2026-07-20 17:34:20 info: Database UP -2026-07-20 17:34:22 info: MongoDB readiness check -2026-07-20 17:34:22 info: Database UP -2026-07-20 17:34:24 info: MongoDB readiness check -2026-07-20 17:34:25 info: Database UP -2026-07-20 17:34:27 info: MongoDB readiness check -2026-07-20 17:34:27 info: Database UP -2026-07-20 17:34:29 info: MongoDB readiness check -2026-07-20 17:34:29 info: Database UP -2026-07-20 17:34:31 info: MongoDB readiness check -2026-07-20 17:34:31 info: Database UP -2026-07-20 17:34:33 info: MongoDB readiness check -2026-07-20 17:34:33 info: Database UP -2026-07-20 17:34:35 info: MongoDB readiness check -2026-07-20 17:34:35 info: Database UP -2026-07-20 17:34:37 info: MongoDB readiness check -2026-07-20 17:34:37 info: Database UP -2026-07-20 17:34:39 info: MongoDB readiness check -2026-07-20 17:34:40 info: Database UP -2026-07-20 17:34:42 info: MongoDB readiness check -2026-07-20 17:34:42 info: Database UP -2026-07-20 17:34:44 info: MongoDB readiness check -2026-07-20 17:34:44 info: Database UP -2026-07-20 17:34:46 info: MongoDB readiness check -2026-07-20 17:34:46 info: Database UP -2026-07-20 17:34:48 info: MongoDB readiness check -2026-07-20 17:34:48 info: Database UP -2026-07-20 17:34:50 info: MongoDB readiness check -2026-07-20 17:34:50 info: Database UP -2026-07-20 17:34:52 info: MongoDB readiness check -2026-07-20 17:34:52 info: Database UP -2026-07-20 17:34:54 info: MongoDB readiness check -2026-07-20 17:34:55 info: Database UP -2026-07-20 17:34:57 info: MongoDB readiness check -2026-07-20 17:34:57 info: Database UP -2026-07-20 17:34:59 info: MongoDB readiness check -2026-07-20 17:34:59 info: Database UP -2026-07-20 17:35:01 info: MongoDB readiness check -2026-07-20 17:35:01 info: Database UP -2026-07-20 17:35:03 info: MongoDB readiness check -2026-07-20 17:35:03 info: Database UP -2026-07-20 17:35:05 info: MongoDB readiness check -2026-07-20 17:35:05 info: Database UP -2026-07-20 17:35:07 info: MongoDB readiness check -2026-07-20 17:35:08 info: Database UP -2026-07-20 17:35:10 info: MongoDB readiness check -2026-07-20 17:35:10 info: Database UP -2026-07-20 17:35:12 info: MongoDB readiness check -2026-07-20 17:35:12 info: Database UP -2026-07-20 17:35:14 info: MongoDB readiness check -2026-07-20 17:35:14 info: Database UP -2026-07-20 17:35:16 info: MongoDB readiness check -2026-07-20 17:35:16 info: Database UP -2026-07-20 17:35:18 info: MongoDB readiness check -2026-07-20 17:35:18 info: Database UP -2026-07-20 17:35:20 info: MongoDB readiness check -2026-07-20 17:35:21 info: Database UP -2026-07-20 17:35:23 info: MongoDB readiness check -2026-07-20 17:35:23 info: Database UP -2026-07-20 17:35:25 info: MongoDB readiness check -2026-07-20 17:35:25 info: Database UP -2026-07-20 17:35:27 info: MongoDB readiness check -2026-07-20 17:35:27 info: Database UP -2026-07-20 17:35:29 info: MongoDB readiness check -2026-07-20 17:35:29 info: Database UP -2026-07-20 17:35:31 info: MongoDB readiness check -2026-07-20 17:35:31 info: Database UP -2026-07-20 17:35:33 info: MongoDB readiness check -2026-07-20 17:35:33 info: Database UP -2026-07-20 17:35:35 info: MongoDB readiness check -2026-07-20 17:35:36 info: Database UP -2026-07-20 17:35:38 info: MongoDB readiness check -2026-07-20 17:35:38 info: Database UP -2026-07-20 17:35:40 info: MongoDB readiness check -2026-07-20 17:35:40 info: Database UP -2026-07-20 17:35:42 info: MongoDB readiness check -2026-07-20 17:35:42 info: Database UP -2026-07-20 17:35:44 info: MongoDB readiness check -2026-07-20 17:35:44 info: Database UP -2026-07-20 17:35:46 info: MongoDB readiness check -2026-07-20 17:35:46 info: Database UP -2026-07-20 17:35:48 info: MongoDB readiness check -2026-07-20 17:35:49 info: Database UP -2026-07-20 17:35:51 info: MongoDB readiness check -2026-07-20 17:35:51 info: Database UP -2026-07-20 17:35:53 info: MongoDB readiness check -2026-07-20 17:35:53 info: Database UP -2026-07-20 17:35:55 info: MongoDB readiness check -2026-07-20 17:35:55 info: Database UP -2026-07-20 17:35:57 info: MongoDB readiness check -2026-07-20 17:35:57 info: Database UP -2026-07-20 17:35:59 info: MongoDB readiness check -2026-07-20 17:35:59 info: Database UP -2026-07-20 17:36:01 info: MongoDB readiness check -2026-07-20 17:36:02 info: Database UP -2026-07-20 17:36:04 info: MongoDB readiness check -2026-07-20 17:36:04 info: Database UP -2026-07-20 17:36:06 info: MongoDB readiness check -2026-07-20 17:36:06 info: Database UP -2026-07-20 17:36:08 info: MongoDB readiness check -2026-07-20 17:36:08 info: Database UP -2026-07-20 17:36:10 info: MongoDB readiness check -2026-07-20 17:36:10 info: Database UP -2026-07-20 17:36:12 info: MongoDB readiness check -2026-07-20 17:36:12 info: Database UP -2026-07-20 17:36:14 info: MongoDB readiness check -2026-07-20 17:36:15 info: Database UP -2026-07-20 17:36:17 info: MongoDB readiness check -2026-07-20 17:36:17 info: Database UP -2026-07-20 17:36:19 info: MongoDB readiness check -2026-07-20 17:36:19 info: Database UP -2026-07-20 17:36:21 info: MongoDB readiness check -2026-07-20 17:36:25 info: MongoDB readiness check -2026-07-20 17:36:29 info: MongoDB readiness check -2026-07-20 17:36:33 info: MongoDB readiness check -2026-07-20 17:36:37 info: MongoDB readiness check -2026-07-20 17:36:41 info: MongoDB readiness check -2026-07-20 17:36:41 error: Database connection is not open -2026-07-20 17:36:43 info: MongoDB readiness check -2026-07-20 17:36:43 error: Database connection is not open -2026-07-20 17:36:45 info: MongoDB readiness check -2026-07-20 17:36:45 error: Database connection is not open -2026-07-20 17:36:47 info: MongoDB readiness check -2026-07-20 17:36:47 error: Database connection is not open -2026-07-20 17:37:00 info: MongoDB connected -2026-07-20 17:37:00 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 17:37:00 info: Creating worker started -2026-07-20 17:37:00 info: Creating worker started -2026-07-20 17:37:00 info: Creating worker started -2026-07-20 17:37:00 info: Worker created successfully -2026-07-20 17:37:00 info: Worker created successfully -2026-07-20 17:37:00 info: Worker created successfully -2026-07-20 17:37:00 info: Worker pool initialized -2026-07-20 17:37:01 info: MongoDB readiness check -2026-07-20 17:37:01 info: Database UP -2026-07-20 17:37:03 info: MongoDB readiness check -2026-07-20 17:37:03 info: Database UP -2026-07-20 17:37:05 info: MongoDB readiness check -2026-07-20 17:37:05 info: Database UP -2026-07-20 17:37:07 info: MongoDB readiness check -2026-07-20 17:37:07 info: Database UP -2026-07-20 17:37:09 info: MongoDB readiness check -2026-07-20 17:37:10 info: Database UP -2026-07-20 17:37:12 info: MongoDB readiness check -2026-07-20 17:37:12 info: Database UP -2026-07-20 17:37:14 info: MongoDB readiness check -2026-07-20 17:37:14 info: SignIn started -2026-07-20 17:37:14 info: Database UP -2026-07-20 17:37:14 info: SignIn completed -2026-07-20 17:37:14 info: [node-1] Client connected: mWtc6GvEFOu6Po7DAAAB -2026-07-20 17:37:16 info: MongoDB readiness check -2026-07-20 17:37:16 info: Database UP -2026-07-20 17:37:17 info: Create room started -2026-07-20 17:37:17 info: Woker loads loaded successfully -2026-07-20 17:37:17 info: Woker assigned succesfully -2026-07-20 17:37:17 info: Creation of router started -2026-07-20 17:37:17 info: Router created -2026-07-20 17:37:17 info: Creation of room successfully executed -2026-07-20 17:37:17 info: Get room started -2026-07-20 17:37:17 info: Get room executed successfully -2026-07-20 17:37:17 info: Broadcaster added to the room -2026-07-20 17:37:17 info: Room created successfully -2026-07-20 17:37:18 info: MongoDB readiness check -2026-07-20 17:37:18 info: Database UP -2026-07-20 17:37:20 info: MongoDB readiness check -2026-07-20 17:37:20 info: Database UP -2026-07-20 17:37:21 info: Get room started -2026-07-20 17:37:21 info: Get room executed successfully -2026-07-20 17:37:22 info: MongoDB readiness check -2026-07-20 17:37:23 info: Database UP -2026-07-20 17:37:25 info: MongoDB readiness check -2026-07-20 17:37:25 info: Database UP -2026-07-20 17:37:27 info: MongoDB readiness check -2026-07-20 17:37:27 info: Database UP -2026-07-20 17:37:29 info: MongoDB readiness check -2026-07-20 17:37:29 info: Database UP -2026-07-20 17:37:31 info: MongoDB readiness check -2026-07-20 17:37:31 info: Database UP -2026-07-20 17:37:33 info: MongoDB readiness check -2026-07-20 17:37:34 info: Database UP -2026-07-20 17:37:36 info: MongoDB readiness check -2026-07-20 17:37:36 info: Database UP -2026-07-20 17:37:38 info: MongoDB readiness check -2026-07-20 17:37:38 info: Database UP -2026-07-20 17:37:40 info: MongoDB readiness check -2026-07-20 17:37:40 info: Database UP -2026-07-20 17:37:42 info: MongoDB readiness check -2026-07-20 17:37:43 info: Database UP -2026-07-20 17:37:45 info: MongoDB readiness check -2026-07-20 17:37:45 info: Database UP -2026-07-20 17:37:47 info: MongoDB readiness check -2026-07-20 17:37:47 info: Database UP -2026-07-20 17:37:49 info: MongoDB readiness check -2026-07-20 17:37:49 info: Database UP -2026-07-20 17:37:51 info: MongoDB readiness check -2026-07-20 17:37:51 info: Database UP -2026-07-20 17:37:53 info: MongoDB readiness check -2026-07-20 17:37:54 info: Database UP -2026-07-20 17:37:56 info: MongoDB readiness check -2026-07-20 17:37:56 info: Database UP -2026-07-20 17:37:58 info: MongoDB readiness check -2026-07-20 17:37:58 info: Database UP -2026-07-20 17:38:00 info: MongoDB readiness check -2026-07-20 17:38:00 info: Database UP -2026-07-20 17:38:02 info: MongoDB readiness check -2026-07-20 17:38:03 info: Database UP -2026-07-20 17:38:05 info: MongoDB readiness check -2026-07-20 17:38:05 info: Database UP -2026-07-20 17:38:07 info: MongoDB readiness check -2026-07-20 17:38:07 info: Database UP -2026-07-20 17:38:09 info: MongoDB readiness check -2026-07-20 17:38:09 info: Database UP -2026-07-20 17:38:11 info: MongoDB readiness check -2026-07-20 17:38:12 info: Database UP -2026-07-20 17:38:14 info: MongoDB readiness check -2026-07-20 17:38:14 info: Database UP -2026-07-20 17:38:16 info: MongoDB readiness check -2026-07-20 17:38:16 info: Database UP -2026-07-20 17:38:18 info: MongoDB readiness check -2026-07-20 17:38:18 info: Database UP -2026-07-20 17:38:27 info: MongoDB connected -2026-07-20 17:38:27 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 17:38:27 info: Creating worker started -2026-07-20 17:38:27 info: Creating worker started -2026-07-20 17:38:27 info: Creating worker started -2026-07-20 17:38:27 info: Worker created successfully -2026-07-20 17:38:27 info: Worker created successfully -2026-07-20 17:38:27 info: Worker created successfully -2026-07-20 17:38:27 info: Worker pool initialized -2026-07-20 17:38:34 info: MongoDB connected -2026-07-20 17:38:34 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 17:38:34 info: Creating worker started -2026-07-20 17:38:34 info: Creating worker started -2026-07-20 17:38:34 info: Creating worker started -2026-07-20 17:38:34 info: Worker created successfully -2026-07-20 17:38:34 info: Worker created successfully -2026-07-20 17:38:34 info: Worker created successfully -2026-07-20 17:38:34 info: Worker pool initialized -2026-07-20 17:38:36 info: MongoDB readiness check -2026-07-20 17:38:36 info: Database UP -2026-07-20 17:38:38 info: MongoDB readiness check -2026-07-20 17:38:38 info: Database UP -2026-07-20 17:38:40 info: [node-1] Client connected: FUtNECfJk-L9eSKXAAAB -2026-07-20 17:38:40 info: MongoDB readiness check -2026-07-20 17:38:41 info: Database UP -2026-07-20 17:38:43 info: MongoDB readiness check -2026-07-20 17:38:43 info: Database UP -2026-07-20 17:38:45 info: MongoDB readiness check -2026-07-20 17:38:45 info: Database UP -2026-07-20 17:38:47 info: MongoDB readiness check -2026-07-20 17:38:47 info: Database UP -2026-07-20 17:38:55 info: MongoDB connected -2026-07-20 17:38:55 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 17:38:55 info: Creating worker started -2026-07-20 17:38:55 info: Creating worker started -2026-07-20 17:38:55 info: Creating worker started -2026-07-20 17:38:55 info: Worker created successfully -2026-07-20 17:38:55 info: Worker created successfully -2026-07-20 17:38:55 info: Worker created successfully -2026-07-20 17:38:55 info: Worker pool initialized -2026-07-20 17:38:55 info: MongoDB readiness check -2026-07-20 17:38:55 info: Database UP -2026-07-20 17:38:57 info: MongoDB readiness check -2026-07-20 17:38:58 info: Database UP -2026-07-20 17:39:00 info: MongoDB readiness check -2026-07-20 17:39:00 info: Database UP -2026-07-20 17:39:02 info: MongoDB readiness check -2026-07-20 17:39:02 info: Database UP -2026-07-20 17:39:03 info: SignIn started -2026-07-20 17:39:03 info: SignIn completed -2026-07-20 17:39:03 info: [node-1] Client connected: Iru-FhO7EOvaNzQMAAAB -2026-07-20 17:39:04 info: MongoDB readiness check -2026-07-20 17:39:04 info: Database UP -2026-07-20 17:39:06 info: Create room started -2026-07-20 17:39:06 info: Woker loads loaded successfully -2026-07-20 17:39:06 info: Woker assigned succesfully -2026-07-20 17:39:06 info: Creation of router started -2026-07-20 17:39:06 info: Router created -2026-07-20 17:39:06 info: Creation of room successfully executed -2026-07-20 17:39:06 info: Get room started -2026-07-20 17:39:06 info: Get room executed successfully -2026-07-20 17:39:06 info: Broadcaster added to the room -2026-07-20 17:39:06 info: Room created successfully -2026-07-20 17:39:06 info: MongoDB readiness check -2026-07-20 17:39:06 info: Database UP -2026-07-20 17:39:08 info: MongoDB readiness check -2026-07-20 17:39:08 info: Get room started -2026-07-20 17:39:08 info: Get room executed successfully -2026-07-20 17:39:09 info: Database UP -2026-07-20 17:39:11 info: MongoDB readiness check -2026-07-20 17:39:11 info: Database UP -2026-07-20 17:39:13 info: MongoDB readiness check -2026-07-20 17:39:13 info: Database UP -2026-07-20 17:39:15 info: MongoDB readiness check -2026-07-20 17:39:15 info: Database UP -2026-07-20 17:39:17 info: MongoDB readiness check -2026-07-20 17:39:17 info: Database UP -2026-07-20 17:39:19 info: MongoDB readiness check -2026-07-20 17:39:19 info: Database UP -2026-07-20 17:39:21 info: MongoDB readiness check -2026-07-20 17:39:21 info: Database UP -2026-07-20 17:39:23 info: MongoDB readiness check -2026-07-20 17:39:24 info: Database UP -2026-07-20 17:39:26 info: MongoDB readiness check -2026-07-20 17:39:26 info: Database UP -2026-07-20 17:39:28 info: MongoDB readiness check -2026-07-20 17:39:28 info: Database UP -2026-07-20 17:39:30 info: MongoDB readiness check -2026-07-20 17:39:30 info: Database UP -2026-07-20 17:39:32 info: MongoDB readiness check -2026-07-20 17:39:33 info: Database UP -2026-07-20 17:39:35 info: MongoDB readiness check -2026-07-20 17:39:35 info: Database UP -2026-07-20 17:39:37 info: MongoDB readiness check -2026-07-20 17:39:37 info: Database UP -2026-07-20 17:39:39 info: MongoDB readiness check -2026-07-20 17:39:39 info: Database UP -2026-07-20 17:39:41 info: MongoDB readiness check -2026-07-20 17:39:41 info: Database UP -2026-07-20 17:39:43 info: MongoDB readiness check -2026-07-20 17:39:44 info: Database UP -2026-07-20 17:39:46 info: MongoDB readiness check -2026-07-20 17:39:46 info: Database UP -2026-07-20 17:39:48 info: MongoDB readiness check -2026-07-20 17:39:48 info: Database UP -2026-07-20 17:39:50 info: MongoDB readiness check -2026-07-20 17:39:50 info: Database UP -2026-07-20 17:39:52 info: MongoDB readiness check -2026-07-20 17:39:52 info: Database UP -2026-07-20 17:39:54 info: MongoDB readiness check -2026-07-20 17:39:55 info: Database UP -2026-07-20 17:39:57 info: MongoDB readiness check -2026-07-20 17:39:57 info: Database UP -2026-07-20 17:39:59 info: MongoDB readiness check -2026-07-20 17:39:59 info: Database UP -2026-07-20 17:40:13 info: MongoDB connected -2026-07-20 17:40:13 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 17:40:13 info: Creating worker started -2026-07-20 17:40:13 info: Creating worker started -2026-07-20 17:40:13 info: Creating worker started -2026-07-20 17:40:13 info: Worker created successfully -2026-07-20 17:40:13 info: Worker created successfully -2026-07-20 17:40:13 info: Worker created successfully -2026-07-20 17:40:13 info: Worker pool initialized -2026-07-20 17:40:13 info: MongoDB readiness check -2026-07-20 17:40:14 info: Database UP -2026-07-20 17:40:16 info: MongoDB readiness check -2026-07-20 17:40:16 info: Database UP -2026-07-20 17:40:16 info: [node-1] Client connected: 9oQ2QSYUyqbFPi3sAAAB -2026-07-20 17:40:18 info: MongoDB readiness check -2026-07-20 17:40:18 info: Database UP -2026-07-20 17:40:20 info: MongoDB readiness check -2026-07-20 17:40:20 info: Database UP -2026-07-20 17:40:22 info: MongoDB readiness check -2026-07-20 17:40:22 info: Database UP -2026-07-20 17:40:24 info: MongoDB readiness check -2026-07-20 17:40:25 info: Database UP -2026-07-20 17:40:27 info: MongoDB readiness check -2026-07-20 17:40:27 info: Database UP -2026-07-20 17:40:29 info: MongoDB readiness check -2026-07-20 17:40:29 info: Database UP -2026-07-20 17:40:31 info: MongoDB readiness check -2026-07-20 17:40:31 info: Database UP -2026-07-20 17:40:33 info: MongoDB readiness check -2026-07-20 17:40:33 info: Database UP -2026-07-20 17:40:35 info: MongoDB readiness check -2026-07-20 17:40:36 info: Database UP -2026-07-20 17:40:37 info: Get room started -2026-07-20 17:40:37 error: Room not found -2026-07-20 17:40:37 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:98:13) - at authenticateUser (/home/harshit/CrowdStream/backend/src/utils/chat.util.ts:18:25) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:44:42) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 17:40:37 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:110:11) - at authenticateUser (/home/harshit/CrowdStream/backend/src/utils/chat.util.ts:18:25) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:44:42) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 17:40:38 info: MongoDB readiness check -2026-07-20 17:40:38 info: Database UP -2026-07-20 17:40:40 info: MongoDB readiness check -2026-07-20 17:40:40 info: Database UP -2026-07-20 17:40:42 info: MongoDB readiness check -2026-07-20 17:40:42 info: Database UP -2026-07-20 17:40:44 info: User disconnected 9oQ2QSYUyqbFPi3sAAAB beacuse of transport close -2026-07-20 17:40:44 info: Handle disconnect started -2026-07-20 17:40:44 error: RoomId not found -2026-07-20 17:40:44 warn: IDK -2026-07-20 17:40:44 info: MongoDB readiness check -2026-07-20 17:40:44 info: Database UP -2026-07-20 17:40:46 info: MongoDB readiness check -2026-07-20 17:40:47 info: Database UP -2026-07-20 17:40:49 info: MongoDB readiness check -2026-07-20 17:40:49 info: Database UP -2026-07-20 17:40:51 info: MongoDB readiness check -2026-07-20 17:40:51 info: Database UP -2026-07-20 17:40:53 info: MongoDB readiness check -2026-07-20 17:40:53 info: Database UP -2026-07-20 17:40:55 info: MongoDB readiness check -2026-07-20 17:40:55 info: Database UP -2026-07-20 17:40:57 info: MongoDB readiness check -2026-07-20 17:40:58 info: Database UP -2026-07-20 17:41:00 info: MongoDB readiness check -2026-07-20 17:41:00 info: Database UP -2026-07-20 17:41:02 info: MongoDB readiness check -2026-07-20 17:41:02 info: Database UP -2026-07-20 17:41:04 info: MongoDB readiness check -2026-07-20 17:41:04 info: Database UP -2026-07-20 17:41:06 info: MongoDB readiness check -2026-07-20 17:41:07 info: Database UP -2026-07-20 17:41:09 info: MongoDB readiness check -2026-07-20 17:41:09 info: Database UP -2026-07-20 17:41:11 info: MongoDB readiness check -2026-07-20 17:41:11 info: Database UP -2026-07-20 17:41:13 info: MongoDB readiness check -2026-07-20 17:41:13 info: Database UP -2026-07-20 17:41:15 info: MongoDB readiness check -2026-07-20 17:41:15 info: Database UP -2026-07-20 17:41:17 info: MongoDB readiness check -2026-07-20 17:41:17 info: Database UP -2026-07-20 17:41:19 info: MongoDB readiness check -2026-07-20 17:41:20 info: Database UP -2026-07-20 17:41:22 info: MongoDB readiness check -2026-07-20 17:41:22 info: Database UP -2026-07-20 17:41:24 info: MongoDB readiness check -2026-07-20 17:41:24 info: Database UP -2026-07-20 17:41:46 info: MongoDB connected -2026-07-20 17:41:46 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 17:41:46 info: Creating worker started -2026-07-20 17:41:46 info: Creating worker started -2026-07-20 17:41:46 info: Creating worker started -2026-07-20 17:41:46 info: Worker created successfully -2026-07-20 17:41:46 info: Worker created successfully -2026-07-20 17:41:46 info: Worker created successfully -2026-07-20 17:41:46 info: Worker pool initialized -2026-07-20 17:42:10 info: MongoDB connected -2026-07-20 17:42:10 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 17:42:10 info: Creating worker started -2026-07-20 17:42:10 info: Creating worker started -2026-07-20 17:42:10 info: Creating worker started -2026-07-20 17:42:10 info: Worker created successfully -2026-07-20 17:42:10 info: Worker created successfully -2026-07-20 17:42:10 info: Worker created successfully -2026-07-20 17:42:10 info: Worker pool initialized -2026-07-20 17:42:12 info: MongoDB readiness check -2026-07-20 17:42:12 info: Database UP -2026-07-20 17:42:14 info: MongoDB readiness check -2026-07-20 17:42:14 info: Database UP -2026-07-20 17:42:16 info: SignIn started -2026-07-20 17:42:16 info: SignIn completed -2026-07-20 17:42:16 info: [node-1] Client connected: PN9aEv00DGttPFeOAAAB -2026-07-20 17:42:16 info: MongoDB readiness check -2026-07-20 17:42:16 info: Database UP -2026-07-20 17:42:18 info: MongoDB readiness check -2026-07-20 17:42:19 info: Database UP -2026-07-20 17:42:21 info: MongoDB readiness check -2026-07-20 17:42:21 info: Create room started -2026-07-20 17:42:21 info: Woker loads loaded successfully -2026-07-20 17:42:21 info: Woker assigned succesfully -2026-07-20 17:42:21 info: Creation of router started -2026-07-20 17:42:21 info: Router created -2026-07-20 17:42:21 info: Creation of room successfully executed -2026-07-20 17:42:21 info: Get room started -2026-07-20 17:42:21 info: Get room executed successfully -2026-07-20 17:42:21 info: Broadcaster added to the room -2026-07-20 17:42:21 info: Room created successfully -2026-07-20 17:42:21 info: Database UP -2026-07-20 17:42:23 info: MongoDB readiness check -2026-07-20 17:42:23 info: Database UP -2026-07-20 17:42:25 info: MongoDB readiness check -2026-07-20 17:42:25 info: Database UP -2026-07-20 17:42:25 info: Get room started -2026-07-20 17:42:25 info: Get room executed successfully -2026-07-20 17:42:27 info: MongoDB readiness check -2026-07-20 17:42:27 info: Database UP -2026-07-20 17:42:29 info: MongoDB readiness check -2026-07-20 17:42:29 info: Database UP -2026-07-20 17:42:31 info: MongoDB readiness check -2026-07-20 17:42:32 info: Database UP -2026-07-20 17:42:34 info: MongoDB readiness check -2026-07-20 17:42:34 info: Database UP -2026-07-20 17:42:36 info: MongoDB readiness check -2026-07-20 17:42:36 info: Database UP -2026-07-20 17:42:38 info: MongoDB readiness check -2026-07-20 17:42:38 info: Database UP -2026-07-20 17:42:40 info: MongoDB readiness check -2026-07-20 17:42:41 info: Database UP -2026-07-20 17:42:43 info: MongoDB readiness check -2026-07-20 17:42:43 info: Database UP -2026-07-20 17:42:45 info: MongoDB readiness check -2026-07-20 17:42:45 info: Database UP -2026-07-20 17:42:47 info: MongoDB readiness check -2026-07-20 17:42:47 info: Database UP -2026-07-20 17:42:49 info: MongoDB readiness check -2026-07-20 17:42:49 info: Database UP -2026-07-20 17:42:51 info: MongoDB readiness check -2026-07-20 17:42:51 info: Database UP -2026-07-20 17:42:53 info: MongoDB readiness check -2026-07-20 17:42:54 info: Database UP -2026-07-20 17:42:56 info: MongoDB readiness check -2026-07-20 17:42:56 info: Database UP -2026-07-20 17:42:58 info: MongoDB readiness check -2026-07-20 17:42:58 info: Database UP -2026-07-20 17:43:00 info: MongoDB readiness check -2026-07-20 17:43:00 info: Database UP -2026-07-20 17:43:02 info: MongoDB readiness check -2026-07-20 17:43:03 info: Database UP -2026-07-20 17:43:05 info: MongoDB readiness check -2026-07-20 17:43:05 info: Database UP -2026-07-20 17:43:07 info: MongoDB readiness check -2026-07-20 17:43:07 info: Database UP -2026-07-20 17:43:09 info: MongoDB readiness check -2026-07-20 17:43:09 info: Database UP -2026-07-20 17:43:11 info: MongoDB readiness check -2026-07-20 17:43:12 info: Database UP -2026-07-20 17:43:14 info: MongoDB readiness check -2026-07-20 17:43:14 info: Database UP -2026-07-20 17:43:16 info: MongoDB readiness check -2026-07-20 17:43:16 info: Database UP -2026-07-20 17:43:18 info: MongoDB readiness check -2026-07-20 17:43:19 info: Database UP -2026-07-20 17:43:28 info: MongoDB connected -2026-07-20 17:43:28 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 17:43:28 info: Creating worker started -2026-07-20 17:43:28 info: Creating worker started -2026-07-20 17:43:28 info: Creating worker started -2026-07-20 17:43:28 info: Worker created successfully -2026-07-20 17:43:28 info: Worker created successfully -2026-07-20 17:43:28 info: Worker created successfully -2026-07-20 17:43:28 info: Worker pool initialized -2026-07-20 17:43:33 info: [node-1] Client connected: 5Zej3pyhFr0QkhwOAAAB -2026-07-20 17:44:47 info: MongoDB connected -2026-07-20 17:44:47 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 17:44:47 info: Creating worker started -2026-07-20 17:44:47 info: Creating worker started -2026-07-20 17:44:47 info: Creating worker started -2026-07-20 17:44:47 info: Worker created successfully -2026-07-20 17:44:47 info: Worker created successfully -2026-07-20 17:44:47 info: Worker created successfully -2026-07-20 17:44:47 info: Worker pool initialized -2026-07-20 17:44:55 info: MongoDB connected -2026-07-20 17:44:55 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 17:44:55 info: Creating worker started -2026-07-20 17:44:55 info: Creating worker started -2026-07-20 17:44:55 info: Creating worker started -2026-07-20 17:44:55 info: Worker created successfully -2026-07-20 17:44:55 info: Worker created successfully -2026-07-20 17:44:55 info: Worker created successfully -2026-07-20 17:44:55 info: Worker pool initialized -2026-07-20 17:45:05 info: SignIn started -2026-07-20 17:45:05 info: SignIn completed -2026-07-20 17:45:05 info: [node-1] Client connected: HLukINiMYgqe7eZfAAAB -2026-07-20 17:45:07 info: Create room started -2026-07-20 17:45:07 info: Woker loads loaded successfully -2026-07-20 17:45:07 info: Woker assigned succesfully -2026-07-20 17:45:07 info: Creation of router started -2026-07-20 17:45:07 info: Router created -2026-07-20 17:45:07 info: Creation of room successfully executed -2026-07-20 17:45:07 info: Get room started -2026-07-20 17:45:07 info: Get room executed successfully -2026-07-20 17:45:07 info: Broadcaster added to the room -2026-07-20 17:45:07 info: Room created successfully -2026-07-20 17:45:11 info: Get room started -2026-07-20 17:45:11 info: Get room executed successfully -2026-07-20 17:45:35 info: MongoDB connected -2026-07-20 17:45:35 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 17:45:35 info: Creating worker started -2026-07-20 17:45:35 info: Creating worker started -2026-07-20 17:45:35 info: Creating worker started -2026-07-20 17:45:35 info: Worker created successfully -2026-07-20 17:45:35 info: Worker created successfully -2026-07-20 17:45:35 info: Worker created successfully -2026-07-20 17:45:35 info: Worker pool initialized -2026-07-20 17:45:47 info: SignIn started -2026-07-20 17:45:47 info: SignIn completed -2026-07-20 17:45:48 info: [node-1] Client connected: eJtT4hyN0IdKJ4vaAAAB -2026-07-20 17:45:54 info: Create room started -2026-07-20 17:45:54 info: Woker loads loaded successfully -2026-07-20 17:45:54 info: Woker assigned succesfully -2026-07-20 17:45:54 info: Creation of router started -2026-07-20 17:45:54 info: Router created -2026-07-20 17:45:54 info: Creation of room successfully executed -2026-07-20 17:45:54 info: Get room started -2026-07-20 17:45:54 info: Get room executed successfully -2026-07-20 17:45:54 info: Broadcaster added to the room -2026-07-20 17:45:54 info: Room created successfully -2026-07-20 17:45:58 info: Get room started -2026-07-20 17:45:58 info: Get room executed successfully -2026-07-20 17:48:44 info: Get room started -2026-07-20 17:48:44 info: Get room executed successfully -2026-07-20 17:50:27 info: Get room started -2026-07-20 17:50:27 info: Get room executed successfully -2026-07-20 17:50:33 info: Get room started -2026-07-20 17:50:33 info: Get room executed successfully -2026-07-20 17:59:47 info: MongoDB connected -2026-07-20 17:59:47 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 17:59:47 info: Creating worker started -2026-07-20 17:59:47 info: Creating worker started -2026-07-20 17:59:47 info: Creating worker started -2026-07-20 17:59:47 info: Worker created successfully -2026-07-20 17:59:47 info: Worker created successfully -2026-07-20 17:59:47 info: Worker created successfully -2026-07-20 17:59:47 info: Worker pool initialized -2026-07-20 17:59:51 info: [node-1] Client connected: 91QHQZLwA-NwI06cAAAB -2026-07-20 17:59:52 info: User disconnected 91QHQZLwA-NwI06cAAAB beacuse of transport close -2026-07-20 17:59:52 info: Handle disconnect started -2026-07-20 17:59:52 error: RoomId not found -2026-07-20 17:59:53 warn: IDK -2026-07-20 18:00:44 info: SignIn started -2026-07-20 18:00:44 info: SignIn completed -2026-07-20 18:00:44 info: [node-1] Client connected: UgEA0sgxsmQXkp5sAAAD -2026-07-20 18:00:46 info: Create room started -2026-07-20 18:00:46 info: Woker loads loaded successfully -2026-07-20 18:00:46 info: Woker assigned succesfully -2026-07-20 18:00:47 info: Creation of router started -2026-07-20 18:00:47 info: Router created -2026-07-20 18:00:47 info: Creation of room successfully executed -2026-07-20 18:00:47 info: Get room started -2026-07-20 18:00:47 info: Get room executed successfully -2026-07-20 18:00:47 info: Broadcaster added to the room -2026-07-20 18:00:47 info: Room created successfully -2026-07-20 18:00:52 info: Get room started -2026-07-20 18:00:52 info: Get room executed successfully -2026-07-20 18:02:28 info: User disconnected UgEA0sgxsmQXkp5sAAAD beacuse of transport close -2026-07-20 18:02:28 info: Handle disconnect started -2026-07-20 18:02:28 info: Get room started -2026-07-20 18:02:28 info: Get room executed successfully -2026-07-20 18:02:28 info: Get room started -2026-07-20 18:02:28 info: Get room executed successfully -2026-07-20 18:02:28 info: Get room started -2026-07-20 18:02:28 info: Get room executed successfully -2026-07-20 18:02:28 info: Remove broadcaster success -2026-07-20 18:02:28 info: Handle disconnect succesfully -2026-07-20 18:02:28 info: room:bb07e72d-4f61-4899-a3be-0555554d8d4e room deleted successfully -2026-07-20 18:03:38 info: MongoDB connected -2026-07-20 18:03:39 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 18:03:39 info: Creating worker started -2026-07-20 18:03:39 info: Creating worker started -2026-07-20 18:03:39 info: Creating worker started -2026-07-20 18:03:39 info: Worker created successfully -2026-07-20 18:03:39 info: Worker created successfully -2026-07-20 18:03:39 info: Worker created successfully -2026-07-20 18:03:39 info: Worker pool initialized -2026-07-20 18:05:16 info: MongoDB connected -2026-07-20 18:05:16 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 18:05:16 info: Creating worker started -2026-07-20 18:05:16 info: Creating worker started -2026-07-20 18:05:16 info: Creating worker started -2026-07-20 18:05:16 info: Worker created successfully -2026-07-20 18:05:16 info: Worker created successfully -2026-07-20 18:05:16 info: Worker created successfully -2026-07-20 18:05:16 info: Worker pool initialized -2026-07-20 18:05:31 info: SignIn started -2026-07-20 18:05:31 info: SignIn completed -2026-07-20 18:05:31 info: [node-1] Client connected: INciQ4tO-xXNcEexAAAB -2026-07-20 18:05:47 info: Create room started -2026-07-20 18:05:47 info: Woker loads loaded successfully -2026-07-20 18:05:47 info: Woker assigned succesfully -2026-07-20 18:05:47 info: Creation of router started -2026-07-20 18:05:47 info: Router created -2026-07-20 18:05:47 info: Creation of room successfully executed -2026-07-20 18:05:47 info: Get room started -2026-07-20 18:05:47 info: Get room executed successfully -2026-07-20 18:05:47 info: Broadcaster added to the room -2026-07-20 18:05:47 info: Room created successfully -2026-07-20 18:05:51 info: Get room started -2026-07-20 18:05:51 info: Get room executed successfully -2026-07-20 18:06:54 info: Get room started -2026-07-20 18:06:54 info: Get room executed successfully -2026-07-20 18:08:04 warn: MongoDB disconnected -2026-07-20 18:08:04 error: MongoNetworkError: read ECONNRESET - at Connection.onSocketError (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection.ts:308:18) - at TLSSocket.emit (node:events:521:24) - at emitErrorNT (node:internal/streams/destroy:170:8) - at emitErrorCloseNT (node:internal/streams/destroy:129:3) - at processTicksAndRejections (node:internal/process/task_queues:90:21) -2026-07-20 18:08:06 error: Database connection is not open -2026-07-20 18:08:08 error: Database connection is not open -2026-07-20 18:08:10 error: Database connection is not open -2026-07-20 18:08:12 error: Database connection is not open -2026-07-20 18:08:14 error: Database connection is not open -2026-07-20 18:08:16 error: Database connection is not open -2026-07-20 18:08:18 error: Database connection is not open -2026-07-20 18:08:20 error: Database connection is not open -2026-07-20 18:08:22 error: Database connection is not open -2026-07-20 18:08:24 error: Database connection is not open -2026-07-20 18:08:26 error: Database connection is not open -2026-07-20 18:08:28 error: Database connection is not open -2026-07-20 18:08:30 info: MongoDB connected -2026-07-20 18:10:38 info: MongoDB connected -2026-07-20 18:10:38 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 18:10:38 info: Creating worker started -2026-07-20 18:10:38 info: Creating worker started -2026-07-20 18:10:38 info: Creating worker started -2026-07-20 18:10:38 info: Worker created successfully -2026-07-20 18:10:38 info: Worker created successfully -2026-07-20 18:10:38 info: Worker created successfully -2026-07-20 18:10:38 info: Worker pool initialized -2026-07-20 18:11:41 info: SignUp started -2026-07-20 18:11:41 error: Validation error "password" length must be at least 8 characters long -2026-07-20 18:11:45 info: SignUp started -2026-07-20 18:11:46 info: SignUp completed -2026-07-20 18:11:46 info: [node-1] Client connected: 9V8fbx-2YvWIgYKHAAAB -2026-07-20 18:11:54 info: User disconnected 9V8fbx-2YvWIgYKHAAAB beacuse of transport close -2026-07-20 18:11:54 info: Handle disconnect started -2026-07-20 18:11:54 error: RoomId not found -2026-07-20 18:11:54 warn: IDK -2026-07-20 18:12:09 info: SignIn started -2026-07-20 18:12:09 info: SignIn completed -2026-07-20 18:12:09 info: [node-1] Client connected: GQoMb4gOFbWUgQn-AAAD -2026-07-20 18:12:13 info: Create room started -2026-07-20 18:12:13 info: Woker loads loaded successfully -2026-07-20 18:12:13 info: Woker assigned succesfully -2026-07-20 18:12:13 info: Creation of router started -2026-07-20 18:12:13 info: Router created -2026-07-20 18:12:13 info: Creation of room successfully executed -2026-07-20 18:12:13 info: Get room started -2026-07-20 18:12:13 info: Get room executed successfully -2026-07-20 18:12:13 info: Broadcaster added to the room -2026-07-20 18:12:13 info: Room created successfully -2026-07-20 18:13:55 info: SignUp started -2026-07-20 18:13:55 info: SignUp completed -2026-07-20 18:13:55 info: [node-1] Client connected: z_2NQy5eIYaj227bAAAF -2026-07-20 18:14:04 info: Join as viewer listner started -2026-07-20 18:14:04 info: Get room started -2026-07-20 18:14:04 info: Get room executed successfully -2026-07-20 18:14:04 info: Viewer joined the room -2026-07-20 18:14:04 info: Get room started -2026-07-20 18:14:04 info: Get room executed successfully -2026-07-20 18:14:04 info: Fetching of router started -2026-07-20 18:14:04 info: Fetching of router executed successfully -2026-07-20 18:14:04 info: Join viewer listner successfully executed -2026-07-20 18:14:11 info: Get room started -2026-07-20 18:14:11 info: Get room executed successfully -2026-07-20 18:14:19 info: Get room started -2026-07-20 18:14:19 info: Get room executed successfully -2026-07-20 18:14:26 info: Get room started -2026-07-20 18:14:26 info: Get room executed successfully -2026-07-20 18:14:33 info: User disconnected z_2NQy5eIYaj227bAAAF beacuse of transport close -2026-07-20 18:14:33 info: Handle disconnect started -2026-07-20 18:14:33 info: Get room started -2026-07-20 18:14:33 info: Get room executed successfully -2026-07-20 18:14:33 info: Get room started -2026-07-20 18:14:33 info: Get room executed successfully -2026-07-20 18:14:33 info: Remove viewer started -2026-07-20 18:14:33 info: Viewer removed from room -2026-07-20 18:14:33 info: Handle disconnect succesfully -2026-07-20 18:16:18 warn: MongoDB disconnected -2026-07-20 18:16:18 error: PoolClearedOnNetworkError: Connection to ac-v00shv2-shard-00-02.eplgdfn.mongodb.net:27017 interrupted due to server monitor timeout - at ConnectionPool.interruptInUseConnections (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:487:28) - at /home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:473:35 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 18:16:20 error: Database connection is not open -2026-07-20 18:16:22 error: Database connection is not open -2026-07-20 18:16:24 error: Database connection is not open -2026-07-20 18:16:26 error: Database connection is not open -2026-07-20 18:16:28 error: Database connection is not open -2026-07-20 18:16:29 info: MongoDB connected -2026-07-20 18:16:38 info: SignIn started -2026-07-20 18:16:38 error: Password validation failed -2026-07-20 18:16:42 info: SignIn started -2026-07-20 18:16:42 info: SignIn completed -2026-07-20 18:16:43 info: [node-1] Client connected: uiiu2aJk3Fk5fGWnAAAH -2026-07-20 18:16:49 info: Join as viewer listner started -2026-07-20 18:16:49 info: Get room started -2026-07-20 18:16:49 error: Room not found -2026-07-20 18:16:49 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:98:13) - at joinAsViewer (/home/harshit/CrowdStream/backend/src/handlers/viewer.handler.ts:13:25) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:23:25) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 18:16:49 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:110:11) - at joinAsViewer (/home/harshit/CrowdStream/backend/src/handlers/viewer.handler.ts:13:25) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:23:25) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 18:16:49 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:110:11) - at joinAsViewer (/home/harshit/CrowdStream/backend/src/handlers/viewer.handler.ts:13:25) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:23:25) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 18:17:04 error: Validation error "roomId" must be a valid GUID -2026-07-20 18:17:04 error: Error: Validation error - at validateMessage (/home/harshit/CrowdStream/backend/src/utils/chat.util.ts:35:15) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:42:40) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 18:17:15 info: Join as viewer listner started -2026-07-20 18:17:15 info: Get room started -2026-07-20 18:17:15 error: Room not found -2026-07-20 18:17:15 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:98:13) - at joinAsViewer (/home/harshit/CrowdStream/backend/src/handlers/viewer.handler.ts:13:25) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:23:25) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 18:17:15 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:110:11) - at joinAsViewer (/home/harshit/CrowdStream/backend/src/handlers/viewer.handler.ts:13:25) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:23:25) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 18:17:15 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:110:11) - at joinAsViewer (/home/harshit/CrowdStream/backend/src/handlers/viewer.handler.ts:13:25) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:23:25) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 18:17:24 error: Validation error "roomId" must be a valid GUID -2026-07-20 18:17:24 error: Error: Validation error - at validateMessage (/home/harshit/CrowdStream/backend/src/utils/chat.util.ts:35:15) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:42:40) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 22:37:08 info: Redis subscribers initialized -2026-07-20 22:37:10 info: MongoDB connected -2026-07-20 22:37:10 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 22:37:10 info: Creating worker started -2026-07-20 22:37:10 info: Creating worker started -2026-07-20 22:37:10 info: Creating worker started -2026-07-20 22:37:10 info: Worker created successfully -2026-07-20 22:37:10 info: Worker created successfully -2026-07-20 22:37:10 info: Worker created successfully -2026-07-20 22:37:10 info: Worker pool initialized -2026-07-20 22:37:47 info: SignIn started -2026-07-20 22:37:47 info: SignIn completed -2026-07-20 22:37:47 info: [node-1] Client connected: JbkW0GuwbTwsCYRIAAAB -2026-07-20 22:37:55 info: Create room started -2026-07-20 22:37:55 info: Woker loads loaded successfully -2026-07-20 22:37:55 info: Woker assigned succesfully -2026-07-20 22:37:55 info: Creation of router started -2026-07-20 22:37:55 info: Router created -2026-07-20 22:37:55 info: Creation of room successfully executed -2026-07-20 22:37:55 info: Get room started -2026-07-20 22:37:55 info: Get room executed successfully -2026-07-20 22:37:55 info: Broadcaster added to the room -2026-07-20 22:37:55 info: Room created successfully -2026-07-20 22:37:57 info: Get room started -2026-07-20 22:37:57 info: Get room executed successfully -2026-07-20 22:38:01 info: Get room started -2026-07-20 22:38:01 info: Get room executed successfully -2026-07-20 22:38:05 info: Get room started -2026-07-20 22:38:05 info: Get room executed successfully -2026-07-20 22:38:19 info: Get room started -2026-07-20 22:38:19 info: Get room executed successfully -2026-07-20 22:38:52 info: Get room started -2026-07-20 22:38:52 info: Get room executed successfully -2026-07-20 22:38:56 info: Get room started -2026-07-20 22:38:56 info: Get room executed successfully -2026-07-20 22:38:58 info: Get room started -2026-07-20 22:38:58 info: Get room executed successfully -2026-07-20 22:38:58 info: Get room started -2026-07-20 22:38:58 info: Get room executed successfully -2026-07-20 22:38:58 info: Get room started -2026-07-20 22:38:58 info: Get room executed successfully -2026-07-20 22:38:58 info: Get room started -2026-07-20 22:38:58 info: Get room executed successfully -2026-07-20 22:40:05 info: Redis subscribers initialized -2026-07-20 22:40:06 info: MongoDB connected -2026-07-20 22:40:06 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 22:40:06 info: Creating worker started -2026-07-20 22:40:06 info: Creating worker started -2026-07-20 22:40:06 info: Creating worker started -2026-07-20 22:40:06 info: Worker created successfully -2026-07-20 22:40:06 info: Worker created successfully -2026-07-20 22:40:06 info: Worker created successfully -2026-07-20 22:40:06 info: Worker pool initialized -2026-07-20 22:40:27 info: SignIn started -2026-07-20 22:40:28 info: SignIn completed -2026-07-20 22:40:28 info: [node-1] Client connected: 4XTy484Kh-z3WtfGAAAB -2026-07-20 22:40:34 info: Create room started -2026-07-20 22:40:34 info: Woker loads loaded successfully -2026-07-20 22:40:34 info: Woker assigned succesfully -2026-07-20 22:40:34 info: Creation of router started -2026-07-20 22:40:34 info: Router created -2026-07-20 22:40:34 info: Creation of room successfully executed -2026-07-20 22:40:34 info: Get room started -2026-07-20 22:40:34 info: Get room executed successfully -2026-07-20 22:40:34 info: Broadcaster added to the room -2026-07-20 22:40:34 info: Room created successfully -2026-07-20 22:40:35 info: Get room started -2026-07-20 22:40:35 info: Get room executed successfully -2026-07-20 22:40:58 info: Get room started -2026-07-20 22:40:58 info: Get room executed successfully -2026-07-20 22:43:49 info: Get room started -2026-07-20 22:43:49 info: Get room executed successfully -2026-07-20 22:44:18 info: Get room started -2026-07-20 22:44:18 info: Get room executed successfully -2026-07-20 22:44:19 info: Get room started -2026-07-20 22:44:19 info: Get room executed successfully -2026-07-20 22:44:19 info: Get room started -2026-07-20 22:44:19 info: Get room executed successfully -2026-07-20 22:44:19 info: Get room started -2026-07-20 22:44:19 info: Get room executed successfully -2026-07-20 22:44:20 info: Get room started -2026-07-20 22:44:20 info: Get room executed successfully -2026-07-20 22:44:20 info: Get room started -2026-07-20 22:44:20 info: Get room executed successfully -2026-07-20 22:46:01 info: Redis subscribers initialized -2026-07-20 22:46:04 info: MongoDB connected -2026-07-20 22:46:04 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 22:46:04 info: Creating worker started -2026-07-20 22:46:04 info: Creating worker started -2026-07-20 22:46:04 info: Creating worker started -2026-07-20 22:46:04 info: Worker created successfully -2026-07-20 22:46:04 info: Worker created successfully -2026-07-20 22:46:04 info: Worker created successfully -2026-07-20 22:46:04 info: Worker pool initialized -2026-07-20 22:46:25 info: Redis subscribers initialized -2026-07-20 22:46:27 info: MongoDB connected -2026-07-20 22:46:27 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 22:46:27 info: Creating worker started -2026-07-20 22:46:27 info: Creating worker started -2026-07-20 22:46:27 info: Creating worker started -2026-07-20 22:46:27 info: Worker created successfully -2026-07-20 22:46:27 info: Worker created successfully -2026-07-20 22:46:27 info: Worker created successfully -2026-07-20 22:46:27 info: Worker pool initialized -2026-07-20 22:46:31 info: [node-1] Client connected: lUsMRJ2a1CG3W7XsAAAB -2026-07-20 22:46:52 info: User disconnected lUsMRJ2a1CG3W7XsAAAB beacuse of transport close -2026-07-20 22:46:52 info: Handle disconnect started -2026-07-20 22:46:52 error: RoomId not found -2026-07-20 22:46:52 warn: IDK -2026-07-20 22:47:11 info: SignIn started -2026-07-20 22:47:11 info: SignIn completed -2026-07-20 22:47:11 info: [node-1] Client connected: hPrwnN2CQpG_77JFAAAD -2026-07-20 22:47:14 info: Create room started -2026-07-20 22:47:14 info: Woker loads loaded successfully -2026-07-20 22:47:14 info: Woker assigned succesfully -2026-07-20 22:47:14 info: Creation of router started -2026-07-20 22:47:14 info: Router created -2026-07-20 22:47:14 info: Creation of room successfully executed -2026-07-20 22:47:14 info: Get room started -2026-07-20 22:47:14 info: Get room executed successfully -2026-07-20 22:47:14 info: Broadcaster added to the room -2026-07-20 22:47:14 info: Room created successfully -2026-07-20 22:47:16 info: Get room started -2026-07-20 22:47:16 info: Get room executed successfully -2026-07-20 22:47:58 info: Get room started -2026-07-20 22:47:58 info: Get room executed successfully -2026-07-20 22:48:39 info: Redis subscribers initialized -2026-07-20 22:48:41 info: MongoDB connected -2026-07-20 22:48:41 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-20 22:48:41 info: Creating worker started -2026-07-20 22:48:41 info: Creating worker started -2026-07-20 22:48:41 info: Creating worker started -2026-07-20 22:48:41 info: Worker created successfully -2026-07-20 22:48:41 info: Worker created successfully -2026-07-20 22:48:41 info: Worker created successfully -2026-07-20 22:48:41 info: Worker pool initialized -2026-07-20 22:48:48 info: [node-1] Client connected: TwaLKusdVDx3_Z2BAAAB -2026-07-20 22:49:22 info: User disconnected TwaLKusdVDx3_Z2BAAAB beacuse of transport close -2026-07-20 22:49:22 info: Handle disconnect started -2026-07-20 22:49:22 error: RoomId not found -2026-07-20 22:49:22 warn: IDK -2026-07-20 22:49:30 info: SignIn started -2026-07-20 22:49:31 info: SignIn completed -2026-07-20 22:49:31 info: [node-1] Client connected: B9oBztidIGAewz_YAAAD -2026-07-20 22:49:34 info: Create room started -2026-07-20 22:49:34 info: Woker loads loaded successfully -2026-07-20 22:49:34 info: Woker assigned succesfully -2026-07-20 22:49:34 info: Creation of router started -2026-07-20 22:49:34 info: Router created -2026-07-20 22:49:34 info: Creation of room successfully executed -2026-07-20 22:49:34 info: Get room started -2026-07-20 22:49:34 info: Get room executed successfully -2026-07-20 22:49:34 info: Broadcaster added to the room -2026-07-20 22:49:34 info: Room created successfully -2026-07-20 22:49:37 info: Get room started -2026-07-20 22:49:37 info: Get room executed successfully -2026-07-20 22:49:42 info: Get room started -2026-07-20 22:49:42 info: Get room executed successfully -2026-07-20 22:49:47 info: Get room started -2026-07-20 22:49:47 info: Get room executed successfully -2026-07-20 22:49:48 info: Get room started -2026-07-20 22:49:48 info: Get room executed successfully -2026-07-20 22:49:48 info: Get room started -2026-07-20 22:49:48 info: Get room executed successfully -2026-07-20 22:49:48 info: Get room started -2026-07-20 22:49:48 info: Get room executed successfully -2026-07-20 22:49:49 info: Get room started -2026-07-20 22:49:49 info: Get room executed successfully -2026-07-20 22:49:49 info: Get room started -2026-07-20 22:49:49 info: Get room executed successfully -2026-07-20 22:49:49 info: Get room started -2026-07-20 22:49:49 info: Get room executed successfully -2026-07-20 22:49:49 info: Get room started -2026-07-20 22:49:49 info: Get room executed successfully -2026-07-20 22:49:49 info: Get room started -2026-07-20 22:49:49 info: Get room executed successfully -2026-07-20 22:50:52 info: Get room started -2026-07-20 22:50:52 info: Get room executed successfully -2026-07-20 22:50:55 info: Get room started -2026-07-20 22:50:55 info: Get room executed successfully -2026-07-20 22:50:57 info: Get room started -2026-07-20 22:50:57 info: Get room executed successfully -2026-07-20 22:50:58 info: Get room started -2026-07-20 22:50:58 info: Get room executed successfully -2026-07-20 22:51:03 info: Get room started -2026-07-20 22:51:03 info: Get room executed successfully -2026-07-20 22:52:24 info: User disconnected B9oBztidIGAewz_YAAAD beacuse of transport close -2026-07-20 22:52:24 info: Handle disconnect started -2026-07-20 22:52:24 info: Get room started -2026-07-20 22:52:24 info: Get room executed successfully -2026-07-20 22:52:24 info: Get room started -2026-07-20 22:52:24 info: Get room executed successfully -2026-07-20 22:52:24 info: Get room started -2026-07-20 22:52:24 info: Get room executed successfully -2026-07-20 22:52:24 info: Remove broadcaster success -2026-07-20 22:52:24 info: Handle disconnect succesfully -2026-07-20 22:52:24 info: room:37f38058-78ab-40df-b876-30adbf945273 room deleted successfully -2026-07-20 22:53:06 info: SignIn started -2026-07-20 22:53:06 info: SignIn completed -2026-07-20 22:53:06 info: [node-1] Client connected: sQT2iabt4UTvpJzvAAAF -2026-07-20 22:53:12 info: Create room started -2026-07-20 22:53:12 info: Woker loads loaded successfully -2026-07-20 22:53:12 info: Woker assigned succesfully -2026-07-20 22:53:12 info: Creation of router started -2026-07-20 22:53:12 info: Router created -2026-07-20 22:53:12 info: Creation of room successfully executed -2026-07-20 22:53:12 info: Get room started -2026-07-20 22:53:12 info: Get room executed successfully -2026-07-20 22:53:12 info: Broadcaster added to the room -2026-07-20 22:53:12 info: Room created successfully -2026-07-20 22:53:13 info: Get room started -2026-07-20 22:53:13 info: Get room executed successfully -2026-07-20 22:53:17 info: Get room started -2026-07-20 22:53:17 info: Get room executed successfully -2026-07-20 22:54:30 info: Get room started -2026-07-20 22:54:30 info: Get room executed successfully -2026-07-20 22:54:32 info: Get room started -2026-07-20 22:54:32 info: Get room executed successfully -2026-07-20 22:54:35 info: Get room started -2026-07-20 22:54:35 info: Get room executed successfully -2026-07-20 22:55:10 info: Get room started -2026-07-20 22:55:10 info: Get room executed successfully -2026-07-20 22:55:13 info: Get room started -2026-07-20 22:55:13 info: Get room executed successfully -2026-07-20 22:55:50 info: Get room started -2026-07-20 22:55:50 info: Get room executed successfully -2026-07-20 22:55:54 info: Get room started -2026-07-20 22:55:54 info: Get room executed successfully -2026-07-20 22:56:53 info: Get room started -2026-07-20 22:56:53 info: Get room executed successfully -2026-07-20 22:56:56 info: Get room started -2026-07-20 22:56:56 info: Get room executed successfully -2026-07-20 22:57:16 info: Get room started -2026-07-20 22:57:16 info: Get room executed successfully -2026-07-20 22:57:45 info: Get room started -2026-07-20 22:57:45 info: Get room executed successfully -2026-07-20 22:57:47 info: Get room started -2026-07-20 22:57:47 info: Get room executed successfully -2026-07-20 22:57:47 info: Get room started -2026-07-20 22:57:47 info: Get room executed successfully -2026-07-20 22:57:47 info: Get room started -2026-07-20 22:57:47 info: Get room executed successfully -2026-07-20 22:57:47 info: Get room started -2026-07-20 22:57:47 info: Get room executed successfully -2026-07-20 22:57:47 info: Get room started -2026-07-20 22:57:47 info: Get room executed successfully -2026-07-20 22:57:53 info: Get room started -2026-07-20 22:57:53 info: Get room executed successfully -2026-07-20 22:57:56 info: Get room started -2026-07-20 22:57:56 info: Get room executed successfully -2026-07-20 22:57:56 info: Get room started -2026-07-20 22:57:56 info: Get room executed successfully -2026-07-20 22:57:57 info: Get room started -2026-07-20 22:57:57 info: Get room executed successfully -2026-07-20 22:57:57 info: Get room started -2026-07-20 22:57:57 info: Get room executed successfully -2026-07-20 22:57:57 info: Get room started -2026-07-20 22:57:57 info: Get room executed successfully -2026-07-20 22:58:53 info: Get room started -2026-07-20 22:58:53 info: Get room executed successfully -2026-07-20 22:59:04 info: Get room started -2026-07-20 22:59:04 info: Get room executed successfully -2026-07-20 22:59:05 info: Get room started -2026-07-20 22:59:05 info: Get room executed successfully -2026-07-20 22:59:05 info: Get room started -2026-07-20 22:59:05 info: Get room executed successfully -2026-07-20 22:59:05 info: Get room started -2026-07-20 22:59:05 info: Get room executed successfully -2026-07-20 22:59:05 info: Get room started -2026-07-20 22:59:05 info: Get room executed successfully -2026-07-20 22:59:05 info: Get room started -2026-07-20 22:59:05 info: Get room executed successfully -2026-07-20 22:59:06 info: Get room started -2026-07-20 22:59:06 info: Get room executed successfully -2026-07-20 22:59:06 info: Get room started -2026-07-20 22:59:06 info: Get room executed successfully -2026-07-20 22:59:06 info: Get room started -2026-07-20 22:59:06 info: Get room executed successfully -2026-07-20 22:59:06 info: Get room started -2026-07-20 22:59:06 info: Get room executed successfully -2026-07-20 22:59:06 info: Get room started -2026-07-20 22:59:06 info: Get room executed successfully -2026-07-20 22:59:06 info: Get room started -2026-07-20 22:59:06 info: Get room executed successfully -2026-07-20 22:59:07 info: Get room started -2026-07-20 22:59:07 info: Get room executed successfully -2026-07-20 22:59:07 info: Get room started -2026-07-20 22:59:07 info: Get room executed successfully -2026-07-20 22:59:07 info: Get room started -2026-07-20 22:59:07 info: Get room executed successfully -2026-07-20 22:59:17 info: Get room started -2026-07-20 22:59:17 info: Get room executed successfully -2026-07-20 22:59:20 info: Get room started -2026-07-20 22:59:20 info: Get room executed successfully -2026-07-20 22:59:23 info: Get room started -2026-07-20 22:59:23 info: Get room executed successfully -2026-07-20 23:00:15 info: Get room started -2026-07-20 23:00:15 info: Get room executed successfully -2026-07-20 23:00:22 info: Get room started -2026-07-20 23:00:22 info: Get room executed successfully -2026-07-20 23:01:00 info: Get room started -2026-07-20 23:01:00 info: Get room executed successfully -2026-07-20 23:01:05 info: Get room started -2026-07-20 23:01:05 info: Get room executed successfully -2026-07-20 23:04:46 info: Get room started -2026-07-20 23:04:46 info: Get room executed successfully -2026-07-20 23:04:50 info: Get room started -2026-07-20 23:04:50 info: Get room executed successfully -2026-07-20 23:05:05 info: Get room started -2026-07-20 23:05:05 info: Get room executed successfully -2026-07-20 23:05:40 info: Get room started -2026-07-20 23:05:40 info: Get room executed successfully -2026-07-20 23:05:42 info: Get room started -2026-07-20 23:05:42 info: Get room executed successfully -2026-07-20 23:06:44 info: Get room started -2026-07-20 23:06:44 info: Get room executed successfully -2026-07-20 23:06:47 info: Get room started -2026-07-20 23:06:47 info: Get room executed successfully -2026-07-20 23:06:51 info: Get room started -2026-07-20 23:06:51 info: Get room executed successfully -2026-07-20 23:07:21 info: Get room started -2026-07-20 23:07:21 info: Get room executed successfully -2026-07-20 23:07:22 info: Get room started -2026-07-20 23:07:22 info: Get room executed successfully -2026-07-20 23:07:23 info: Get room started -2026-07-20 23:07:23 info: Get room executed successfully -2026-07-20 23:07:23 info: Get room started -2026-07-20 23:07:23 info: Get room executed successfully -2026-07-20 23:07:24 info: Get room started -2026-07-20 23:07:24 info: Get room executed successfully -2026-07-20 23:07:24 info: Get room started -2026-07-20 23:07:24 info: Get room executed successfully -2026-07-20 23:07:24 info: Get room started -2026-07-20 23:07:24 info: Get room executed successfully -2026-07-20 23:07:24 info: Get room started -2026-07-20 23:07:24 info: Get room executed successfully -2026-07-20 23:07:24 info: Get room started -2026-07-20 23:07:24 info: Get room executed successfully -2026-07-20 23:07:24 info: Get room started -2026-07-20 23:07:24 info: Get room executed successfully -2026-07-20 23:07:25 info: Get room started -2026-07-20 23:07:25 info: Get room executed successfully -2026-07-20 23:07:25 info: Get room started -2026-07-20 23:07:25 info: Get room executed successfully -2026-07-20 23:07:25 info: Get room started -2026-07-20 23:07:25 info: Get room executed successfully -2026-07-20 23:07:25 info: Get room started -2026-07-20 23:07:25 info: Get room executed successfully -2026-07-20 23:07:25 info: Get room started -2026-07-20 23:07:25 info: Get room executed successfully -2026-07-20 23:07:26 info: Get room started -2026-07-20 23:07:26 info: Get room executed successfully -2026-07-20 23:07:26 info: Get room started -2026-07-20 23:07:26 info: Get room executed successfully -2026-07-20 23:07:29 info: Get room started -2026-07-20 23:07:29 info: Get room executed successfully -2026-07-20 23:07:29 info: Get room started -2026-07-20 23:07:29 info: Get room executed successfully -2026-07-20 23:07:29 info: Get room started -2026-07-20 23:07:29 info: Get room executed successfully -2026-07-20 23:07:30 info: Get room started -2026-07-20 23:07:30 info: Get room executed successfully -2026-07-20 23:07:30 info: Get room started -2026-07-20 23:07:30 info: Get room executed successfully -2026-07-20 23:07:31 info: Get room started -2026-07-20 23:07:31 info: Get room executed successfully -2026-07-20 23:07:33 info: Get room started -2026-07-20 23:07:33 info: Get room executed successfully -2026-07-20 23:07:36 info: Get room started -2026-07-20 23:07:36 info: Get room executed successfully -2026-07-20 23:07:37 info: Get room started -2026-07-20 23:07:37 info: Get room executed successfully -2026-07-20 23:07:37 info: Get room started -2026-07-20 23:07:37 info: Get room executed successfully -2026-07-20 23:07:37 info: Get room started -2026-07-20 23:07:37 info: Get room executed successfully -2026-07-20 23:07:38 info: Get room started -2026-07-20 23:07:38 info: Get room executed successfully -2026-07-20 23:07:38 info: Get room started -2026-07-20 23:07:38 info: Get room executed successfully -2026-07-20 23:07:38 info: Get room started -2026-07-20 23:07:38 info: Get room executed successfully -2026-07-20 23:07:39 info: Get room started -2026-07-20 23:07:39 info: Get room executed successfully -2026-07-20 23:07:39 info: Get room started -2026-07-20 23:07:39 info: Get room executed successfully -2026-07-20 23:07:40 info: Get room started -2026-07-20 23:07:40 info: Get room executed successfully -2026-07-20 23:10:16 info: Get room started -2026-07-20 23:10:16 info: Get room executed successfully -2026-07-20 23:16:36 info: Get room started -2026-07-20 23:16:36 info: Get room executed successfully -2026-07-20 23:16:43 info: Get room started -2026-07-20 23:16:43 info: Get room executed successfully -2026-07-20 23:16:43 info: Get room started -2026-07-20 23:16:43 info: Get room executed successfully -2026-07-20 23:16:43 info: Get room started -2026-07-20 23:16:43 info: Get room executed successfully -2026-07-20 23:20:51 info: Get room started -2026-07-20 23:20:51 info: Get room executed successfully -2026-07-20 23:20:54 info: Get room started -2026-07-20 23:20:54 info: Get room executed successfully -2026-07-20 23:20:54 info: Get room started -2026-07-20 23:20:54 info: Get room executed successfully -2026-07-20 23:20:59 info: Get room started -2026-07-20 23:20:59 info: Get room executed successfully -2026-07-20 23:20:59 info: Get room started -2026-07-20 23:20:59 info: Get room executed successfully -2026-07-20 23:20:59 info: Get room started -2026-07-20 23:20:59 info: Get room executed successfully -2026-07-20 23:20:59 info: Get room started -2026-07-20 23:20:59 info: Get room executed successfully -2026-07-20 23:20:59 info: Get room started -2026-07-20 23:20:59 info: Get room executed successfully -2026-07-20 23:20:59 info: Get room started -2026-07-20 23:20:59 info: Get room executed successfully -2026-07-20 23:21:00 info: Get room started -2026-07-20 23:21:00 info: Get room executed successfully -2026-07-20 23:21:17 info: Get room started -2026-07-20 23:21:17 info: Get room executed successfully -2026-07-20 23:21:17 info: Get room started -2026-07-20 23:21:17 info: Get room executed successfully -2026-07-20 23:21:18 info: Get room started -2026-07-20 23:21:18 info: Get room executed successfully -2026-07-20 23:21:18 info: Get room started -2026-07-20 23:21:18 info: Get room executed successfully -2026-07-20 23:21:18 info: Get room started -2026-07-20 23:21:18 info: Get room executed successfully -2026-07-20 23:21:18 info: Get room started -2026-07-20 23:21:18 info: Get room executed successfully -2026-07-20 23:21:18 info: Get room started -2026-07-20 23:21:18 info: Get room executed successfully -2026-07-20 23:21:40 info: Get room started -2026-07-20 23:21:40 info: Get room executed successfully -2026-07-20 23:21:40 info: Get room started -2026-07-20 23:21:40 info: Get room executed successfully -2026-07-20 23:21:40 info: Get room started -2026-07-20 23:21:40 info: Get room executed successfully -2026-07-20 23:21:40 info: Get room started -2026-07-20 23:21:40 info: Get room executed successfully -2026-07-20 23:21:40 info: Get room started -2026-07-20 23:21:40 info: Get room executed successfully -2026-07-20 23:21:41 info: Get room started -2026-07-20 23:21:41 info: Get room executed successfully -2026-07-20 23:21:41 info: Get room started -2026-07-20 23:21:41 info: Get room executed successfully -2026-07-20 23:21:41 info: Get room started -2026-07-20 23:21:41 info: Get room executed successfully -2026-07-20 23:21:41 info: Get room started -2026-07-20 23:21:41 info: Get room executed successfully -2026-07-20 23:21:41 info: Get room started -2026-07-20 23:21:41 info: Get room executed successfully -2026-07-20 23:21:42 info: Get room started -2026-07-20 23:21:42 info: Get room executed successfully -2026-07-20 23:21:42 info: Get room started -2026-07-20 23:21:42 info: Get room executed successfully -2026-07-20 23:21:46 info: Get room started -2026-07-20 23:21:46 info: Get room executed successfully -2026-07-20 23:21:46 info: Get room started -2026-07-20 23:21:46 info: Get room executed successfully -2026-07-20 23:21:46 info: Get room started -2026-07-20 23:21:46 info: Get room executed successfully -2026-07-20 23:21:46 info: Get room started -2026-07-20 23:21:46 info: Get room executed successfully -2026-07-20 23:22:16 info: Get room started -2026-07-20 23:22:16 info: Get room executed successfully -2026-07-20 23:22:17 info: Get room started -2026-07-20 23:22:17 info: Get room executed successfully -2026-07-20 23:22:17 info: Get room started -2026-07-20 23:22:17 info: Get room executed successfully -2026-07-20 23:22:17 info: Get room started -2026-07-20 23:22:17 info: Get room executed successfully -2026-07-20 23:22:19 info: Get room started -2026-07-20 23:22:19 info: Get room executed successfully -2026-07-20 23:22:19 info: Get room started -2026-07-20 23:22:19 info: Get room executed successfully -2026-07-20 23:23:38 info: User disconnected sQT2iabt4UTvpJzvAAAF beacuse of transport close -2026-07-20 23:23:38 info: Handle disconnect started -2026-07-20 23:23:38 info: Get room started -2026-07-20 23:23:38 info: Get room executed successfully -2026-07-20 23:23:38 info: Get room started -2026-07-20 23:23:38 info: Get room executed successfully -2026-07-20 23:23:38 info: Get room started -2026-07-20 23:23:38 info: Get room executed successfully -2026-07-20 23:23:38 info: Remove broadcaster success -2026-07-20 23:23:38 info: Handle disconnect succesfully -2026-07-20 23:23:38 info: room:1ea20bfa-1ac8-4fe1-9413-171b4734b0f5 room deleted successfully -2026-07-20 23:23:38 info: [node-1] Client connected: EEhs6S3URDXv-ayyAAAH -2026-07-20 23:23:42 info: Create room started -2026-07-20 23:23:42 info: Woker loads loaded successfully -2026-07-20 23:23:42 info: Woker assigned succesfully -2026-07-20 23:23:42 info: Creation of router started -2026-07-20 23:23:42 info: Router created -2026-07-20 23:23:42 info: Creation of room successfully executed -2026-07-20 23:23:42 info: Get room started -2026-07-20 23:23:42 info: Get room executed successfully -2026-07-20 23:23:42 info: Broadcaster added to the room -2026-07-20 23:23:42 info: Room created successfully -2026-07-20 23:23:43 info: Get room started -2026-07-20 23:23:43 info: Get room executed successfully -2026-07-20 23:23:45 info: Get room started -2026-07-20 23:23:45 info: Get room executed successfully -2026-07-20 23:23:45 info: Get room started -2026-07-20 23:23:45 info: Get room executed successfully -2026-07-20 23:23:46 info: Get room started -2026-07-20 23:23:46 info: Get room executed successfully -2026-07-20 23:23:46 info: Get room started -2026-07-20 23:23:46 info: Get room executed successfully -2026-07-20 23:23:46 info: Get room started -2026-07-20 23:23:46 info: Get room executed successfully -2026-07-20 23:23:48 info: Get room started -2026-07-20 23:23:48 info: Get room executed successfully -2026-07-20 23:24:39 info: Get room started -2026-07-20 23:24:39 info: Get room executed successfully -2026-07-20 23:24:58 info: Get room started -2026-07-20 23:24:58 info: Get room executed successfully -2026-07-20 23:24:59 info: Get room started -2026-07-20 23:24:59 info: Get room executed successfully -2026-07-20 23:25:03 info: Get room started -2026-07-20 23:25:03 info: Get room executed successfully -2026-07-20 23:25:03 info: Get room started -2026-07-20 23:25:03 info: Get room executed successfully -2026-07-20 23:25:03 info: Get room started -2026-07-20 23:25:03 info: Get room executed successfully -2026-07-20 23:25:03 info: Get room started -2026-07-20 23:25:03 info: Get room executed successfully -2026-07-20 23:25:04 info: Get room started -2026-07-20 23:25:04 info: Get room executed successfully -2026-07-20 23:25:04 info: Get room started -2026-07-20 23:25:04 info: Get room executed successfully -2026-07-20 23:25:04 info: Get room started -2026-07-20 23:25:04 info: Get room executed successfully -2026-07-20 23:25:04 info: Get room started -2026-07-20 23:25:04 info: Get room executed successfully -2026-07-20 23:25:05 info: Get room started -2026-07-20 23:25:05 info: Get room executed successfully -2026-07-20 23:25:05 info: Get room started -2026-07-20 23:25:05 info: Get room executed successfully -2026-07-20 23:25:05 info: Get room started -2026-07-20 23:25:05 info: Get room executed successfully -2026-07-20 23:25:06 info: Get room started -2026-07-20 23:25:06 info: Get room executed successfully -2026-07-20 23:25:06 info: Get room started -2026-07-20 23:25:06 info: Get room executed successfully -2026-07-20 23:25:06 info: Get room started -2026-07-20 23:25:06 info: Get room executed successfully -2026-07-20 23:25:12 info: Get room started -2026-07-20 23:25:12 info: Get room executed successfully -2026-07-20 23:25:14 info: Get room started -2026-07-20 23:25:14 info: Get room executed successfully -2026-07-20 23:25:17 info: Get room started -2026-07-20 23:25:17 info: Get room executed successfully -2026-07-20 23:25:50 info: Get room started -2026-07-20 23:25:50 info: Get room executed successfully -2026-07-20 23:27:11 info: Get room started -2026-07-20 23:27:11 info: Get room executed successfully -2026-07-20 23:27:15 info: Get room started -2026-07-20 23:27:15 info: Get room executed successfully -2026-07-20 23:27:15 info: Get room started -2026-07-20 23:27:15 info: Get room executed successfully -2026-07-20 23:27:15 info: Get room started -2026-07-20 23:27:15 info: Get room executed successfully -2026-07-20 23:27:15 info: Get room started -2026-07-20 23:27:15 info: Get room executed successfully -2026-07-20 23:27:15 info: Get room started -2026-07-20 23:27:15 info: Get room executed successfully -2026-07-20 23:27:16 info: Get room started -2026-07-20 23:27:16 info: Get room executed successfully -2026-07-20 23:27:16 info: Get room started -2026-07-20 23:27:16 info: Get room executed successfully -2026-07-20 23:27:16 info: Get room started -2026-07-20 23:27:16 info: Get room executed successfully -2026-07-20 23:27:16 info: Get room started -2026-07-20 23:27:16 info: Get room executed successfully -2026-07-20 23:27:16 info: Get room started -2026-07-20 23:27:16 info: Get room executed successfully -2026-07-20 23:27:16 info: Get room started -2026-07-20 23:27:16 info: Get room executed successfully -2026-07-20 23:27:17 info: Get room started -2026-07-20 23:27:17 info: Get room executed successfully -2026-07-20 23:27:17 info: Get room started -2026-07-20 23:27:17 info: Get room executed successfully -2026-07-20 23:27:17 info: Get room started -2026-07-20 23:27:17 info: Get room executed successfully -2026-07-20 23:27:17 info: Get room started -2026-07-20 23:27:17 info: Get room executed successfully -2026-07-20 23:27:17 info: Get room started -2026-07-20 23:27:17 info: Get room executed successfully -2026-07-20 23:27:17 info: Get room started -2026-07-20 23:27:17 info: Get room executed successfully -2026-07-20 23:27:18 info: Get room started -2026-07-20 23:27:18 info: Get room executed successfully -2026-07-20 23:27:18 info: Get room started -2026-07-20 23:27:18 info: Get room executed successfully -2026-07-20 23:27:18 info: Get room started -2026-07-20 23:27:18 info: Get room executed successfully -2026-07-20 23:27:18 info: Get room started -2026-07-20 23:27:18 info: Get room executed successfully -2026-07-20 23:27:18 info: Get room started -2026-07-20 23:27:18 info: Get room executed successfully -2026-07-20 23:27:18 info: Get room started -2026-07-20 23:27:18 info: Get room executed successfully -2026-07-20 23:27:18 info: Get room started -2026-07-20 23:27:18 info: Get room executed successfully -2026-07-20 23:27:19 info: Get room started -2026-07-20 23:27:19 info: Get room executed successfully -2026-07-20 23:27:19 info: Get room started -2026-07-20 23:27:19 info: Get room executed successfully -2026-07-20 23:27:19 info: Get room started -2026-07-20 23:27:19 info: Get room executed successfully -2026-07-20 23:27:19 info: Get room started -2026-07-20 23:27:19 info: Get room executed successfully -2026-07-20 23:27:19 info: Get room started -2026-07-20 23:27:19 info: Get room executed successfully -2026-07-20 23:28:52 info: Get room started -2026-07-20 23:28:52 info: Get room executed successfully -2026-07-20 23:28:52 info: Get room started -2026-07-20 23:28:52 info: Get room executed successfully -2026-07-20 23:28:52 info: Get room started -2026-07-20 23:28:52 info: Get room executed successfully -2026-07-20 23:28:53 info: Get room started -2026-07-20 23:28:53 info: Get room executed successfully -2026-07-20 23:28:53 info: Get room started -2026-07-20 23:28:53 info: Get room executed successfully -2026-07-20 23:28:53 info: Get room started -2026-07-20 23:28:53 info: Get room executed successfully -2026-07-20 23:28:55 info: Get room started -2026-07-20 23:28:55 info: Get room executed successfully -2026-07-20 23:28:59 info: Get room started -2026-07-20 23:28:59 info: Get room executed successfully -2026-07-20 23:29:34 info: Get room started -2026-07-20 23:29:34 info: Get room executed successfully -2026-07-20 23:29:38 info: Get room started -2026-07-20 23:29:38 info: Get room executed successfully -2026-07-20 23:29:38 info: Get room started -2026-07-20 23:29:38 info: Get room executed successfully -2026-07-20 23:29:38 info: Get room started -2026-07-20 23:29:38 info: Get room executed successfully -2026-07-20 23:29:39 info: Get room started -2026-07-20 23:29:39 info: Get room executed successfully -2026-07-20 23:29:39 info: Get room started -2026-07-20 23:29:39 info: Get room executed successfully -2026-07-20 23:29:39 info: Get room started -2026-07-20 23:29:39 info: Get room executed successfully -2026-07-20 23:29:47 info: Get room started -2026-07-20 23:29:47 info: Get room executed successfully -2026-07-20 23:29:47 info: Get room started -2026-07-20 23:29:47 info: Get room executed successfully -2026-07-20 23:29:47 info: Get room started -2026-07-20 23:29:47 info: Get room executed successfully -2026-07-20 23:29:50 info: Get room started -2026-07-20 23:29:50 info: Get room executed successfully -2026-07-20 23:29:51 info: Get room started -2026-07-20 23:29:51 info: Get room executed successfully -2026-07-20 23:29:51 info: Get room started -2026-07-20 23:29:51 info: Get room executed successfully -2026-07-20 23:29:51 info: Get room started -2026-07-20 23:29:51 info: Get room executed successfully -2026-07-20 23:29:51 info: Get room started -2026-07-20 23:29:51 info: Get room executed successfully -2026-07-20 23:29:52 info: Get room started -2026-07-20 23:29:52 info: Get room executed successfully -2026-07-20 23:29:52 info: Get room started -2026-07-20 23:29:52 info: Get room executed successfully -2026-07-20 23:29:59 info: Get room started -2026-07-20 23:29:59 info: Get room executed successfully -2026-07-20 23:30:05 info: Get room started -2026-07-20 23:30:05 info: Get room executed successfully -2026-07-20 23:30:36 info: Get room started -2026-07-20 23:30:36 info: Get room executed successfully -2026-07-20 23:30:36 info: Get room started -2026-07-20 23:30:36 info: Get room executed successfully -2026-07-20 23:30:36 info: Get room started -2026-07-20 23:30:36 info: Get room executed successfully -2026-07-20 23:30:36 info: Get room started -2026-07-20 23:30:36 info: Get room executed successfully -2026-07-20 23:30:50 info: Get room started -2026-07-20 23:30:50 info: Get room executed successfully -2026-07-20 23:30:50 info: Get room started -2026-07-20 23:30:50 info: Get room executed successfully -2026-07-20 23:30:50 info: Get room started -2026-07-20 23:30:50 info: Get room executed successfully -2026-07-20 23:36:14 info: Get room started -2026-07-20 23:36:14 info: Get room executed successfully -2026-07-20 23:36:14 info: Get room started -2026-07-20 23:36:14 info: Get room executed successfully -2026-07-20 23:36:14 info: Get room started -2026-07-20 23:36:14 info: Get room executed successfully -2026-07-20 23:36:14 info: Get room started -2026-07-20 23:36:14 info: Get room executed successfully -2026-07-20 23:36:25 info: Get room started -2026-07-20 23:36:25 info: Get room executed successfully -2026-07-20 23:36:26 info: Get room started -2026-07-20 23:36:26 info: Get room executed successfully -2026-07-20 23:36:26 info: Get room started -2026-07-20 23:36:26 info: Get room executed successfully -2026-07-20 23:36:26 info: Get room started -2026-07-20 23:36:26 info: Get room executed successfully -2026-07-20 23:36:28 info: Get room started -2026-07-20 23:36:28 info: Get room executed successfully -2026-07-20 23:36:28 info: Get room started -2026-07-20 23:36:28 info: Get room executed successfully -2026-07-20 23:36:28 info: Get room started -2026-07-20 23:36:28 info: Get room executed successfully -2026-07-20 23:36:28 info: Get room started -2026-07-20 23:36:28 info: Get room executed successfully -2026-07-20 23:36:28 info: Get room started -2026-07-20 23:36:28 info: Get room executed successfully -2026-07-20 23:36:28 info: Get room started -2026-07-20 23:36:28 info: Get room executed successfully -2026-07-20 23:36:29 info: Get room started -2026-07-20 23:36:29 info: Get room executed successfully -2026-07-20 23:36:29 info: Get room started -2026-07-20 23:36:29 info: Get room executed successfully -2026-07-20 23:36:29 info: Get room started -2026-07-20 23:36:29 info: Get room executed successfully -2026-07-20 23:36:29 info: Get room started -2026-07-20 23:36:29 info: Get room executed successfully -2026-07-20 23:36:29 info: Get room started -2026-07-20 23:36:29 info: Get room executed successfully -2026-07-20 23:36:29 info: Get room started -2026-07-20 23:36:29 info: Get room executed successfully -2026-07-20 23:36:30 info: Get room started -2026-07-20 23:36:30 info: Get room executed successfully -2026-07-20 23:36:31 info: Get room started -2026-07-20 23:36:31 info: Get room executed successfully -2026-07-20 23:39:00 info: Get room started -2026-07-20 23:39:00 info: Get room executed successfully -2026-07-20 23:39:00 info: Get room started -2026-07-20 23:39:00 info: Get room executed successfully -2026-07-20 23:39:00 info: Get room started -2026-07-20 23:39:00 info: Get room executed successfully -2026-07-20 23:39:00 info: Get room started -2026-07-20 23:39:00 info: Get room executed successfully -2026-07-20 23:39:00 info: Get room started -2026-07-20 23:39:00 info: Get room executed successfully -2026-07-20 23:39:00 info: Get room started -2026-07-20 23:39:00 info: Get room executed successfully -2026-07-20 23:39:09 info: Get room started -2026-07-20 23:39:09 info: Get room executed successfully -2026-07-20 23:39:10 info: Get room started -2026-07-20 23:39:10 info: Get room executed successfully -2026-07-20 23:39:10 info: Get room started -2026-07-20 23:39:10 info: Get room executed successfully -2026-07-20 23:39:10 info: Get room started -2026-07-20 23:39:10 info: Get room executed successfully -2026-07-20 23:39:11 info: Get room started -2026-07-20 23:39:11 info: Get room executed successfully -2026-07-20 23:39:11 info: Get room started -2026-07-20 23:39:11 info: Get room executed successfully -2026-07-20 23:39:11 info: Get room started -2026-07-20 23:39:11 info: Get room executed successfully -2026-07-20 23:39:11 info: Get room started -2026-07-20 23:39:11 info: Get room executed successfully -2026-07-20 23:39:11 info: Get room started -2026-07-20 23:39:11 info: Get room executed successfully -2026-07-20 23:39:11 info: Get room started -2026-07-20 23:39:11 info: Get room executed successfully -2026-07-20 23:39:12 info: Get room started -2026-07-20 23:39:12 info: Get room executed successfully -2026-07-20 23:39:12 info: Get room started -2026-07-20 23:39:12 info: Get room executed successfully -2026-07-20 23:39:12 info: Get room started -2026-07-20 23:39:12 info: Get room executed successfully -2026-07-20 23:39:12 info: Get room started -2026-07-20 23:39:12 info: Get room executed successfully -2026-07-20 23:39:12 info: Get room started -2026-07-20 23:39:12 info: Get room executed successfully -2026-07-20 23:39:12 info: Get room started -2026-07-20 23:39:12 info: Get room executed successfully -2026-07-20 23:39:39 info: SignUp started -2026-07-20 23:39:39 error: User already exists -2026-07-20 23:39:44 info: SignUp started -2026-07-20 23:39:44 info: SignUp completed -2026-07-20 23:39:44 info: [node-1] Client connected: vUXX25SEH2bx7RnbAAAJ -2026-07-20 23:39:53 info: Join as viewer listner started -2026-07-20 23:39:53 info: Get room started -2026-07-20 23:39:53 info: Get room executed successfully -2026-07-20 23:39:53 info: Viewer joined the room -2026-07-20 23:39:53 info: Get room started -2026-07-20 23:39:53 info: Get room executed successfully -2026-07-20 23:39:53 info: Fetching of router started -2026-07-20 23:39:53 info: Fetching of router executed successfully -2026-07-20 23:39:53 info: Join viewer listner successfully executed -2026-07-20 23:39:56 info: Get room started -2026-07-20 23:39:56 info: Get room executed successfully -2026-07-20 23:39:59 info: Get room started -2026-07-20 23:39:59 info: Get room executed successfully -2026-07-20 23:40:00 info: Get room started -2026-07-20 23:40:00 info: Get room executed successfully -2026-07-20 23:40:00 info: Get room started -2026-07-20 23:40:00 info: Get room executed successfully -2026-07-20 23:40:00 info: Get room started -2026-07-20 23:40:00 info: Get room executed successfully -2026-07-20 23:40:00 info: Get room started -2026-07-20 23:40:00 info: Get room executed successfully -2026-07-20 23:40:00 info: Get room started -2026-07-20 23:40:00 info: Get room executed successfully -2026-07-20 23:40:00 info: Get room started -2026-07-20 23:40:00 info: Get room executed successfully -2026-07-20 23:40:00 info: Get room started -2026-07-20 23:40:00 info: Get room executed successfully -2026-07-20 23:40:03 info: Get room started -2026-07-20 23:40:03 info: Get room executed successfully -2026-07-20 23:40:04 info: Get room started -2026-07-20 23:40:04 info: Get room executed successfully -2026-07-20 23:40:04 info: Get room started -2026-07-20 23:40:04 info: Get room executed successfully -2026-07-20 23:40:04 info: Get room started -2026-07-20 23:40:04 info: Get room executed successfully -2026-07-20 23:40:04 info: Get room started -2026-07-20 23:40:04 info: Get room executed successfully -2026-07-20 23:40:04 info: Get room started -2026-07-20 23:40:04 info: Get room executed successfully -2026-07-20 23:40:04 info: Get room started -2026-07-20 23:40:04 info: Get room executed successfully -2026-07-20 23:40:56 info: User disconnected vUXX25SEH2bx7RnbAAAJ beacuse of transport close -2026-07-20 23:40:56 info: Handle disconnect started -2026-07-20 23:40:56 info: Get room started -2026-07-20 23:40:56 info: Get room executed successfully -2026-07-20 23:40:56 info: Get room started -2026-07-20 23:40:56 info: Get room executed successfully -2026-07-20 23:40:56 info: Remove viewer started -2026-07-20 23:40:56 info: Viewer removed from room -2026-07-20 23:40:56 info: Handle disconnect succesfully -2026-07-20 23:40:58 info: User disconnected EEhs6S3URDXv-ayyAAAH beacuse of transport close -2026-07-20 23:40:58 info: Handle disconnect started -2026-07-20 23:40:58 info: Get room started -2026-07-20 23:40:58 info: Get room executed successfully -2026-07-20 23:40:58 info: Get room started -2026-07-20 23:40:58 info: Get room executed successfully -2026-07-20 23:40:58 info: Get room started -2026-07-20 23:40:58 info: Get room executed successfully -2026-07-20 23:40:58 info: Remove broadcaster success -2026-07-20 23:40:58 info: Handle disconnect succesfully -2026-07-20 23:40:58 info: room:bf9c2f3a-6821-4aaf-8f5a-4b7cabc38a76 room deleted successfully -2026-07-20 23:40:58 info: [node-1] Client connected: aDHnGeWKt7MIH5fxAAAL -2026-07-20 23:41:02 info: Create room started -2026-07-20 23:41:02 info: Woker loads loaded successfully -2026-07-20 23:41:02 info: Woker assigned succesfully -2026-07-20 23:41:02 info: Creation of router started -2026-07-20 23:41:02 info: Router created -2026-07-20 23:41:02 info: Creation of room successfully executed -2026-07-20 23:41:02 info: Get room started -2026-07-20 23:41:02 info: Get room executed successfully -2026-07-20 23:41:02 info: Broadcaster added to the room -2026-07-20 23:41:02 info: Room created successfully -2026-07-20 23:41:04 info: Get room started -2026-07-20 23:41:04 info: Get room executed successfully -2026-07-20 23:41:04 info: Get room started -2026-07-20 23:41:04 info: Get room executed successfully -2026-07-20 23:41:04 info: Get room started -2026-07-20 23:41:04 info: Get room executed successfully -2026-07-20 23:41:04 info: Get room started -2026-07-20 23:41:04 info: Get room executed successfully -2026-07-20 23:41:04 info: Get room started -2026-07-20 23:41:04 info: Get room executed successfully -2026-07-20 23:41:05 info: Get room started -2026-07-20 23:41:05 info: Get room executed successfully -2026-07-20 23:41:05 info: Get room started -2026-07-20 23:41:05 info: Get room executed successfully -2026-07-20 23:41:05 info: Get room started -2026-07-20 23:41:05 info: Get room executed successfully -2026-07-20 23:41:05 info: Get room started -2026-07-20 23:41:05 info: Get room executed successfully -2026-07-20 23:41:07 info: User disconnected aDHnGeWKt7MIH5fxAAAL beacuse of transport close -2026-07-20 23:41:07 info: Handle disconnect started -2026-07-20 23:41:07 info: Get room started -2026-07-20 23:41:07 info: Get room executed successfully -2026-07-20 23:41:07 info: Get room started -2026-07-20 23:41:07 info: Get room executed successfully -2026-07-20 23:41:07 info: Get room started -2026-07-20 23:41:07 info: Get room executed successfully -2026-07-20 23:41:07 info: Remove broadcaster success -2026-07-20 23:41:07 info: Handle disconnect succesfully -2026-07-20 23:41:07 info: room:9180e833-3791-48af-8d13-a52b108f308a room deleted successfully -2026-07-20 23:41:07 info: [node-1] Client connected: 2YrqvQ2mTQKDMIZIAAAN -2026-07-20 23:41:11 info: User disconnected 2YrqvQ2mTQKDMIZIAAAN beacuse of transport close -2026-07-20 23:41:11 info: Handle disconnect started -2026-07-20 23:41:11 error: RoomId not found -2026-07-20 23:41:11 warn: IDK -2026-07-20 23:41:11 info: [node-1] Client connected: k14UmRYZl170e2jpAAAP -2026-07-20 23:41:12 info: User disconnected k14UmRYZl170e2jpAAAP beacuse of transport close -2026-07-20 23:41:12 info: Handle disconnect started -2026-07-20 23:41:12 error: RoomId not found -2026-07-20 23:41:12 warn: IDK -2026-07-20 23:41:12 info: [node-1] Client connected: Ttuc_pOCsonWDXMNAAAR -2026-07-20 23:41:13 info: User disconnected Ttuc_pOCsonWDXMNAAAR beacuse of transport close -2026-07-20 23:41:13 info: Handle disconnect started -2026-07-20 23:41:13 error: RoomId not found -2026-07-20 23:41:13 warn: IDK -2026-07-20 23:41:13 info: [node-1] Client connected: 2ItRb93kuAmlBd2AAAAT -2026-07-20 23:41:13 info: User disconnected 2ItRb93kuAmlBd2AAAAT beacuse of transport error -2026-07-20 23:41:13 info: Handle disconnect started -2026-07-20 23:41:13 error: RoomId not found -2026-07-20 23:41:13 warn: IDK -2026-07-20 23:41:13 info: [node-1] Client connected: rbEPpozIEbkCrMZnAAAV -2026-07-20 23:41:13 info: User disconnected rbEPpozIEbkCrMZnAAAV beacuse of transport error -2026-07-20 23:41:13 info: Handle disconnect started -2026-07-20 23:41:13 error: RoomId not found -2026-07-20 23:41:13 warn: IDK -2026-07-20 23:41:17 info: SignIn started -2026-07-20 23:41:17 info: SignIn completed -2026-07-20 23:41:17 info: [node-1] Client connected: X4Z32ej-lTDDmHgiAAAX -2026-07-20 23:41:17 info: User disconnected X4Z32ej-lTDDmHgiAAAX beacuse of transport close -2026-07-20 23:41:17 info: Handle disconnect started -2026-07-20 23:41:17 error: RoomId not found -2026-07-20 23:41:17 warn: IDK -2026-07-20 23:41:18 info: [node-1] Client connected: gPZmXHcsKBzRTwqeAAAZ -2026-07-20 23:41:18 info: User disconnected gPZmXHcsKBzRTwqeAAAZ beacuse of transport error -2026-07-20 23:41:18 info: Handle disconnect started -2026-07-20 23:41:18 error: RoomId not found -2026-07-20 23:41:18 warn: IDK -2026-07-20 23:41:19 info: [node-1] Client connected: sks094L8R5I_JPfKAAAb -2026-07-20 23:41:19 info: User disconnected sks094L8R5I_JPfKAAAb beacuse of transport error -2026-07-20 23:41:19 info: Handle disconnect started -2026-07-20 23:41:19 error: RoomId not found -2026-07-20 23:41:19 warn: IDK -2026-07-20 23:41:19 info: [node-1] Client connected: SXA_Z1YIb7Tc_TaeAAAd -2026-07-20 23:41:20 info: User disconnected SXA_Z1YIb7Tc_TaeAAAd beacuse of transport close -2026-07-20 23:41:20 info: Handle disconnect started -2026-07-20 23:41:20 error: RoomId not found -2026-07-20 23:41:20 warn: IDK -2026-07-20 23:41:20 info: [node-1] Client connected: WgTYe2fkOCc3kpU_AAAf -2026-07-20 23:41:26 info: User disconnected WgTYe2fkOCc3kpU_AAAf beacuse of transport close -2026-07-20 23:41:26 info: Handle disconnect started -2026-07-20 23:41:26 error: RoomId not found -2026-07-20 23:41:26 warn: IDK -2026-07-20 23:41:26 info: [node-1] Client connected: fc0vW9Hwp9Bk2VRaAAAh -2026-07-20 23:41:30 info: User disconnected fc0vW9Hwp9Bk2VRaAAAh beacuse of transport error -2026-07-20 23:41:30 info: Handle disconnect started -2026-07-20 23:41:30 error: RoomId not found -2026-07-20 23:41:30 warn: IDK -2026-07-20 23:41:30 info: [node-1] Client connected: 6MC8lUvytvQY7i3LAAAj -2026-07-21 00:28:13 info: Redis subscribers initialized -2026-07-21 00:28:15 info: MongoDB connected -2026-07-21 00:28:15 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-21 00:28:15 info: Creating worker started -2026-07-21 00:28:15 info: Creating worker started -2026-07-21 00:28:15 info: Creating worker started -2026-07-21 00:28:15 info: Worker created successfully -2026-07-21 00:28:15 info: Worker created successfully -2026-07-21 00:28:15 info: Worker created successfully -2026-07-21 00:28:15 info: Worker pool initialized -2026-07-21 00:28:25 info: SignIn started -2026-07-21 00:28:26 info: SignIn completed -2026-07-21 00:28:26 info: [node-1] Client connected: V4-E-TjOgnMRxTCrAAAB -2026-07-21 00:28:29 info: Create room started -2026-07-21 00:28:29 info: Woker loads loaded successfully -2026-07-21 00:28:29 info: Woker assigned succesfully -2026-07-21 00:28:29 info: Creation of router started -2026-07-21 00:28:29 info: Router created -2026-07-21 00:28:29 info: Creation of room successfully executed -2026-07-21 00:28:29 info: Get room started -2026-07-21 00:28:29 info: Get room executed successfully -2026-07-21 00:28:29 info: Broadcaster added to the room -2026-07-21 00:28:29 info: Room created successfully -2026-07-21 00:28:31 info: Get room started -2026-07-21 00:28:31 info: Get room executed successfully -2026-07-21 00:28:33 info: Get room started -2026-07-21 00:28:33 info: Get room executed successfully -2026-07-21 00:28:33 info: Get room started -2026-07-21 00:28:33 info: Get room executed successfully -2026-07-21 00:28:33 info: Get room started -2026-07-21 00:28:33 info: Get room executed successfully -2026-07-21 00:28:33 info: Get room started -2026-07-21 00:28:33 info: Get room executed successfully -2026-07-21 00:28:33 info: Get room started -2026-07-21 00:28:33 info: Get room executed successfully -2026-07-21 00:28:33 info: Get room started -2026-07-21 00:28:33 info: Get room executed successfully -2026-07-21 00:28:33 info: Get room started -2026-07-21 00:28:33 info: Get room executed successfully -2026-07-21 00:29:35 info: Redis subscribers initialized -2026-07-21 00:29:37 info: MongoDB connected -2026-07-21 00:29:37 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-21 00:29:37 info: Creating worker started -2026-07-21 00:29:37 info: Creating worker started -2026-07-21 00:29:37 info: Creating worker started -2026-07-21 00:29:37 info: Worker created successfully -2026-07-21 00:29:37 info: Worker created successfully -2026-07-21 00:29:37 info: Worker created successfully -2026-07-21 00:29:37 info: Worker pool initialized -2026-07-21 00:29:43 info: [node-1] Client connected: oMqHx64nrlhhn_y8AAAB -2026-07-21 00:29:49 info: Redis subscribers initialized -2026-07-21 00:29:54 info: Redis subscribers initialized -2026-07-21 00:29:57 info: MongoDB connected -2026-07-21 00:29:57 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-21 00:29:57 info: Creating worker started -2026-07-21 00:29:57 info: Creating worker started -2026-07-21 00:29:57 info: Creating worker started -2026-07-21 00:29:57 info: Worker created successfully -2026-07-21 00:29:57 info: Worker created successfully -2026-07-21 00:29:57 info: Worker created successfully -2026-07-21 00:29:57 info: Worker pool initialized -2026-07-21 00:30:03 info: SignIn started -2026-07-21 00:30:03 info: SignIn completed -2026-07-21 00:30:03 info: [node-1] Client connected: iKdLmd5GW2eugs6ZAAAB -2026-07-21 00:30:06 info: Create room started -2026-07-21 00:30:06 info: Woker loads loaded successfully -2026-07-21 00:30:06 info: Woker assigned succesfully -2026-07-21 00:30:06 info: Creation of router started -2026-07-21 00:30:06 info: Router created -2026-07-21 00:30:06 info: Creation of room successfully executed -2026-07-21 00:30:06 info: Get room started -2026-07-21 00:30:06 info: Get room executed successfully -2026-07-21 00:30:06 info: Broadcaster added to the room -2026-07-21 00:30:06 info: Room created successfully -2026-07-21 00:30:08 info: Get room started -2026-07-21 00:30:08 info: Get room executed successfully -2026-07-21 00:30:08 info: Get room started -2026-07-21 00:30:08 info: Get room executed successfully -2026-07-21 00:30:08 info: Get room started -2026-07-21 00:30:08 info: Get room executed successfully -2026-07-21 00:30:08 info: Get room started -2026-07-21 00:30:08 info: Get room executed successfully -2026-07-21 00:30:08 info: Get room started -2026-07-21 00:30:08 info: Get room executed successfully -2026-07-21 00:30:09 info: Get room started -2026-07-21 00:30:09 info: Get room executed successfully -2026-07-21 00:30:09 info: Get room started -2026-07-21 00:30:09 info: Get room executed successfully -2026-07-21 00:30:09 info: Get room started -2026-07-21 00:30:09 info: Get room executed successfully -2026-07-21 00:30:09 info: Get room started -2026-07-21 00:30:09 info: Get room executed successfully -2026-07-21 00:30:09 info: Get room started -2026-07-21 00:30:09 info: Get room executed successfully -2026-07-21 00:30:09 info: Get room started -2026-07-21 00:30:09 info: Get room executed successfully -2026-07-21 00:30:20 info: Get room started -2026-07-21 00:30:20 info: Get room executed successfully -2026-07-21 00:30:20 info: Get room started -2026-07-21 00:30:20 info: Get room executed successfully -2026-07-21 00:30:21 info: Get room started -2026-07-21 00:30:21 info: Get room executed successfully -2026-07-21 00:30:21 info: Get room started -2026-07-21 00:30:21 info: Get room executed successfully -2026-07-21 00:30:22 info: Get room started -2026-07-21 00:30:22 info: Get room executed successfully -2026-07-21 00:30:22 info: Get room started -2026-07-21 00:30:22 info: Get room executed successfully -2026-07-21 00:30:22 info: Get room started -2026-07-21 00:30:22 info: Get room executed successfully -2026-07-21 00:30:23 info: Get room started -2026-07-21 00:30:23 info: Get room executed successfully -2026-07-21 00:30:24 info: Get room started -2026-07-21 00:30:24 info: Get room executed successfully -2026-07-21 00:30:24 info: Get room started -2026-07-21 00:30:24 info: Get room executed successfully -2026-07-21 00:30:25 info: Get room started -2026-07-21 00:30:25 info: Get room executed successfully -2026-07-21 00:30:25 info: Get room started -2026-07-21 00:30:25 info: Get room executed successfully -2026-07-21 00:30:26 info: Get room started -2026-07-21 00:30:26 info: Get room executed successfully -2026-07-21 00:31:24 info: Redis subscribers initialized -2026-07-21 00:31:25 info: MongoDB connected -2026-07-21 00:31:25 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-07-21 00:31:25 info: Creating worker started -2026-07-21 00:31:25 info: Creating worker started -2026-07-21 00:31:25 info: Creating worker started -2026-07-21 00:31:25 info: Worker created successfully -2026-07-21 00:31:25 info: Worker created successfully -2026-07-21 00:31:25 info: Worker created successfully -2026-07-21 00:31:25 info: Worker pool initialized -2026-07-21 00:31:31 info: [node-1] Client connected: s6t71RtI1_3zAPA6AAAB -2026-08-07 13:41:17 info: Redis subscribers initialized -2026-08-07 13:41:25 info: MongoDB connected -2026-08-07 13:41:25 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-07 13:41:25 info: Creating worker started -2026-08-07 13:41:25 info: Creating worker started -2026-08-07 13:41:25 info: Creating worker started -2026-08-07 13:41:25 info: Worker created successfully -2026-08-07 13:41:25 info: Worker created successfully -2026-08-07 13:41:25 info: Worker created successfully -2026-08-07 13:41:25 info: Worker pool initialized -2026-08-07 13:41:57 info: SignIn started -2026-08-07 13:41:57 info: SignIn completed -2026-08-07 13:41:57 info: [node-1] Client connected: CqrFfXBs_RmxbW5_AAAB -2026-08-07 13:42:05 info: Create room started -2026-08-07 13:42:05 info: Woker loads loaded successfully -2026-08-07 13:42:05 info: Woker assigned succesfully -2026-08-07 13:42:05 info: Creation of router started -2026-08-07 13:42:05 info: Router created -2026-08-07 13:42:05 info: Creation of room successfully executed -2026-08-07 13:42:05 info: Get room started -2026-08-07 13:42:05 info: Get room executed successfully -2026-08-07 13:42:05 info: Broadcaster added to the room -2026-08-07 13:42:05 info: Room created successfully -2026-08-07 13:42:44 info: SignIn started -2026-08-07 13:42:44 error: Password validation failed -2026-08-07 13:43:03 info: SignUp started -2026-08-07 13:43:03 info: SignUp completed -2026-08-07 13:43:03 info: [node-1] Client connected: DHcIqQOZHJXJ8IaPAAAD -2026-08-07 13:43:19 info: Join as viewer listner started -2026-08-07 13:43:19 info: Get room started -2026-08-07 13:43:19 info: Get room executed successfully -2026-08-07 13:43:19 info: Viewer joined the room -2026-08-07 13:43:19 info: Get room started -2026-08-07 13:43:19 info: Get room executed successfully -2026-08-07 13:43:19 info: Fetching of router started -2026-08-07 13:43:19 info: Fetching of router executed successfully -2026-08-07 13:43:19 info: Join viewer listner successfully executed -2026-08-07 13:43:39 info: Get room started -2026-08-07 13:43:39 info: Get room executed successfully -2026-08-07 13:43:59 info: Get room started -2026-08-07 13:43:59 info: Get room executed successfully -2026-08-07 13:43:59 info: Join as viewer listner started -2026-08-07 13:43:59 info: Get room started -2026-08-07 13:43:59 info: Get room executed successfully -2026-08-07 13:43:59 info: Viewer joined the room -2026-08-07 13:43:59 info: Get room started -2026-08-07 13:43:59 info: Get room executed successfully -2026-08-07 13:43:59 info: Fetching of router started -2026-08-07 13:43:59 info: Fetching of router executed successfully -2026-08-07 13:43:59 info: Join viewer listner successfully executed -2026-08-07 13:44:05 info: User disconnected DHcIqQOZHJXJ8IaPAAAD beacuse of transport close -2026-08-07 13:44:05 info: Handle disconnect started -2026-08-07 13:44:05 info: Get room started -2026-08-07 13:44:05 info: Get room executed successfully -2026-08-07 13:44:05 info: Get room started -2026-08-07 13:44:05 info: Get room executed successfully -2026-08-07 13:44:05 info: Remove viewer started -2026-08-07 13:44:05 info: Viewer removed from room -2026-08-07 13:44:05 info: Handle disconnect succesfully -2026-08-07 13:44:55 info: User disconnected CqrFfXBs_RmxbW5_AAAB beacuse of transport close -2026-08-07 13:44:55 info: Handle disconnect started -2026-08-07 13:44:55 info: Get room started -2026-08-07 13:44:55 info: Get room executed successfully -2026-08-07 13:44:55 info: Get room started -2026-08-07 13:44:55 info: Get room executed successfully -2026-08-07 13:44:55 info: Get room started -2026-08-07 13:44:55 info: Get room executed successfully -2026-08-07 13:44:55 info: Remove broadcaster success -2026-08-07 13:44:55 info: Handle disconnect succesfully -2026-08-07 13:44:55 info: room:fd582e7a-e969-4ab7-b663-b525f8aa80ca room deleted successfully -2026-08-07 13:44:55 info: [node-1] Client connected: s_fgoN9H_nQFVH9bAAAF -2026-08-07 13:47:34 info: Redis subscribers initialized -2026-08-07 13:47:36 info: MongoDB connected -2026-08-07 13:47:36 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-07 13:47:36 info: Creating worker started -2026-08-07 13:47:36 info: Creating worker started -2026-08-07 13:47:36 info: Creating worker started -2026-08-07 13:47:36 info: Worker created successfully -2026-08-07 13:47:36 info: Worker created successfully -2026-08-07 13:47:36 info: Worker created successfully -2026-08-07 13:47:36 info: Worker pool initialized -2026-08-07 13:47:45 info: [node-1] Client connected: sIs4yi20EGC6IeJIAAAB -2026-08-07 13:48:55 info: Redis subscribers initialized -2026-08-07 13:49:09 info: Redis subscribers initialized -2026-08-07 13:49:17 info: MongoDB connected -2026-08-07 13:49:17 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-07 13:49:17 info: Creating worker started -2026-08-07 13:49:17 info: Creating worker started -2026-08-07 13:49:17 info: Creating worker started -2026-08-07 13:49:17 info: Worker created successfully -2026-08-07 13:49:17 info: Worker created successfully -2026-08-07 13:49:17 info: Worker created successfully -2026-08-07 13:49:17 info: Worker pool initialized -2026-08-07 13:49:28 info: SignIn started -2026-08-07 13:49:28 info: SignIn completed -2026-08-07 13:49:28 info: [node-1] Client connected: AQxH2Ir8TlZmdsGUAAAB -2026-08-07 13:49:33 info: Create room started -2026-08-07 13:49:33 info: Woker loads loaded successfully -2026-08-07 13:49:33 info: Woker assigned succesfully -2026-08-07 13:49:33 info: Creation of router started -2026-08-07 13:49:34 info: Router created -2026-08-07 13:49:34 info: Creation of room successfully executed -2026-08-07 13:49:34 info: Get room started -2026-08-07 13:49:34 info: Get room executed successfully -2026-08-07 13:49:34 info: Broadcaster added to the room -2026-08-07 13:49:34 info: Room created successfully -2026-08-07 13:49:53 info: SignUp started -2026-08-07 13:49:53 info: SignUp completed -2026-08-07 13:49:53 info: [node-1] Client connected: fCz9Bv57Z5r6cucEAAAD -2026-08-07 13:49:58 info: Join as viewer listner started -2026-08-07 13:49:58 info: Get room started -2026-08-07 13:49:58 info: Get room executed successfully -2026-08-07 13:49:58 info: Viewer joined the room -2026-08-07 13:49:58 info: Get room started -2026-08-07 13:49:58 info: Get room executed successfully -2026-08-07 13:49:58 info: Fetching of router started -2026-08-07 13:49:58 info: Fetching of router executed successfully -2026-08-07 13:49:58 info: Join viewer listner successfully executed -2026-08-07 13:50:18 info: Get room started -2026-08-07 13:50:18 info: Get room executed successfully -2026-08-07 13:50:38 info: Get room started -2026-08-07 13:50:38 info: Get room executed successfully -2026-08-07 13:51:00 info: Redis subscribers initialized -2026-08-07 13:51:02 info: MongoDB connected -2026-08-07 13:51:02 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-07 13:51:02 info: Creating worker started -2026-08-07 13:51:02 info: Creating worker started -2026-08-07 13:51:02 info: Creating worker started -2026-08-07 13:51:02 info: Worker created successfully -2026-08-07 13:51:02 info: Worker created successfully -2026-08-07 13:51:02 info: Worker created successfully -2026-08-07 13:51:02 info: Worker pool initialized -2026-08-07 13:51:05 info: [node-1] Client connected: cTUsNDIEN3uyjURXAAAB -2026-08-07 13:51:09 info: [node-1] Client connected: hKwt7b10WK7Om_3qAAAD -2026-08-07 13:51:09 error: Room not found -2026-08-07 13:53:11 info: Redis subscribers initialized -2026-08-07 13:53:13 info: MongoDB connected -2026-08-07 13:53:13 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-07 13:53:13 info: Creating worker started -2026-08-07 13:53:13 info: Creating worker started -2026-08-07 13:53:13 info: Creating worker started -2026-08-07 13:53:13 info: Worker created successfully -2026-08-07 13:53:13 info: Worker created successfully -2026-08-07 13:53:13 info: Worker created successfully -2026-08-07 13:53:13 info: Worker pool initialized -2026-08-07 13:53:19 info: [node-1] Client connected: KEpgEx477A9T6Mq-AAAB -2026-08-07 13:53:19 info: Create room started -2026-08-07 13:53:19 info: Woker loads loaded successfully -2026-08-07 13:53:19 info: Woker assigned succesfully -2026-08-07 13:53:19 info: Creation of router started -2026-08-07 13:53:19 info: [node-1] Client connected: jGz_losKIWF7-PWzAAAD -2026-08-07 13:53:19 info: Router created -2026-08-07 13:53:19 error: Room not found -2026-08-07 13:53:34 info: Redis subscribers initialized -2026-08-07 13:53:36 info: MongoDB connected -2026-08-07 13:53:36 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-07 13:53:36 info: Creating worker started -2026-08-07 13:53:36 info: Creating worker started -2026-08-07 13:53:36 info: Creating worker started -2026-08-07 13:53:36 info: Worker created successfully -2026-08-07 13:53:36 info: Worker created successfully -2026-08-07 13:53:36 info: Worker created successfully -2026-08-07 13:53:36 info: Worker pool initialized -2026-08-07 13:53:40 info: [node-1] Client connected: 8H-4Gwp_QOkXqlsaAAAB -2026-08-07 13:53:41 error: Room not found -2026-08-07 13:54:07 info: Redis subscribers initialized -2026-08-07 13:54:09 info: MongoDB connected -2026-08-07 13:54:09 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-07 13:54:09 info: Creating worker started -2026-08-07 13:54:09 info: Creating worker started -2026-08-07 13:54:09 info: Creating worker started -2026-08-07 13:54:09 info: Worker created successfully -2026-08-07 13:54:09 info: Worker created successfully -2026-08-07 13:54:09 info: Worker created successfully -2026-08-07 13:54:09 info: Worker pool initialized -2026-08-07 13:54:13 info: [node-1] Client connected: 2jz2VJvr3D0rQbEpAAAB -2026-08-07 13:54:13 error: Room not found -2026-08-07 13:55:36 info: Redis subscribers initialized -2026-08-07 13:55:43 info: MongoDB connected -2026-08-07 13:55:43 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-07 13:55:43 info: Creating worker started -2026-08-07 13:55:43 info: Creating worker started -2026-08-07 13:55:43 info: Creating worker started -2026-08-07 13:55:43 info: Worker created successfully -2026-08-07 13:55:43 info: Worker created successfully -2026-08-07 13:55:43 info: Worker created successfully -2026-08-07 13:55:43 info: Worker pool initialized -2026-08-07 13:55:48 info: SignIn started -2026-08-07 13:55:48 info: SignIn completed -2026-08-07 13:55:48 info: [node-1] Client connected: xOw31HGRCatI4hCJAAAB -2026-08-07 13:55:52 info: Create room started -2026-08-07 13:55:52 info: Woker loads loaded successfully -2026-08-07 13:55:52 info: Woker assigned succesfully -2026-08-07 13:55:52 info: Creation of router started -2026-08-07 13:55:52 info: Router created -2026-08-07 13:55:52 info: Creation of room successfully executed -2026-08-07 13:55:52 info: Get room started -2026-08-07 13:55:52 info: Get room executed successfully -2026-08-07 13:55:52 info: Broadcaster added to the room -2026-08-07 13:55:52 info: Room created successfully -2026-08-07 13:56:13 info: SignUp started -2026-08-07 13:56:13 error: Validation error "username" must only contain alpha-numeric characters -2026-08-07 13:56:21 info: SignUp started -2026-08-07 13:56:21 info: SignUp completed -2026-08-07 13:56:21 info: [node-1] Client connected: hG1giOsjFgu9nVGPAAAD -2026-08-07 13:56:30 info: Join as viewer listner started -2026-08-07 13:56:30 info: Get room started -2026-08-07 13:56:30 info: Get room executed successfully -2026-08-07 13:56:30 info: Viewer joined the room -2026-08-07 13:56:30 info: Get room started -2026-08-07 13:56:30 info: Get room executed successfully -2026-08-07 13:56:30 info: Fetching of router started -2026-08-07 13:56:30 info: Fetching of router executed successfully -2026-08-07 13:56:30 info: Join viewer listner successfully executed -2026-08-07 13:56:40 info: User disconnected hG1giOsjFgu9nVGPAAAD beacuse of transport close -2026-08-07 13:56:40 info: Handle disconnect started -2026-08-07 13:56:40 info: Get room started -2026-08-07 13:56:40 info: Get room executed successfully -2026-08-07 13:56:40 info: Get room started -2026-08-07 13:56:40 info: Get room executed successfully -2026-08-07 13:56:40 info: Remove viewer started -2026-08-07 13:56:40 info: Handle disconnect succesfully -2026-08-07 13:56:40 info: Viewer removed from room -2026-08-07 13:58:05 info: Get room started -2026-08-07 13:58:05 info: Get room executed successfully -2026-08-07 13:58:06 info: Get room started -2026-08-07 13:58:06 info: Get room executed successfully -2026-08-07 13:58:06 info: Get room started -2026-08-07 13:58:06 info: Get room executed successfully -2026-08-07 13:58:06 info: Get room started -2026-08-07 13:58:06 info: Get room executed successfully -2026-08-07 13:58:06 info: Get room started -2026-08-07 13:58:06 info: Get room executed successfully -2026-08-07 13:58:07 info: Get room started -2026-08-07 13:58:07 info: Get room executed successfully -2026-08-07 13:58:07 info: Get room started -2026-08-07 13:58:07 info: Get room executed successfully -2026-08-07 13:58:07 info: Get room started -2026-08-07 13:58:07 info: Get room executed successfully -2026-08-07 13:58:07 info: Get room started -2026-08-07 13:58:07 info: Get room executed successfully -2026-08-07 13:58:07 info: Get room started -2026-08-07 13:58:07 info: Get room executed successfully -2026-08-07 13:58:07 info: Get room started -2026-08-07 13:58:07 info: Get room executed successfully -2026-08-07 13:58:08 info: Get room started -2026-08-07 13:58:08 info: Get room executed successfully -2026-08-07 13:58:08 info: Get room started -2026-08-07 13:58:08 info: Get room executed successfully -2026-08-07 13:58:08 info: Get room started -2026-08-07 13:58:08 info: Get room executed successfully -2026-08-07 13:58:09 info: Get room started -2026-08-07 13:58:09 info: Get room executed successfully -2026-08-07 13:58:09 info: Get room started -2026-08-07 13:58:09 info: Get room executed successfully -2026-08-07 13:58:09 info: Get room started -2026-08-07 13:58:09 info: Get room executed successfully -2026-08-07 13:58:09 info: Get room started -2026-08-07 13:58:09 info: Get room executed successfully -2026-08-07 13:58:10 info: Get room started -2026-08-07 13:58:10 info: Get room executed successfully -2026-08-07 13:58:13 info: User disconnected xOw31HGRCatI4hCJAAAB beacuse of transport close -2026-08-07 13:58:13 info: Handle disconnect started -2026-08-07 13:58:13 info: Get room started -2026-08-07 13:58:13 info: Get room executed successfully -2026-08-07 13:58:13 info: Get room started -2026-08-07 13:58:13 info: Get room executed successfully -2026-08-07 13:58:13 info: Get room started -2026-08-07 13:58:13 info: Get room executed successfully -2026-08-07 13:58:13 info: Remove broadcaster success -2026-08-07 13:58:13 info: Handle disconnect succesfully -2026-08-07 13:58:13 info: room:717cd25e-4b0d-4074-9235-184a4e2c7c87 room deleted successfully -2026-08-09 00:02:41 info: Redis subscribers initialized -2026-08-09 00:02:43 info: MongoDB connected -2026-08-09 00:02:43 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-09 00:02:43 info: Creating worker started -2026-08-09 00:02:43 info: Creating worker started -2026-08-09 00:02:43 info: Creating worker started -2026-08-09 00:02:43 info: Worker created successfully -2026-08-09 00:02:43 info: Worker created successfully -2026-08-09 00:02:43 info: Worker created successfully -2026-08-09 00:02:43 info: Worker pool initialized -2026-08-09 00:03:01 info: SignIn started -2026-08-09 00:03:01 info: SignIn completed -2026-08-09 00:03:01 info: [node-1] Client connected: ZRL09wBouirZMUBmAAAB -2026-08-09 00:03:05 info: Create room started -2026-08-09 00:03:05 info: Woker loads loaded successfully -2026-08-09 00:03:05 info: Woker assigned succesfully -2026-08-09 00:03:05 info: Creation of router started -2026-08-09 00:03:05 info: Router created -2026-08-09 00:03:05 info: Creation of room successfully executed -2026-08-09 00:03:05 info: Get room started -2026-08-09 00:03:05 info: Get room executed successfully -2026-08-09 00:03:05 info: Broadcaster added to the room -2026-08-09 00:03:05 info: Room created successfully -2026-08-09 00:03:25 info: SignUp started -2026-08-09 00:03:25 error: Validation error "username" must only contain alpha-numeric characters -2026-08-09 00:03:29 info: SignUp started -2026-08-09 00:03:29 error: User already exists -2026-08-09 00:03:32 info: SignUp started -2026-08-09 00:03:32 error: User already exists -2026-08-09 00:03:41 info: SignUp started -2026-08-09 00:03:41 error: User already exists -2026-08-09 00:03:51 info: SignUp started -2026-08-09 00:03:51 error: User already exists -2026-08-09 00:03:55 info: SignUp started -2026-08-09 00:03:55 info: SignUp completed -2026-08-09 00:03:55 info: [node-1] Client connected: cj0ml6DlmD9Q2vMDAAAD -2026-08-09 00:04:00 info: Join as viewer listner started -2026-08-09 00:04:00 info: Rate limiting -2026-08-09 00:04:00 info: Rate limiting -2026-08-09 00:04:00 info: Get room started -2026-08-09 00:04:00 info: Get room executed successfully -2026-08-09 00:04:00 info: Fetching of router started -2026-08-09 00:04:00 info: Fetching of router executed successfully -2026-08-09 00:04:00 info: Get room started -2026-08-09 00:04:00 info: Get room executed successfully -2026-08-09 00:04:00 info: Viewer joined the room -2026-08-09 00:04:00 info: Join viewer listner successfully executed -2026-08-09 00:04:03 info: Get room started -2026-08-09 00:04:03 info: Get room executed successfully -2026-08-09 00:04:03 info: Rate limiting -2026-08-09 00:04:03 info: Rate limiting -2026-08-09 00:04:05 info: Get room started -2026-08-09 00:04:05 info: Get room executed successfully -2026-08-09 00:04:05 info: Rate limiting -2026-08-09 00:04:05 info: Rate limiting -2026-08-09 00:04:05 warn: Moderation blocked message -2026-08-09 00:04:09 info: Get room started -2026-08-09 00:04:09 info: Get room executed successfully -2026-08-09 00:04:09 info: Rate limiting -2026-08-09 00:04:09 info: Rate limiting -2026-08-09 00:04:11 info: Get room started -2026-08-09 00:04:11 info: Get room executed successfully -2026-08-09 00:04:11 info: Rate limiting -2026-08-09 00:04:11 info: Rate limiting -2026-08-09 00:04:12 info: Get room started -2026-08-09 00:04:12 info: Get room executed successfully -2026-08-09 00:04:12 info: Rate limiting -2026-08-09 00:04:12 info: Rate limiting -2026-08-09 00:04:13 info: Get room started -2026-08-09 00:04:13 info: Get room executed successfully -2026-08-09 00:04:13 info: Rate limiting -2026-08-09 00:04:13 info: Rate limiting -2026-08-09 00:04:15 info: Get room started -2026-08-09 00:04:15 info: Get room executed successfully -2026-08-09 00:04:15 info: Rate limiting -2026-08-09 00:04:15 info: Rate limiting -2026-08-09 00:04:16 info: Get room started -2026-08-09 00:04:16 info: Get room executed successfully -2026-08-09 00:04:16 info: Rate limiting -2026-08-09 00:04:16 info: Rate limiting -2026-08-09 00:04:17 info: Get room started -2026-08-09 00:04:17 info: Get room executed successfully -2026-08-09 00:04:17 info: Rate limiting -2026-08-09 00:04:17 info: Rate limiting -2026-08-09 00:04:20 info: Get room started -2026-08-09 00:04:20 info: Get room executed successfully -2026-08-09 00:04:20 info: Get room started -2026-08-09 00:04:20 info: Get room executed successfully -2026-08-09 00:04:20 info: Rate limiting -2026-08-09 00:04:20 info: Rate limiting -2026-08-09 00:04:21 info: Get room started -2026-08-09 00:04:21 info: Get room executed successfully -2026-08-09 00:04:21 info: Rate limiting -2026-08-09 00:04:21 info: Rate limiting -2026-08-09 00:04:25 info: Get room started -2026-08-09 00:04:25 info: Get room executed successfully -2026-08-09 00:04:25 info: Rate limiting -2026-08-09 00:04:25 info: Rate limiting -2026-08-09 00:04:27 info: Get room started -2026-08-09 00:04:27 info: Get room executed successfully -2026-08-09 00:04:27 info: Rate limiting -2026-08-09 00:04:27 info: Rate limiting -2026-08-09 00:04:40 info: Get room started -2026-08-09 00:04:40 info: Get room executed successfully -2026-08-09 00:04:46 info: Get room started -2026-08-09 00:04:46 info: Get room executed successfully -2026-08-09 00:04:46 info: Rate limiting -2026-08-09 00:04:46 info: Rate limiting -2026-08-09 00:04:46 info: Get room started -2026-08-09 00:04:46 info: Get room executed successfully -2026-08-09 00:04:46 info: Rate limiting -2026-08-09 00:04:46 info: Rate limiting -2026-08-09 00:04:47 info: Get room started -2026-08-09 00:04:47 info: Get room executed successfully -2026-08-09 00:04:47 info: Rate limiting -2026-08-09 00:04:47 info: Rate limiting -2026-08-09 00:04:47 info: Get room started -2026-08-09 00:04:47 info: Get room executed successfully -2026-08-09 00:04:47 info: Rate limiting -2026-08-09 00:04:47 info: Rate limiting -2026-08-09 00:04:47 info: Get room started -2026-08-09 00:04:47 info: Get room executed successfully -2026-08-09 00:04:47 info: Rate limiting -2026-08-09 00:04:47 info: Rate limiting -2026-08-09 00:04:47 info: Get room started -2026-08-09 00:04:47 info: Get room executed successfully -2026-08-09 00:04:47 info: Rate limiting -2026-08-09 00:04:47 info: Rate limiting -2026-08-09 00:04:47 info: Get room started -2026-08-09 00:04:47 info: Get room executed successfully -2026-08-09 00:04:47 info: Rate limiting -2026-08-09 00:04:47 info: Rate limiting -2026-08-09 00:04:47 info: Get room started -2026-08-09 00:04:47 info: Get room executed successfully -2026-08-09 00:04:47 info: Rate limiting -2026-08-09 00:04:47 info: Rate limiting -2026-08-09 00:04:48 info: Get room started -2026-08-09 00:04:48 info: Get room executed successfully -2026-08-09 00:04:48 info: Rate limiting -2026-08-09 00:04:48 info: Rate limiting -2026-08-09 00:04:48 info: Get room started -2026-08-09 00:04:48 info: Get room executed successfully -2026-08-09 00:04:48 info: Rate limiting -2026-08-09 00:04:48 info: Rate limiting -2026-08-09 00:04:48 info: Get room started -2026-08-09 00:04:48 info: Get room executed successfully -2026-08-09 00:04:48 info: Rate limiting -2026-08-09 00:04:48 info: Rate limiting -2026-08-09 00:04:48 info: Get room started -2026-08-09 00:04:48 info: Get room executed successfully -2026-08-09 00:04:48 info: Rate limiting -2026-08-09 00:04:48 info: Rate limiting -2026-08-09 00:04:48 info: Get room started -2026-08-09 00:04:48 info: Get room executed successfully -2026-08-09 00:04:48 info: Rate limiting -2026-08-09 00:04:48 info: Rate limiting -2026-08-09 00:04:48 info: Get room started -2026-08-09 00:04:48 info: Get room executed successfully -2026-08-09 00:04:48 info: Rate limiting -2026-08-09 00:04:48 info: Rate limiting -2026-08-09 00:04:48 info: Get room started -2026-08-09 00:04:48 info: Get room executed successfully -2026-08-09 00:04:48 info: Rate limiting -2026-08-09 00:04:48 info: Rate limiting -2026-08-09 00:04:49 info: Get room started -2026-08-09 00:04:49 info: Get room executed successfully -2026-08-09 00:04:49 info: Rate limiting -2026-08-09 00:04:49 info: Rate limiting -2026-08-09 00:04:49 info: Get room started -2026-08-09 00:04:49 info: Get room executed successfully -2026-08-09 00:04:49 info: Rate limiting -2026-08-09 00:04:49 info: Rate limiting -2026-08-09 00:04:49 info: Get room started -2026-08-09 00:04:49 info: Get room executed successfully -2026-08-09 00:04:49 info: Rate limiting -2026-08-09 00:04:49 info: Rate limiting -2026-08-09 00:04:49 info: Get room started -2026-08-09 00:04:49 info: Get room executed successfully -2026-08-09 00:04:49 info: Rate limiting -2026-08-09 00:04:49 info: Rate limiting -2026-08-09 00:04:49 info: Get room started -2026-08-09 00:04:49 info: Get room executed successfully -2026-08-09 00:04:49 info: Rate limiting -2026-08-09 00:04:49 info: Rate limiting -2026-08-09 00:04:49 info: Get room started -2026-08-09 00:04:49 info: Get room executed successfully -2026-08-09 00:04:49 info: Rate limiting -2026-08-09 00:04:49 info: Rate limiting -2026-08-09 00:04:50 info: Get room started -2026-08-09 00:04:50 info: Get room executed successfully -2026-08-09 00:04:50 info: Rate limiting -2026-08-09 00:04:50 info: Rate limiting -2026-08-09 00:04:50 info: Get room started -2026-08-09 00:04:50 info: Get room executed successfully -2026-08-09 00:04:50 info: Rate limiting -2026-08-09 00:04:50 warn: chat rate limit exceeded -2026-08-09 00:04:50 warn: Chat reactions limit exceeded -2026-08-09 00:04:51 info: Get room started -2026-08-09 00:04:51 info: Get room executed successfully -2026-08-09 00:04:51 info: Rate limiting -2026-08-09 00:04:51 info: Rate limiting -2026-08-09 00:04:52 info: Get room started -2026-08-09 00:04:52 info: Get room executed successfully -2026-08-09 00:04:52 info: Rate limiting -2026-08-09 00:04:52 warn: chat rate limit exceeded -2026-08-09 00:04:52 warn: Chat reactions limit exceeded -2026-08-09 00:04:53 info: Get room started -2026-08-09 00:04:53 info: Get room executed successfully -2026-08-09 00:04:53 info: Rate limiting -2026-08-09 00:04:53 info: Rate limiting -2026-08-09 00:04:54 info: Get room started -2026-08-09 00:04:54 info: Get room executed successfully -2026-08-09 00:04:54 info: Rate limiting -2026-08-09 00:04:54 warn: chat rate limit exceeded -2026-08-09 00:04:54 warn: Chat reactions limit exceeded -2026-08-09 00:05:01 info: Get room started -2026-08-09 00:05:01 info: Get room executed successfully -2026-08-09 00:05:16 info: User disconnected ZRL09wBouirZMUBmAAAB beacuse of transport close -2026-08-09 00:05:16 info: Handle disconnect started -2026-08-09 00:05:16 info: Get room started -2026-08-09 00:05:16 info: Get room executed successfully -2026-08-09 00:05:16 info: Get room started -2026-08-09 00:05:16 info: Get room executed successfully -2026-08-09 00:05:16 info: Get room started -2026-08-09 00:05:16 info: Get room executed successfully -2026-08-09 00:05:16 info: Get room started -2026-08-09 00:05:16 info: Get room executed successfully -2026-08-09 00:05:16 info: Get room started -2026-08-09 00:05:16 info: Get room executed successfully -2026-08-09 00:05:16 info: Remove broadcaster success -2026-08-09 00:05:16 info: Handle disconnect succesfully -2026-08-09 00:05:16 info: room:dd63fe5c-bd71-4fc9-953c-b3bb9871d4a4 room deleted successfully -2026-08-09 00:05:16 info: User disconnected cj0ml6DlmD9Q2vMDAAAD beacuse of transport close -2026-08-09 00:05:16 info: Handle disconnect started -2026-08-12 17:16:28 info: Redis subscribers initialized -2026-08-12 17:16:36 info: MongoDB connected -2026-08-12 17:16:36 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-12 17:16:36 info: Creating worker started -2026-08-12 17:16:36 info: Creating worker started -2026-08-12 17:16:36 info: Creating worker started -2026-08-12 17:16:36 info: Worker created successfully -2026-08-12 17:16:36 info: Worker created successfully -2026-08-12 17:16:36 info: Worker created successfully -2026-08-12 17:16:36 info: Worker pool initialized -2026-08-12 17:16:42 info: SignIn started -2026-08-12 17:16:42 info: SignIn completed -2026-08-12 17:16:42 info: [node-1] Client connected: ERwXqvxdBoEtwoPVAAAB -2026-08-12 17:16:46 info: Create room started -2026-08-12 17:16:46 info: Woker loads loaded successfully -2026-08-12 17:16:46 info: Woker assigned succesfully -2026-08-12 17:16:46 info: Creation of router started -2026-08-12 17:16:46 info: Router created -2026-08-12 17:16:46 info: Creation of room successfully executed -2026-08-12 17:16:46 info: Get room started -2026-08-12 17:16:46 info: Get room executed successfully -2026-08-12 17:16:46 info: Broadcaster added to the room -2026-08-12 17:16:46 info: Room created successfully -2026-08-12 17:20:06 info: Create room started -2026-08-12 17:20:06 info: Get room started -2026-08-12 17:20:06 info: Get room executed successfully -2026-08-12 17:20:06 info: Woker loads loaded successfully -2026-08-12 17:20:06 info: Woker assigned succesfully -2026-08-12 17:20:06 info: Creation of router started -2026-08-12 17:20:06 info: Router created -2026-08-12 17:20:06 info: Creation of room successfully executed -2026-08-12 17:20:06 info: Get room started -2026-08-12 17:20:06 info: Get room executed successfully -2026-08-12 17:20:06 info: Broadcaster added to the room -2026-08-12 17:20:06 info: Room created successfully -2026-08-12 17:21:31 info: Create room started -2026-08-12 17:21:31 info: Get room started -2026-08-12 17:21:31 info: Get room executed successfully -2026-08-12 17:21:31 info: Get room started -2026-08-12 17:21:31 info: Get room executed successfully -2026-08-12 17:21:31 info: Woker loads loaded successfully -2026-08-12 17:21:31 info: Woker assigned succesfully -2026-08-12 17:21:31 info: Creation of router started -2026-08-12 17:21:31 info: Router created -2026-08-12 17:21:31 info: Creation of room successfully executed -2026-08-12 17:21:31 info: Get room started -2026-08-12 17:21:31 info: Get room executed successfully -2026-08-12 17:21:31 info: Broadcaster added to the room -2026-08-12 17:21:31 info: Room created successfully -2026-08-12 17:21:57 info: Create room started -2026-08-12 17:21:57 info: Get room started -2026-08-12 17:21:57 info: Get room executed successfully -2026-08-12 17:21:57 info: Get room started -2026-08-12 17:21:57 info: Get room executed successfully -2026-08-12 17:21:57 info: Get room started -2026-08-12 17:21:57 info: Get room executed successfully -2026-08-12 17:21:57 info: Woker loads loaded successfully -2026-08-12 17:21:57 info: Woker assigned succesfully -2026-08-12 17:21:57 info: Creation of router started -2026-08-12 17:21:57 info: Router created -2026-08-12 17:21:57 info: Creation of room successfully executed -2026-08-12 17:21:57 info: Get room started -2026-08-12 17:21:57 info: Get room executed successfully -2026-08-12 17:21:57 info: Broadcaster added to the room -2026-08-12 17:21:57 info: Room created successfully -2026-08-12 17:21:57 info: Get room started -2026-08-12 17:21:57 info: Get room executed successfully -2026-08-12 17:21:57 info: Rate limiting -2026-08-12 17:21:58 info: Rate limiting -2026-08-12 17:21:58 info: Get room started -2026-08-12 17:21:58 info: Get room executed successfully -2026-08-12 17:21:58 info: Rate limiting -2026-08-12 17:21:58 info: Rate limiting -2026-08-12 17:21:58 info: Get room started -2026-08-12 17:21:58 info: Get room executed successfully -2026-08-12 17:21:58 info: Rate limiting -2026-08-12 17:21:58 info: Rate limiting -2026-08-12 17:21:58 info: Get room started -2026-08-12 17:21:58 info: Get room executed successfully -2026-08-12 17:21:58 info: Rate limiting -2026-08-12 17:21:58 info: Rate limiting -2026-08-12 17:21:58 info: Get room started -2026-08-12 17:21:58 info: Get room executed successfully -2026-08-12 17:21:58 info: Rate limiting -2026-08-12 17:21:58 info: Rate limiting -2026-08-12 17:21:58 info: Get room started -2026-08-12 17:21:58 info: Get room executed successfully -2026-08-12 17:21:58 info: Rate limiting -2026-08-12 17:21:58 info: Rate limiting -2026-08-12 17:21:59 info: Get room started -2026-08-12 17:21:59 info: Get room executed successfully -2026-08-12 17:21:59 info: Rate limiting -2026-08-12 17:21:59 info: Rate limiting -2026-08-12 17:21:59 info: Get room started -2026-08-12 17:21:59 info: Get room executed successfully -2026-08-12 17:21:59 info: Rate limiting -2026-08-12 17:21:59 info: Rate limiting -2026-08-12 17:21:59 info: Get room started -2026-08-12 17:21:59 info: Get room executed successfully -2026-08-12 17:21:59 info: Rate limiting -2026-08-12 17:21:59 info: Rate limiting -2026-08-12 17:21:59 info: Get room started -2026-08-12 17:21:59 info: Get room executed successfully -2026-08-12 17:21:59 info: Rate limiting -2026-08-12 17:21:59 info: Rate limiting -2026-08-12 17:21:59 info: Get room started -2026-08-12 17:21:59 info: Get room executed successfully -2026-08-12 17:21:59 info: Rate limiting -2026-08-12 17:21:59 info: Rate limiting -2026-08-12 17:22:02 info: Get room started -2026-08-12 17:22:02 info: Get room executed successfully -2026-08-12 17:22:02 info: Rate limiting -2026-08-12 17:22:02 info: Rate limiting -2026-08-12 17:22:36 info: Create room started -2026-08-12 17:22:36 info: Get room started -2026-08-12 17:22:36 info: Get room executed successfully -2026-08-12 17:22:36 info: Get room started -2026-08-12 17:22:36 info: Get room executed successfully -2026-08-12 17:22:36 info: Get room started -2026-08-12 17:22:36 info: Get room executed successfully -2026-08-12 17:22:36 info: Get room started -2026-08-12 17:22:36 info: Get room executed successfully -2026-08-12 17:22:36 info: Woker loads loaded successfully -2026-08-12 17:22:36 info: Woker assigned succesfully -2026-08-12 17:22:36 info: Creation of router started -2026-08-12 17:22:36 info: Router created -2026-08-12 17:22:36 info: Creation of room successfully executed -2026-08-12 17:22:36 info: Get room started -2026-08-12 17:22:36 info: Get room executed successfully -2026-08-12 17:22:36 info: Broadcaster added to the room -2026-08-12 17:22:36 info: Room created successfully -2026-08-12 17:22:43 info: Create room started -2026-08-12 17:22:43 info: Get room started -2026-08-12 17:22:43 info: Get room executed successfully -2026-08-12 17:22:43 info: Get room started -2026-08-12 17:22:43 info: Get room executed successfully -2026-08-12 17:22:43 info: Get room started -2026-08-12 17:22:43 info: Get room executed successfully -2026-08-12 17:22:43 info: Get room started -2026-08-12 17:22:43 info: Get room executed successfully -2026-08-12 17:22:43 info: Get room started -2026-08-12 17:22:43 info: Get room executed successfully -2026-08-12 17:22:43 info: Woker loads loaded successfully -2026-08-12 17:22:43 info: Woker assigned succesfully -2026-08-12 17:22:43 info: Creation of router started -2026-08-12 17:22:43 info: Router created -2026-08-12 17:22:43 info: Creation of room successfully executed -2026-08-12 17:22:43 info: Get room started -2026-08-12 17:22:43 info: Get room executed successfully -2026-08-12 17:22:43 info: Broadcaster added to the room -2026-08-12 17:22:43 info: Room created successfully -2026-08-12 17:23:22 info: Create room started -2026-08-12 17:23:22 info: Get room started -2026-08-12 17:23:22 info: Get room executed successfully -2026-08-12 17:23:22 info: Get room started -2026-08-12 17:23:22 info: Get room executed successfully -2026-08-12 17:23:22 info: Get room started -2026-08-12 17:23:22 info: Get room executed successfully -2026-08-12 17:23:22 info: Get room started -2026-08-12 17:23:22 info: Get room executed successfully -2026-08-12 17:23:22 info: Get room started -2026-08-12 17:23:22 info: Get room executed successfully -2026-08-12 17:23:22 info: Get room started -2026-08-12 17:23:22 info: Get room executed successfully -2026-08-12 17:23:22 info: Woker loads loaded successfully -2026-08-12 17:23:22 info: Woker assigned succesfully -2026-08-12 17:23:22 info: Creation of router started -2026-08-12 17:23:22 info: Router created -2026-08-12 17:23:22 info: Creation of room successfully executed -2026-08-12 17:23:22 info: Get room started -2026-08-12 17:23:22 info: Get room executed successfully -2026-08-12 17:23:22 info: Broadcaster added to the room -2026-08-12 17:23:22 info: Room created successfully -2026-08-12 17:23:23 info: Create room started -2026-08-12 17:23:23 info: Get room started -2026-08-12 17:23:23 info: Get room executed successfully -2026-08-12 17:23:23 info: Get room started -2026-08-12 17:23:23 info: Get room executed successfully -2026-08-12 17:23:23 info: Get room started -2026-08-12 17:23:23 info: Get room executed successfully -2026-08-12 17:23:23 info: Get room started -2026-08-12 17:23:23 info: Get room executed successfully -2026-08-12 17:23:23 info: Get room started -2026-08-12 17:23:23 info: Get room executed successfully -2026-08-12 17:23:23 info: Get room started -2026-08-12 17:23:23 info: Get room executed successfully -2026-08-12 17:23:23 info: Get room started -2026-08-12 17:23:23 info: Get room executed successfully -2026-08-12 17:23:23 info: Woker loads loaded successfully -2026-08-12 17:23:23 info: Woker assigned succesfully -2026-08-12 17:23:23 info: Creation of router started -2026-08-12 17:23:23 info: Router created -2026-08-12 17:23:23 info: Creation of room successfully executed -2026-08-12 17:23:23 info: Get room started -2026-08-12 17:23:23 info: Get room executed successfully -2026-08-12 17:23:23 info: Broadcaster added to the room -2026-08-12 17:23:23 info: Room created successfully -2026-08-12 17:23:24 info: Create room started -2026-08-12 17:23:24 info: Get room started -2026-08-12 17:23:24 info: Get room executed successfully -2026-08-12 17:23:24 info: Get room started -2026-08-12 17:23:24 info: Get room executed successfully -2026-08-12 17:23:24 info: Get room started -2026-08-12 17:23:24 info: Get room executed successfully -2026-08-12 17:23:24 info: Get room started -2026-08-12 17:23:24 info: Get room executed successfully -2026-08-12 17:23:24 info: Get room started -2026-08-12 17:23:24 info: Get room executed successfully -2026-08-12 17:23:24 info: Get room started -2026-08-12 17:23:24 info: Get room executed successfully -2026-08-12 17:23:24 info: Get room started -2026-08-12 17:23:24 info: Get room executed successfully -2026-08-12 17:23:24 info: Get room started -2026-08-12 17:23:24 info: Get room executed successfully -2026-08-12 17:23:24 info: Woker loads loaded successfully -2026-08-12 17:23:24 info: Woker assigned succesfully -2026-08-12 17:23:24 info: Creation of router started -2026-08-12 17:23:24 info: Router created -2026-08-12 17:23:24 info: Creation of room successfully executed -2026-08-12 17:23:24 info: Get room started -2026-08-12 17:23:24 info: Get room executed successfully -2026-08-12 17:23:24 info: Broadcaster added to the room -2026-08-12 17:23:24 info: Room created successfully -2026-08-12 17:23:24 info: Create room started -2026-08-12 17:23:24 info: Get room started -2026-08-12 17:23:24 info: Get room executed successfully -2026-08-12 17:23:24 info: Get room started -2026-08-12 17:23:24 info: Get room executed successfully -2026-08-12 17:23:24 info: Get room started -2026-08-12 17:23:24 info: Get room executed successfully -2026-08-12 17:23:24 info: Get room started -2026-08-12 17:23:24 info: Get room executed successfully -2026-08-12 17:23:24 info: Get room started -2026-08-12 17:23:24 info: Get room executed successfully -2026-08-12 17:23:24 info: Get room started -2026-08-12 17:23:24 info: Get room executed successfully -2026-08-12 17:23:24 info: Get room started -2026-08-12 17:23:24 info: Get room executed successfully -2026-08-12 17:23:24 info: Get room started -2026-08-12 17:23:24 info: Get room executed successfully -2026-08-12 17:23:24 info: Get room started -2026-08-12 17:23:24 info: Get room executed successfully -2026-08-12 17:23:24 info: Woker loads loaded successfully -2026-08-12 17:23:24 info: Woker assigned succesfully -2026-08-12 17:23:24 info: Creation of router started -2026-08-12 17:23:24 info: Router created -2026-08-12 17:23:24 info: Creation of room successfully executed -2026-08-12 17:23:24 info: Get room started -2026-08-12 17:23:24 info: Get room executed successfully -2026-08-12 17:23:24 info: Broadcaster added to the room -2026-08-12 17:23:24 info: Room created successfully -2026-08-12 17:23:25 info: Create room started -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Woker loads loaded successfully -2026-08-12 17:23:25 info: Woker assigned succesfully -2026-08-12 17:23:25 info: Creation of router started -2026-08-12 17:23:25 info: Router created -2026-08-12 17:23:25 info: Creation of room successfully executed -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Broadcaster added to the room -2026-08-12 17:23:25 info: Room created successfully -2026-08-12 17:23:25 info: Create room started -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Woker loads loaded successfully -2026-08-12 17:23:25 info: Woker assigned succesfully -2026-08-12 17:23:25 info: Creation of router started -2026-08-12 17:23:25 info: Router created -2026-08-12 17:23:25 info: Creation of room successfully executed -2026-08-12 17:23:25 info: Get room started -2026-08-12 17:23:25 info: Get room executed successfully -2026-08-12 17:23:25 info: Broadcaster added to the room -2026-08-12 17:23:25 info: Room created successfully -2026-08-12 17:23:55 info: Create room started -2026-08-12 17:23:55 info: Get room started -2026-08-12 17:23:55 info: Get room executed successfully -2026-08-12 17:23:55 info: Get room started -2026-08-12 17:23:55 info: Get room executed successfully -2026-08-12 17:23:55 info: Get room started -2026-08-12 17:23:55 info: Get room executed successfully -2026-08-12 17:23:55 info: Get room started -2026-08-12 17:23:55 info: Get room executed successfully -2026-08-12 17:23:55 info: Get room started -2026-08-12 17:23:55 info: Get room executed successfully -2026-08-12 17:23:55 info: Get room started -2026-08-12 17:23:55 info: Get room executed successfully -2026-08-12 17:23:55 info: Get room started -2026-08-12 17:23:55 info: Get room executed successfully -2026-08-12 17:23:55 info: Get room started -2026-08-12 17:23:55 info: Get room executed successfully -2026-08-12 17:23:55 info: Get room started -2026-08-12 17:23:55 info: Get room executed successfully -2026-08-12 17:23:55 info: Get room started -2026-08-12 17:23:55 info: Get room executed successfully -2026-08-12 17:23:55 info: Get room started -2026-08-12 17:23:55 info: Get room executed successfully -2026-08-12 17:23:55 info: Get room started -2026-08-12 17:23:55 info: Get room executed successfully -2026-08-12 17:23:55 info: Woker loads loaded successfully -2026-08-12 17:23:55 info: Woker assigned succesfully -2026-08-12 17:23:55 info: Creation of router started -2026-08-12 17:23:55 info: Router created -2026-08-12 17:23:55 info: Creation of room successfully executed -2026-08-12 17:23:55 info: Get room started -2026-08-12 17:23:55 info: Get room executed successfully -2026-08-12 17:23:55 info: Broadcaster added to the room -2026-08-12 17:23:55 info: Room created successfully -2026-08-12 17:23:58 info: Get room started -2026-08-12 17:23:58 info: Get room executed successfully -2026-08-12 17:23:58 info: Rate limiting -2026-08-12 17:23:58 info: Rate limiting -2026-08-12 17:23:59 info: Get room started -2026-08-12 17:23:59 info: Get room executed successfully -2026-08-12 17:23:59 info: Rate limiting -2026-08-12 17:23:59 info: Rate limiting -2026-08-12 17:23:59 info: Get room started -2026-08-12 17:23:59 info: Get room executed successfully -2026-08-12 17:23:59 info: Rate limiting -2026-08-12 17:23:59 info: Rate limiting -2026-08-12 17:23:59 info: Get room started -2026-08-12 17:23:59 info: Get room executed successfully -2026-08-12 17:23:59 info: Rate limiting -2026-08-12 17:23:59 info: Rate limiting -2026-08-12 17:23:59 info: Get room started -2026-08-12 17:23:59 info: Get room executed successfully -2026-08-12 17:23:59 info: Rate limiting -2026-08-12 17:23:59 info: Rate limiting -2026-08-12 17:23:59 info: Get room started -2026-08-12 17:23:59 info: Get room executed successfully -2026-08-12 17:23:59 info: Rate limiting -2026-08-12 17:23:59 info: Rate limiting -2026-08-12 17:24:00 info: Get room started -2026-08-12 17:24:00 info: Get room executed successfully -2026-08-12 17:24:00 info: Rate limiting -2026-08-12 17:24:00 info: Rate limiting -2026-08-12 17:24:00 info: Get room started -2026-08-12 17:24:00 info: Get room executed successfully -2026-08-12 17:24:00 info: Rate limiting -2026-08-12 17:24:00 info: Rate limiting -2026-08-12 17:24:01 info: Get room started -2026-08-12 17:24:01 info: Get room executed successfully -2026-08-12 17:24:01 info: Rate limiting -2026-08-12 17:24:01 info: Rate limiting -2026-08-12 17:24:01 info: Get room started -2026-08-12 17:24:01 info: Get room executed successfully -2026-08-12 17:24:01 info: Rate limiting -2026-08-12 17:24:01 info: Rate limiting -2026-08-12 17:24:01 info: Get room started -2026-08-12 17:24:01 info: Get room executed successfully -2026-08-12 17:24:01 info: Rate limiting -2026-08-12 17:24:01 info: Rate limiting -2026-08-12 17:24:01 info: Get room started -2026-08-12 17:24:01 info: Get room executed successfully -2026-08-12 17:24:01 info: Rate limiting -2026-08-12 17:24:01 info: Rate limiting -2026-08-12 17:24:02 info: Get room started -2026-08-12 17:24:02 info: Get room executed successfully -2026-08-12 17:24:02 info: Rate limiting -2026-08-12 17:24:02 info: Rate limiting -2026-08-12 17:24:02 info: Get room started -2026-08-12 17:24:02 info: Get room executed successfully -2026-08-12 17:24:02 info: Rate limiting -2026-08-12 17:24:02 info: Rate limiting -2026-08-12 17:24:04 info: Get room started -2026-08-12 17:24:04 info: Get room executed successfully -2026-08-12 17:24:04 info: Rate limiting -2026-08-12 17:24:04 info: Rate limiting -2026-08-12 17:26:48 info: Create room started -2026-08-12 17:26:48 info: Get room started -2026-08-12 17:26:48 info: Get room executed successfully -2026-08-12 17:26:48 info: Get room started -2026-08-12 17:26:48 info: Get room executed successfully -2026-08-12 17:26:48 info: Get room started -2026-08-12 17:26:48 info: Get room executed successfully -2026-08-12 17:26:48 info: Get room started -2026-08-12 17:26:48 info: Get room executed successfully -2026-08-12 17:26:48 info: Get room started -2026-08-12 17:26:48 info: Get room executed successfully -2026-08-12 17:26:48 info: Get room started -2026-08-12 17:26:48 info: Get room executed successfully -2026-08-12 17:26:48 info: Get room started -2026-08-12 17:26:48 info: Get room executed successfully -2026-08-12 17:26:48 info: Get room started -2026-08-12 17:26:48 info: Get room executed successfully -2026-08-12 17:26:48 info: Get room started -2026-08-12 17:26:48 info: Get room executed successfully -2026-08-12 17:26:48 info: Get room started -2026-08-12 17:26:48 info: Get room executed successfully -2026-08-12 17:26:48 info: Get room started -2026-08-12 17:26:48 info: Get room executed successfully -2026-08-12 17:26:48 info: Get room started -2026-08-12 17:26:48 info: Get room executed successfully -2026-08-12 17:26:48 info: Get room started -2026-08-12 17:26:48 info: Get room executed successfully -2026-08-12 17:26:48 info: Woker loads loaded successfully -2026-08-12 17:26:48 info: Woker assigned succesfully -2026-08-12 17:26:48 info: Creation of router started -2026-08-12 17:26:48 info: Router created -2026-08-12 17:26:48 info: Creation of room successfully executed -2026-08-12 17:26:48 info: Get room started -2026-08-12 17:26:48 info: Get room executed successfully -2026-08-12 17:26:48 info: Broadcaster added to the room -2026-08-12 17:26:48 info: Room created successfully -2026-08-12 17:27:27 info: Create room started -2026-08-12 17:27:27 info: Get room started -2026-08-12 17:27:27 info: Get room executed successfully -2026-08-12 17:27:27 info: Get room started -2026-08-12 17:27:27 info: Get room executed successfully -2026-08-12 17:27:27 info: Get room started -2026-08-12 17:27:27 info: Get room executed successfully -2026-08-12 17:27:27 info: Get room started -2026-08-12 17:27:27 info: Get room executed successfully -2026-08-12 17:27:27 info: Get room started -2026-08-12 17:27:27 info: Get room executed successfully -2026-08-12 17:27:27 info: Get room started -2026-08-12 17:27:27 info: Get room executed successfully -2026-08-12 17:27:27 info: Get room started -2026-08-12 17:27:27 info: Get room executed successfully -2026-08-12 17:27:27 info: Get room started -2026-08-12 17:27:27 info: Get room executed successfully -2026-08-12 17:27:27 info: Get room started -2026-08-12 17:27:27 info: Get room executed successfully -2026-08-12 17:27:27 info: Get room started -2026-08-12 17:27:27 info: Get room executed successfully -2026-08-12 17:27:27 info: Get room started -2026-08-12 17:27:27 info: Get room executed successfully -2026-08-12 17:27:27 info: Get room started -2026-08-12 17:27:27 info: Get room executed successfully -2026-08-12 17:27:27 info: Get room started -2026-08-12 17:27:27 info: Get room executed successfully -2026-08-12 17:27:27 info: Get room started -2026-08-12 17:27:27 info: Get room executed successfully -2026-08-12 17:27:27 info: Woker loads loaded successfully -2026-08-12 17:27:27 info: Woker assigned succesfully -2026-08-12 17:27:27 info: Creation of router started -2026-08-12 17:27:27 info: Router created -2026-08-12 17:27:27 info: Creation of room successfully executed -2026-08-12 17:27:27 info: Get room started -2026-08-12 17:27:27 info: Get room executed successfully -2026-08-12 17:27:27 info: Broadcaster added to the room -2026-08-12 17:27:27 info: Room created successfully -2026-08-12 17:29:07 info: Create room started -2026-08-12 17:29:07 info: Get room started -2026-08-12 17:29:07 info: Get room executed successfully -2026-08-12 17:29:07 info: Get room started -2026-08-12 17:29:07 info: Get room executed successfully -2026-08-12 17:29:07 info: Get room started -2026-08-12 17:29:07 info: Get room executed successfully -2026-08-12 17:29:07 info: Get room started -2026-08-12 17:29:07 info: Get room executed successfully -2026-08-12 17:29:07 info: Get room started -2026-08-12 17:29:07 info: Get room executed successfully -2026-08-12 17:29:07 info: Get room started -2026-08-12 17:29:07 info: Get room executed successfully -2026-08-12 17:29:07 info: Get room started -2026-08-12 17:29:07 info: Get room executed successfully -2026-08-12 17:29:07 info: Get room started -2026-08-12 17:29:07 info: Get room executed successfully -2026-08-12 17:29:07 info: Get room started -2026-08-12 17:29:07 info: Get room executed successfully -2026-08-12 17:29:07 info: Get room started -2026-08-12 17:29:07 info: Get room executed successfully -2026-08-12 17:29:07 info: Get room started -2026-08-12 17:29:07 info: Get room executed successfully -2026-08-12 17:29:07 info: Get room started -2026-08-12 17:29:07 info: Get room executed successfully -2026-08-12 17:29:07 info: Get room started -2026-08-12 17:29:07 info: Get room executed successfully -2026-08-12 17:29:07 info: Get room started -2026-08-12 17:29:07 info: Get room executed successfully -2026-08-12 17:29:07 info: Get room started -2026-08-12 17:29:07 info: Get room executed successfully -2026-08-12 17:29:07 info: Woker loads loaded successfully -2026-08-12 17:29:07 info: Woker assigned succesfully -2026-08-12 17:29:07 info: Creation of router started -2026-08-12 17:29:07 info: Router created -2026-08-12 17:29:07 info: Creation of room successfully executed -2026-08-12 17:29:07 info: Get room started -2026-08-12 17:29:07 info: Get room executed successfully -2026-08-12 17:29:07 info: Broadcaster added to the room -2026-08-12 17:29:07 info: Room created successfully -2026-08-12 17:30:31 info: Create room started -2026-08-12 17:30:31 info: Get room started -2026-08-12 17:30:31 info: Get room executed successfully -2026-08-12 17:30:31 info: Get room started -2026-08-12 17:30:31 info: Get room executed successfully -2026-08-12 17:30:31 info: Get room started -2026-08-12 17:30:31 info: Get room executed successfully -2026-08-12 17:30:31 info: Get room started -2026-08-12 17:30:31 info: Get room executed successfully -2026-08-12 17:30:31 info: Get room started -2026-08-12 17:30:31 info: Get room executed successfully -2026-08-12 17:30:31 info: Get room started -2026-08-12 17:30:31 info: Get room executed successfully -2026-08-12 17:30:31 info: Get room started -2026-08-12 17:30:31 info: Get room executed successfully -2026-08-12 17:30:31 info: Get room started -2026-08-12 17:30:31 info: Get room executed successfully -2026-08-12 17:30:31 info: Get room started -2026-08-12 17:30:31 info: Get room executed successfully -2026-08-12 17:30:31 info: Get room started -2026-08-12 17:30:31 info: Get room executed successfully -2026-08-12 17:30:31 info: Get room started -2026-08-12 17:30:31 info: Get room executed successfully -2026-08-12 17:30:31 info: Get room started -2026-08-12 17:30:31 info: Get room executed successfully -2026-08-12 17:30:31 info: Get room started -2026-08-12 17:30:31 info: Get room executed successfully -2026-08-12 17:30:31 info: Get room started -2026-08-12 17:30:31 info: Get room executed successfully -2026-08-12 17:30:31 info: Get room started -2026-08-12 17:30:31 info: Get room executed successfully -2026-08-12 17:30:31 info: Get room started -2026-08-12 17:30:31 info: Get room executed successfully -2026-08-12 17:30:31 info: Woker loads loaded successfully -2026-08-12 17:30:31 info: Woker assigned succesfully -2026-08-12 17:30:31 info: Creation of router started -2026-08-12 17:30:31 info: Router created -2026-08-12 17:30:31 info: Creation of room successfully executed -2026-08-12 17:30:31 info: Get room started -2026-08-12 17:30:31 info: Get room executed successfully -2026-08-12 17:30:31 info: Broadcaster added to the room -2026-08-12 17:30:31 info: Room created successfully -2026-08-12 17:32:19 info: Create room started -2026-08-12 17:32:19 info: Get room started -2026-08-12 17:32:19 info: Get room executed successfully -2026-08-12 17:32:19 info: Get room started -2026-08-12 17:32:19 info: Get room executed successfully -2026-08-12 17:32:19 info: Get room started -2026-08-12 17:32:19 info: Get room executed successfully -2026-08-12 17:32:19 info: Get room started -2026-08-12 17:32:19 info: Get room executed successfully -2026-08-12 17:32:19 info: Get room started -2026-08-12 17:32:19 info: Get room executed successfully -2026-08-12 17:32:19 info: Get room started -2026-08-12 17:32:19 info: Get room executed successfully -2026-08-12 17:32:19 info: Get room started -2026-08-12 17:32:19 info: Get room executed successfully -2026-08-12 17:32:19 info: Get room started -2026-08-12 17:32:19 info: Get room executed successfully -2026-08-12 17:32:19 info: Get room started -2026-08-12 17:32:19 info: Get room executed successfully -2026-08-12 17:32:19 info: Get room started -2026-08-12 17:32:19 info: Get room executed successfully -2026-08-12 17:32:19 info: Get room started -2026-08-12 17:32:19 info: Get room executed successfully -2026-08-12 17:32:19 info: Get room started -2026-08-12 17:32:19 info: Get room executed successfully -2026-08-12 17:32:19 info: Get room started -2026-08-12 17:32:19 info: Get room executed successfully -2026-08-12 17:32:19 info: Get room started -2026-08-12 17:32:19 info: Get room executed successfully -2026-08-12 17:32:19 info: Get room started -2026-08-12 17:32:19 info: Get room executed successfully -2026-08-12 17:32:19 info: Get room started -2026-08-12 17:32:19 info: Get room executed successfully -2026-08-12 17:32:19 info: Get room started -2026-08-12 17:32:19 info: Get room executed successfully -2026-08-12 17:32:19 info: Woker loads loaded successfully -2026-08-12 17:32:19 info: Woker assigned succesfully -2026-08-12 17:32:19 info: Creation of router started -2026-08-12 17:32:19 info: Router created -2026-08-12 17:32:19 info: Creation of room successfully executed -2026-08-12 17:32:19 info: Get room started -2026-08-12 17:32:19 info: Get room executed successfully -2026-08-12 17:32:19 info: Broadcaster added to the room -2026-08-12 17:32:19 info: Room created successfully -2026-08-12 17:34:59 info: Create room started -2026-08-12 17:34:59 info: Get room started -2026-08-12 17:34:59 info: Get room executed successfully -2026-08-12 17:34:59 info: Get room started -2026-08-12 17:34:59 info: Get room executed successfully -2026-08-12 17:34:59 info: Get room started -2026-08-12 17:34:59 info: Get room executed successfully -2026-08-12 17:34:59 info: Get room started -2026-08-12 17:34:59 info: Get room executed successfully -2026-08-12 17:34:59 info: Get room started -2026-08-12 17:34:59 info: Get room executed successfully -2026-08-12 17:34:59 info: Get room started -2026-08-12 17:34:59 info: Get room executed successfully -2026-08-12 17:34:59 info: Get room started -2026-08-12 17:34:59 info: Get room executed successfully -2026-08-12 17:34:59 info: Get room started -2026-08-12 17:34:59 info: Get room executed successfully -2026-08-12 17:34:59 info: Get room started -2026-08-12 17:34:59 info: Get room executed successfully -2026-08-12 17:34:59 info: Get room started -2026-08-12 17:34:59 info: Get room executed successfully -2026-08-12 17:34:59 info: Get room started -2026-08-12 17:34:59 info: Get room executed successfully -2026-08-12 17:34:59 info: Get room started -2026-08-12 17:34:59 info: Get room executed successfully -2026-08-12 17:34:59 info: Get room started -2026-08-12 17:34:59 info: Get room executed successfully -2026-08-12 17:34:59 info: Get room started -2026-08-12 17:34:59 info: Get room executed successfully -2026-08-12 17:34:59 info: Get room started -2026-08-12 17:34:59 info: Get room executed successfully -2026-08-12 17:34:59 info: Get room started -2026-08-12 17:34:59 info: Get room executed successfully -2026-08-12 17:34:59 info: Get room started -2026-08-12 17:34:59 info: Get room executed successfully -2026-08-12 17:34:59 info: Get room started -2026-08-12 17:34:59 info: Get room executed successfully -2026-08-12 17:34:59 info: Woker loads loaded successfully -2026-08-12 17:34:59 info: Woker assigned succesfully -2026-08-12 17:34:59 info: Creation of router started -2026-08-12 17:34:59 info: Router created -2026-08-12 17:34:59 info: Creation of room successfully executed -2026-08-12 17:34:59 info: Get room started -2026-08-12 17:34:59 info: Get room executed successfully -2026-08-12 17:34:59 info: Broadcaster added to the room -2026-08-12 17:34:59 info: Room created successfully -2026-08-12 17:35:05 info: Get room started -2026-08-12 17:35:05 info: Get room executed successfully -2026-08-12 17:35:05 info: Rate limiting -2026-08-12 17:35:05 info: Rate limiting -2026-08-12 17:35:06 info: Get room started -2026-08-12 17:35:06 info: Get room executed successfully -2026-08-12 17:35:06 info: Rate limiting -2026-08-12 17:35:06 info: Rate limiting -2026-08-12 17:35:06 info: Get room started -2026-08-12 17:35:06 info: Get room executed successfully -2026-08-12 17:35:06 info: Rate limiting -2026-08-12 17:35:06 info: Rate limiting -2026-08-12 17:35:07 info: Get room started -2026-08-12 17:35:07 info: Get room executed successfully -2026-08-12 17:35:07 info: Rate limiting -2026-08-12 17:35:07 info: Rate limiting -2026-08-12 17:35:07 info: Get room started -2026-08-12 17:35:07 info: Get room executed successfully -2026-08-12 17:35:07 info: Rate limiting -2026-08-12 17:35:07 info: Rate limiting -2026-08-12 17:35:07 info: Get room started -2026-08-12 17:35:07 info: Get room executed successfully -2026-08-12 17:35:07 info: Rate limiting -2026-08-12 17:35:07 info: Rate limiting -2026-08-12 17:35:07 info: Get room started -2026-08-12 17:35:07 info: Get room executed successfully -2026-08-12 17:35:07 info: Rate limiting -2026-08-12 17:35:07 info: Rate limiting -2026-08-12 17:35:07 info: Get room started -2026-08-12 17:35:07 info: Get room executed successfully -2026-08-12 17:35:07 info: Rate limiting -2026-08-12 17:35:07 info: Rate limiting -2026-08-12 17:35:07 info: Get room started -2026-08-12 17:35:07 info: Get room executed successfully -2026-08-12 17:35:07 info: Rate limiting -2026-08-12 17:35:07 info: Rate limiting -2026-08-12 17:35:07 info: Get room started -2026-08-12 17:35:07 info: Get room executed successfully -2026-08-12 17:35:07 info: Rate limiting -2026-08-12 17:35:07 info: Rate limiting -2026-08-12 17:35:08 info: Get room started -2026-08-12 17:35:08 info: Get room executed successfully -2026-08-12 17:35:08 info: Rate limiting -2026-08-12 17:35:08 info: Rate limiting -2026-08-12 17:35:08 info: Get room started -2026-08-12 17:35:08 info: Get room executed successfully -2026-08-12 17:35:08 info: Rate limiting -2026-08-12 17:35:08 info: Rate limiting -2026-08-12 17:35:08 info: Get room started -2026-08-12 17:35:08 info: Get room executed successfully -2026-08-12 17:35:08 info: Rate limiting -2026-08-12 17:35:08 info: Rate limiting -2026-08-12 17:35:08 info: Get room started -2026-08-12 17:35:08 info: Get room executed successfully -2026-08-12 17:35:08 info: Rate limiting -2026-08-12 17:35:08 info: Rate limiting -2026-08-12 17:35:08 info: Get room started -2026-08-12 17:35:08 info: Get room executed successfully -2026-08-12 17:35:08 info: Rate limiting -2026-08-12 17:35:08 info: Rate limiting -2026-08-12 17:35:08 info: Get room started -2026-08-12 17:35:08 info: Get room executed successfully -2026-08-12 17:35:08 info: Rate limiting -2026-08-12 17:35:08 info: Rate limiting -2026-08-12 17:35:09 info: Get room started -2026-08-12 17:35:09 info: Get room executed successfully -2026-08-12 17:35:09 info: Rate limiting -2026-08-12 17:35:09 info: Rate limiting -2026-08-12 17:35:09 info: Get room started -2026-08-12 17:35:09 info: Get room executed successfully -2026-08-12 17:35:09 info: Rate limiting -2026-08-12 17:35:09 info: Rate limiting -2026-08-12 17:35:09 info: Get room started -2026-08-12 17:35:09 info: Get room executed successfully -2026-08-12 17:35:09 info: Rate limiting -2026-08-12 17:35:09 info: Rate limiting -2026-08-12 17:35:09 info: Get room started -2026-08-12 17:35:09 info: Get room executed successfully -2026-08-12 17:35:09 info: Rate limiting -2026-08-12 17:35:09 info: Rate limiting -2026-08-12 17:35:09 info: Get room started -2026-08-12 17:35:09 info: Get room executed successfully -2026-08-12 17:35:09 info: Rate limiting -2026-08-12 17:35:09 info: Rate limiting -2026-08-12 17:35:09 info: Get room started -2026-08-12 17:35:09 info: Get room executed successfully -2026-08-12 17:35:09 info: Rate limiting -2026-08-12 17:35:09 info: Rate limiting -2026-08-12 17:35:10 info: Get room started -2026-08-12 17:35:10 info: Get room executed successfully -2026-08-12 17:35:10 info: Rate limiting -2026-08-12 17:35:10 info: Rate limiting -2026-08-12 17:35:10 info: Get room started -2026-08-12 17:35:10 info: Get room executed successfully -2026-08-12 17:35:10 info: Rate limiting -2026-08-12 17:35:10 info: Rate limiting -2026-08-12 17:35:10 info: Get room started -2026-08-12 17:35:10 info: Get room executed successfully -2026-08-12 17:35:10 info: Rate limiting -2026-08-12 17:35:10 info: Rate limiting -2026-08-12 17:35:10 info: Get room started -2026-08-12 17:35:10 info: Get room executed successfully -2026-08-12 17:35:10 info: Rate limiting -2026-08-12 17:35:10 info: Rate limiting -2026-08-12 17:35:10 info: Get room started -2026-08-12 17:35:10 info: Get room executed successfully -2026-08-12 17:35:10 info: Rate limiting -2026-08-12 17:35:10 info: Rate limiting -2026-08-12 17:35:11 info: Get room started -2026-08-12 17:35:11 info: Get room executed successfully -2026-08-12 17:35:11 info: Rate limiting -2026-08-12 17:35:11 info: Rate limiting -2026-08-12 17:35:11 info: Get room started -2026-08-12 17:35:11 info: Get room executed successfully -2026-08-12 17:35:11 info: Rate limiting -2026-08-12 17:35:11 info: Rate limiting -2026-08-12 17:35:11 info: Get room started -2026-08-12 17:35:11 info: Get room executed successfully -2026-08-12 17:35:11 info: Rate limiting -2026-08-12 17:35:11 info: Rate limiting -2026-08-12 17:35:11 info: Get room started -2026-08-12 17:35:11 info: Get room executed successfully -2026-08-12 17:35:11 info: Rate limiting -2026-08-12 17:35:11 info: Rate limiting -2026-08-12 17:35:11 info: Get room started -2026-08-12 17:35:11 info: Get room executed successfully -2026-08-12 17:35:11 info: Rate limiting -2026-08-12 17:35:11 info: Rate limiting -2026-08-12 17:35:12 info: Get room started -2026-08-12 17:35:12 info: Get room executed successfully -2026-08-12 17:35:12 info: Rate limiting -2026-08-12 17:35:12 info: Rate limiting -2026-08-12 17:35:12 info: Get room started -2026-08-12 17:35:12 info: Get room executed successfully -2026-08-12 17:35:12 info: Rate limiting -2026-08-12 17:35:12 info: Rate limiting -2026-08-12 17:35:12 info: Get room started -2026-08-12 17:35:12 info: Get room executed successfully -2026-08-12 17:35:12 info: Rate limiting -2026-08-12 17:35:12 info: Rate limiting -2026-08-12 17:35:12 info: Get room started -2026-08-12 17:35:12 info: Get room executed successfully -2026-08-12 17:35:12 info: Rate limiting -2026-08-12 17:35:12 info: Rate limiting -2026-08-12 17:35:12 info: Get room started -2026-08-12 17:35:12 info: Get room executed successfully -2026-08-12 17:35:12 info: Rate limiting -2026-08-12 17:35:12 info: Rate limiting -2026-08-12 17:35:13 info: Get room started -2026-08-12 17:35:13 info: Get room executed successfully -2026-08-12 17:35:13 info: Rate limiting -2026-08-12 17:35:13 info: Rate limiting -2026-08-12 17:35:13 info: Get room started -2026-08-12 17:35:13 info: Get room executed successfully -2026-08-12 17:35:13 info: Rate limiting -2026-08-12 17:35:13 info: Rate limiting -2026-08-12 17:35:13 info: Get room started -2026-08-12 17:35:13 info: Get room executed successfully -2026-08-12 17:35:13 info: Rate limiting -2026-08-12 17:35:13 info: Rate limiting -2026-08-12 17:35:14 info: Get room started -2026-08-12 17:35:14 info: Get room executed successfully -2026-08-12 17:35:14 info: Rate limiting -2026-08-12 17:35:14 info: Rate limiting -2026-08-12 17:35:14 info: Get room started -2026-08-12 17:35:14 info: Get room executed successfully -2026-08-12 17:35:14 info: Rate limiting -2026-08-12 17:35:14 info: Rate limiting -2026-08-12 17:35:14 info: Get room started -2026-08-12 17:35:14 info: Get room executed successfully -2026-08-12 17:35:14 info: Rate limiting -2026-08-12 17:35:14 info: Rate limiting -2026-08-12 17:35:14 info: Get room started -2026-08-12 17:35:14 info: Get room executed successfully -2026-08-12 17:35:14 info: Rate limiting -2026-08-12 17:35:14 info: Rate limiting -2026-08-12 17:35:52 info: Create room started -2026-08-12 17:35:52 info: Get room started -2026-08-12 17:35:52 info: Get room executed successfully -2026-08-12 17:35:52 info: Get room started -2026-08-12 17:35:52 info: Get room executed successfully -2026-08-12 17:35:52 info: Get room started -2026-08-12 17:35:52 info: Get room executed successfully -2026-08-12 17:35:52 info: Get room started -2026-08-12 17:35:52 info: Get room executed successfully -2026-08-12 17:35:52 info: Get room started -2026-08-12 17:35:52 info: Get room executed successfully -2026-08-12 17:35:52 info: Get room started -2026-08-12 17:35:52 info: Get room executed successfully -2026-08-12 17:35:52 info: Get room started -2026-08-12 17:35:52 info: Get room executed successfully -2026-08-12 17:35:52 info: Get room started -2026-08-12 17:35:52 info: Get room executed successfully -2026-08-12 17:35:52 info: Get room started -2026-08-12 17:35:52 info: Get room executed successfully -2026-08-12 17:35:52 info: Get room started -2026-08-12 17:35:52 info: Get room executed successfully -2026-08-12 17:35:52 info: Get room started -2026-08-12 17:35:52 info: Get room executed successfully -2026-08-12 17:35:52 info: Get room started -2026-08-12 17:35:52 info: Get room executed successfully -2026-08-12 17:35:52 info: Get room started -2026-08-12 17:35:52 info: Get room executed successfully -2026-08-12 17:35:52 info: Get room started -2026-08-12 17:35:52 info: Get room executed successfully -2026-08-12 17:35:52 info: Get room started -2026-08-12 17:35:52 info: Get room executed successfully -2026-08-12 17:35:52 info: Get room started -2026-08-12 17:35:52 info: Get room executed successfully -2026-08-12 17:35:52 info: Get room started -2026-08-12 17:35:52 info: Get room executed successfully -2026-08-12 17:35:52 info: Get room started -2026-08-12 17:35:52 info: Get room executed successfully -2026-08-12 17:35:52 info: Get room started -2026-08-12 17:35:52 info: Get room executed successfully -2026-08-12 17:35:52 info: Woker loads loaded successfully -2026-08-12 17:35:52 info: Woker assigned succesfully -2026-08-12 17:35:52 info: Creation of router started -2026-08-12 17:35:52 info: Router created -2026-08-12 17:35:52 info: Creation of room successfully executed -2026-08-12 17:35:52 info: Get room started -2026-08-12 17:35:52 info: Get room executed successfully -2026-08-12 17:35:52 info: Broadcaster added to the room -2026-08-12 17:35:52 info: Room created successfully -2026-08-12 17:35:58 info: Get room started -2026-08-12 17:35:58 info: Get room executed successfully -2026-08-12 17:35:58 info: Rate limiting -2026-08-12 17:35:58 info: Rate limiting -2026-08-12 17:36:35 info: Create room started -2026-08-12 17:36:35 info: Get room started -2026-08-12 17:36:35 info: Get room executed successfully -2026-08-12 17:36:35 info: Get room started -2026-08-12 17:36:35 info: Get room executed successfully -2026-08-12 17:36:35 info: Get room started -2026-08-12 17:36:35 info: Get room executed successfully -2026-08-12 17:36:35 info: Get room started -2026-08-12 17:36:35 info: Get room executed successfully -2026-08-12 17:36:35 info: Get room started -2026-08-12 17:36:35 info: Get room executed successfully -2026-08-12 17:36:35 info: Get room started -2026-08-12 17:36:35 info: Get room executed successfully -2026-08-12 17:36:35 info: Get room started -2026-08-12 17:36:35 info: Get room executed successfully -2026-08-12 17:36:35 info: Get room started -2026-08-12 17:36:35 info: Get room executed successfully -2026-08-12 17:36:35 info: Get room started -2026-08-12 17:36:35 info: Get room executed successfully -2026-08-12 17:36:35 info: Get room started -2026-08-12 17:36:35 info: Get room executed successfully -2026-08-12 17:36:35 info: Get room started -2026-08-12 17:36:35 info: Get room executed successfully -2026-08-12 17:36:35 info: Get room started -2026-08-12 17:36:35 info: Get room executed successfully -2026-08-12 17:36:35 info: Get room started -2026-08-12 17:36:35 info: Get room executed successfully -2026-08-12 17:36:35 info: Get room started -2026-08-12 17:36:35 info: Get room executed successfully -2026-08-12 17:36:35 info: Get room started -2026-08-12 17:36:35 info: Get room executed successfully -2026-08-12 17:36:35 info: Get room started -2026-08-12 17:36:35 info: Get room executed successfully -2026-08-12 17:36:35 info: Get room started -2026-08-12 17:36:35 info: Get room executed successfully -2026-08-12 17:36:35 info: Get room started -2026-08-12 17:36:35 info: Get room executed successfully -2026-08-12 17:36:35 info: Get room started -2026-08-12 17:36:35 info: Get room executed successfully -2026-08-12 17:36:35 info: Get room started -2026-08-12 17:36:35 info: Get room executed successfully -2026-08-12 17:36:35 info: Woker loads loaded successfully -2026-08-12 17:36:35 info: Woker assigned succesfully -2026-08-12 17:36:35 info: Creation of router started -2026-08-12 17:36:35 info: Router created -2026-08-12 17:36:35 info: Creation of room successfully executed -2026-08-12 17:36:35 info: Get room started -2026-08-12 17:36:35 info: Get room executed successfully -2026-08-12 17:36:35 info: Broadcaster added to the room -2026-08-12 17:36:35 info: Room created successfully -2026-08-12 17:40:27 info: Create room started -2026-08-12 17:40:27 info: Get room started -2026-08-12 17:40:27 info: Get room executed successfully -2026-08-12 17:40:27 info: Get room started -2026-08-12 17:40:27 info: Get room executed successfully -2026-08-12 17:40:27 info: Get room started -2026-08-12 17:40:27 info: Get room executed successfully -2026-08-12 17:40:27 info: Get room started -2026-08-12 17:40:27 info: Get room executed successfully -2026-08-12 17:40:27 info: Get room started -2026-08-12 17:40:27 info: Get room executed successfully -2026-08-12 17:40:27 info: Get room started -2026-08-12 17:40:27 info: Get room executed successfully -2026-08-12 17:40:27 info: Get room started -2026-08-12 17:40:27 info: Get room executed successfully -2026-08-12 17:40:27 info: Get room started -2026-08-12 17:40:27 info: Get room executed successfully -2026-08-12 17:40:27 info: Get room started -2026-08-12 17:40:27 info: Get room executed successfully -2026-08-12 17:40:27 info: Get room started -2026-08-12 17:40:27 info: Get room executed successfully -2026-08-12 17:40:27 info: Get room started -2026-08-12 17:40:27 info: Get room executed successfully -2026-08-12 17:40:27 info: Get room started -2026-08-12 17:40:27 info: Get room executed successfully -2026-08-12 17:40:27 info: Get room started -2026-08-12 17:40:27 info: Get room executed successfully -2026-08-12 17:40:27 info: Get room started -2026-08-12 17:40:27 info: Get room executed successfully -2026-08-12 17:40:27 info: Get room started -2026-08-12 17:40:27 info: Get room executed successfully -2026-08-12 17:40:27 info: Get room started -2026-08-12 17:40:27 info: Get room executed successfully -2026-08-12 17:40:27 info: Get room started -2026-08-12 17:40:27 info: Get room executed successfully -2026-08-12 17:40:27 info: Get room started -2026-08-12 17:40:27 info: Get room executed successfully -2026-08-12 17:40:27 info: Get room started -2026-08-12 17:40:27 info: Get room executed successfully -2026-08-12 17:40:27 info: Get room started -2026-08-12 17:40:27 info: Get room executed successfully -2026-08-12 17:40:27 info: Get room started -2026-08-12 17:40:27 info: Get room executed successfully -2026-08-12 17:40:27 info: Woker loads loaded successfully -2026-08-12 17:40:27 info: Woker assigned succesfully -2026-08-12 17:40:27 info: Creation of router started -2026-08-12 17:40:27 info: Router created -2026-08-12 17:40:27 info: Creation of room successfully executed -2026-08-12 17:40:27 info: Get room started -2026-08-12 17:40:27 info: Get room executed successfully -2026-08-12 17:40:27 info: Broadcaster added to the room -2026-08-12 17:40:27 info: Room created successfully -2026-08-12 17:40:55 info: SignUp started -2026-08-12 17:40:56 info: SignUp completed -2026-08-12 17:40:56 info: [node-1] Client connected: KVetIEz32U6gYYNzAAAD -2026-08-12 17:42:01 info: Join as viewer listner started -2026-08-12 17:42:01 info: Rate limiting -2026-08-12 17:42:01 info: Rate limiting -2026-08-12 17:42:01 info: Get room started -2026-08-12 17:42:01 info: Get room executed successfully -2026-08-12 17:42:01 info: Fetching of router started -2026-08-12 17:42:01 info: Fetching of router executed successfully -2026-08-12 17:42:01 info: Get room started -2026-08-12 17:42:01 info: Get room executed successfully -2026-08-12 17:42:01 info: Viewer joined the room -2026-08-12 17:42:01 info: Join viewer listner successfully executed -2026-08-12 17:42:03 info: Join as viewer listner started -2026-08-12 17:42:03 info: Rate limiting -2026-08-12 17:42:03 info: Rate limiting -2026-08-12 17:42:03 info: Get room started -2026-08-12 17:42:03 info: Get room executed successfully -2026-08-12 17:42:03 info: Fetching of router started -2026-08-12 17:42:03 info: Fetching of router executed successfully -2026-08-12 17:42:03 info: Get room started -2026-08-12 17:42:03 info: Get room executed successfully -2026-08-12 17:42:03 info: Viewer joined the room -2026-08-12 17:42:03 info: Join viewer listner successfully executed -2026-08-12 17:42:21 info: Get room started -2026-08-12 17:42:21 info: Get room executed successfully -2026-08-12 17:42:23 info: Get room started -2026-08-12 17:42:23 info: Get room executed successfully -2026-08-12 17:42:29 info: Join as viewer listner started -2026-08-12 17:42:29 info: Rate limiting -2026-08-12 17:42:29 info: Rate limiting -2026-08-12 17:42:29 info: Get room started -2026-08-12 17:42:29 info: Get room executed successfully -2026-08-12 17:42:29 info: Fetching of router started -2026-08-12 17:42:29 info: Fetching of router executed successfully -2026-08-12 17:42:29 info: Get room started -2026-08-12 17:42:29 info: Get room executed successfully -2026-08-12 17:42:29 info: Viewer joined the room -2026-08-12 17:42:29 info: Join viewer listner successfully executed -2026-08-12 17:42:40 info: Join as viewer listner started -2026-08-12 17:42:40 info: Rate limiting -2026-08-12 17:42:40 info: Rate limiting -2026-08-12 17:42:40 info: Get room started -2026-08-12 17:42:40 info: Get room executed successfully -2026-08-12 17:42:40 info: Fetching of router started -2026-08-12 17:42:40 info: Fetching of router executed successfully -2026-08-12 17:42:40 info: Get room started -2026-08-12 17:42:40 info: Get room executed successfully -2026-08-12 17:42:40 info: Viewer joined the room -2026-08-12 17:42:40 info: Join viewer listner successfully executed -2026-08-12 17:42:41 info: Get room started -2026-08-12 17:42:41 info: Get room executed successfully -2026-08-12 17:42:41 info: Join as viewer listner started -2026-08-12 17:42:41 info: Rate limiting -2026-08-12 17:42:41 info: Rate limiting -2026-08-12 17:42:41 info: Get room started -2026-08-12 17:42:41 info: Get room executed successfully -2026-08-12 17:42:41 info: Fetching of router started -2026-08-12 17:42:41 info: Fetching of router executed successfully -2026-08-12 17:42:41 info: Get room started -2026-08-12 17:42:41 info: Get room executed successfully -2026-08-12 17:42:41 info: Viewer joined the room -2026-08-12 17:42:41 info: Join viewer listner successfully executed -2026-08-12 17:42:43 info: Join as viewer listner started -2026-08-12 17:42:43 info: Rate limiting -2026-08-12 17:42:43 info: Rate limiting -2026-08-12 17:42:43 info: Get room started -2026-08-12 17:42:43 info: Get room executed successfully -2026-08-12 17:42:43 info: Fetching of router started -2026-08-12 17:42:43 info: Fetching of router executed successfully -2026-08-12 17:42:43 info: Get room started -2026-08-12 17:42:43 info: Get room executed successfully -2026-08-12 17:42:43 info: Viewer joined the room -2026-08-12 17:42:43 info: Join viewer listner successfully executed -2026-08-12 17:42:43 info: Get room started -2026-08-12 17:42:43 info: Get room executed successfully -2026-08-12 17:42:49 info: Get room started -2026-08-12 17:42:49 info: Get room executed successfully -2026-08-12 17:43:00 info: Get room started -2026-08-12 17:43:00 info: Get room executed successfully -2026-08-12 17:43:01 info: Get room started -2026-08-12 17:43:01 info: Get room executed successfully -2026-08-12 17:43:01 info: Get room started -2026-08-12 17:43:01 info: Get room executed successfully -2026-08-12 17:43:03 info: Get room started -2026-08-12 17:43:03 info: Get room executed successfully -2026-08-12 17:43:03 info: Get room started -2026-08-12 17:43:03 info: Get room executed successfully -2026-08-12 17:43:05 info: Join as viewer listner started -2026-08-12 17:43:05 info: Rate limiting -2026-08-12 17:43:05 info: Rate limiting -2026-08-12 17:43:05 info: Get room started -2026-08-12 17:43:05 info: Get room executed successfully -2026-08-12 17:43:05 info: Fetching of router started -2026-08-12 17:43:05 info: Fetching of router executed successfully -2026-08-12 17:43:05 info: Get room started -2026-08-12 17:43:05 info: Get room executed successfully -2026-08-12 17:43:05 info: Viewer joined the room -2026-08-12 17:43:05 info: Join viewer listner successfully executed -2026-08-12 17:43:07 info: Join as viewer listner started -2026-08-12 17:43:07 info: Rate limiting -2026-08-12 17:43:07 info: Rate limiting -2026-08-12 17:43:07 info: Get room started -2026-08-12 17:43:07 info: Get room executed successfully -2026-08-12 17:43:07 info: Fetching of router started -2026-08-12 17:43:07 info: Fetching of router executed successfully -2026-08-12 17:43:07 info: Get room started -2026-08-12 17:43:07 info: Get room executed successfully -2026-08-12 17:43:07 info: Viewer joined the room -2026-08-12 17:43:07 info: Join viewer listner successfully executed -2026-08-12 17:43:09 info: Get room started -2026-08-12 17:43:09 info: Get room executed successfully -2026-08-12 17:43:20 info: Get room started -2026-08-12 17:43:20 info: Get room executed successfully -2026-08-12 17:43:21 info: Get room started -2026-08-12 17:43:21 info: Get room executed successfully -2026-08-12 17:43:21 info: Get room started -2026-08-12 17:43:21 info: Get room executed successfully -2026-08-12 17:43:23 info: Get room started -2026-08-12 17:43:23 info: Get room executed successfully -2026-08-12 17:43:24 info: Get room started -2026-08-12 17:43:24 info: Get room executed successfully -2026-08-12 17:43:25 info: Get room started -2026-08-12 17:43:25 info: Get room executed successfully -2026-08-12 17:43:27 info: Get room started -2026-08-12 17:43:27 info: Get room executed successfully -2026-08-12 17:43:29 info: Get room started -2026-08-12 17:43:29 info: Get room executed successfully -2026-08-12 17:43:40 info: Get room started -2026-08-12 17:43:40 info: Get room executed successfully -2026-08-12 17:43:41 info: Get room started -2026-08-12 17:43:41 info: Get room executed successfully -2026-08-12 17:43:41 info: Get room started -2026-08-12 17:43:41 info: Get room executed successfully -2026-08-12 17:43:43 info: Get room started -2026-08-12 17:43:43 info: Get room executed successfully -2026-08-12 17:43:44 info: Get room started -2026-08-12 17:43:44 info: Get room executed successfully -2026-08-12 17:43:45 info: Get room started -2026-08-12 17:43:45 info: Get room executed successfully -2026-08-12 17:43:47 info: Get room started -2026-08-12 17:43:47 info: Get room executed successfully -2026-08-12 17:43:49 info: Get room started -2026-08-12 17:43:49 info: Get room executed successfully -2026-08-12 17:43:57 info: User disconnected KVetIEz32U6gYYNzAAAD beacuse of transport close -2026-08-12 17:43:57 info: Handle disconnect started -2026-08-12 17:43:57 info: Get room started -2026-08-12 17:43:57 info: Get room executed successfully -2026-08-12 17:43:57 info: Get room started -2026-08-12 17:43:57 info: Get room executed successfully -2026-08-12 17:43:57 info: Remove viewer started -2026-08-12 17:43:57 info: Handle disconnect succesfully -2026-08-12 17:43:57 info: Viewer removed from room -2026-08-12 17:47:18 info: User disconnected ERwXqvxdBoEtwoPVAAAB beacuse of client namespace disconnect -2026-08-12 17:47:18 info: Handle disconnect started -2026-08-12 17:47:18 info: Get room started -2026-08-12 17:47:18 info: Get room executed successfully -2026-08-12 17:47:18 info: Get room started -2026-08-12 17:47:18 info: Get room executed successfully -2026-08-12 17:47:18 info: Get room started -2026-08-12 17:47:18 info: Get room executed successfully -2026-08-12 17:47:18 info: Remove broadcaster success -2026-08-12 17:47:18 info: Handle disconnect succesfully -2026-08-12 17:47:18 info: room:610eef57-84d6-4b66-a6bf-cf18c07df367 room deleted successfully -2026-08-12 17:47:19 info: [node-1] Client connected: flARHfBnUWbtirHZAAAF -2026-08-12 17:47:20 info: User disconnected flARHfBnUWbtirHZAAAF beacuse of client namespace disconnect -2026-08-12 17:47:20 info: Handle disconnect started -2026-08-12 17:47:20 error: RoomId not found -2026-08-12 17:47:20 warn: IDK -2026-08-12 17:47:22 info: [node-1] Client connected: nPcu2LimUwhgFz65AAAH -2026-08-12 17:47:24 info: User disconnected nPcu2LimUwhgFz65AAAH beacuse of transport close -2026-08-12 17:47:24 info: Handle disconnect started -2026-08-12 17:47:24 error: RoomId not found -2026-08-12 17:47:24 warn: IDK -2026-08-12 17:47:44 info: [node-1] Client connected: utBZO5Hyb9D_RSnHAAAJ -2026-08-12 17:47:52 info: User disconnected utBZO5Hyb9D_RSnHAAAJ beacuse of transport close -2026-08-12 17:47:52 info: Handle disconnect started -2026-08-12 17:47:52 error: RoomId not found -2026-08-12 17:47:52 warn: IDK -2026-08-12 17:47:55 info: SignIn started -2026-08-12 17:47:56 info: SignIn completed -2026-08-12 17:47:56 info: [node-1] Client connected: ThaHSye4vs9K8ZHxAAAL -2026-08-12 17:48:43 info: User disconnected ThaHSye4vs9K8ZHxAAAL beacuse of transport close -2026-08-12 17:48:43 info: Handle disconnect started -2026-08-12 17:48:43 error: RoomId not found -2026-08-12 17:48:43 warn: IDK -2026-08-12 17:48:43 info: [node-1] Client connected: FLBnA_rLf1eksaB0AAAN -2026-08-12 17:48:45 info: User disconnected FLBnA_rLf1eksaB0AAAN beacuse of client namespace disconnect -2026-08-12 17:48:45 info: Handle disconnect started -2026-08-12 17:48:45 error: RoomId not found -2026-08-12 17:48:45 warn: IDK -2026-08-12 17:48:47 info: SignIn started -2026-08-12 17:48:48 info: SignIn completed -2026-08-12 17:48:48 info: [node-1] Client connected: 7qBQRlcC3w_pgx4wAAAP -2026-08-12 17:48:58 info: User disconnected 7qBQRlcC3w_pgx4wAAAP beacuse of transport close -2026-08-12 17:48:58 info: Handle disconnect started -2026-08-12 17:48:58 error: RoomId not found -2026-08-12 17:48:58 warn: IDK -2026-08-12 17:49:01 info: SignIn started -2026-08-12 17:49:01 info: SignIn completed -2026-08-12 17:49:01 info: [node-1] Client connected: CWxI2CUm7Q1GSQmJAAAR -2026-08-12 17:49:24 info: User disconnected CWxI2CUm7Q1GSQmJAAAR beacuse of client namespace disconnect -2026-08-12 17:49:24 info: Handle disconnect started -2026-08-12 17:49:24 error: RoomId not found -2026-08-12 17:49:24 warn: IDK -2026-08-12 17:50:33 info: SignIn started -2026-08-12 17:50:33 info: SignIn completed -2026-08-12 17:50:33 info: [node-1] Client connected: FOg1-yixh-8jZraKAAAT -2026-08-12 17:50:56 warn: MongoDB disconnected -2026-08-12 17:50:56 error: MongoNetworkError: read ECONNRESET - at Connection.onSocketError (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection.ts:308:18) - at TLSSocket.emit (node:events:521:24) - at emitErrorNT (node:internal/streams/destroy:170:8) - at emitErrorCloseNT (node:internal/streams/destroy:129:3) - at processTicksAndRejections (node:internal/process/task_queues:90:21) -2026-08-12 17:50:58 error: Database connection is not open -2026-08-12 17:51:00 error: Database connection is not open -2026-08-12 17:51:00 info: User disconnected FOg1-yixh-8jZraKAAAT beacuse of transport close -2026-08-12 17:51:00 info: Handle disconnect started -2026-08-12 17:51:00 error: RoomId not found -2026-08-12 17:51:02 error: Database connection is not open -2026-08-12 17:51:04 error: Database connection is not open -2026-08-12 17:51:06 error: Database connection is not open -2026-08-12 17:51:08 info: MongoDB connected -2026-08-12 17:51:17 warn: MongoDB disconnected -2026-08-12 17:51:17 error: MongoPoolClearedError: Connection pool for ac-v00shv2-shard-00-01.eplgdfn.mongodb.net:27017 was cleared because another operation failed with: "read ECONNRESET" - at ConnectionPool.processWaitQueue (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:753:65) - at ConnectionPool.clear (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:476:10) - at updateServers (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:875:21) - at Topology.serverUpdateHandler (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:733:5) - at Server. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:851:66) - at Server.emit (node:events:509:20) - at markServerUnknown (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/server.ts:530:10) - at Server.handleError (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/server.ts:410:9) - at /home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:677:21 - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-12 17:51:17 error: MongoPoolClearedError: Connection pool for ac-v00shv2-shard-00-01.eplgdfn.mongodb.net:27017 was cleared because another operation failed with: "read ECONNRESET" - at ConnectionPool.processWaitQueue (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:753:65) - at ConnectionPool.clear (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:476:10) - at updateServers (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:875:21) - at Topology.serverUpdateHandler (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:733:5) - at Server. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:851:66) - at Server.emit (node:events:509:20) - at markServerUnknown (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/server.ts:530:10) - at Server.handleError (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/server.ts:410:9) - at /home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:677:21 - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-12 17:51:17 error: MongoPoolClearedError: Connection pool for ac-v00shv2-shard-00-01.eplgdfn.mongodb.net:27017 was cleared because another operation failed with: "read ECONNRESET" - at ConnectionPool.processWaitQueue (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:753:65) - at ConnectionPool.clear (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:476:10) - at updateServers (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:875:21) - at Topology.serverUpdateHandler (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:733:5) - at Server. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:851:66) - at Server.emit (node:events:509:20) - at markServerUnknown (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/server.ts:530:10) - at Server.handleError (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/server.ts:410:9) - at /home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:677:21 - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-12 17:51:19 error: Database connection is not open -2026-08-12 17:51:21 error: Database connection is not open -2026-08-12 17:51:23 error: Database connection is not open -2026-08-12 17:51:25 error: Database connection is not open -2026-08-12 17:51:27 error: Database connection is not open -2026-08-12 17:51:29 error: Database connection is not open -2026-08-12 17:51:31 error: Database connection is not open -2026-08-12 17:51:33 error: Database connection is not open -2026-08-12 17:51:35 error: Database connection is not open -2026-08-12 17:51:40 info: MongoDB connected -2026-08-12 17:52:03 error: Database connection is not open -2026-08-12 17:52:05 error: Database connection is not open -2026-08-12 17:52:07 error: Database connection is not open -2026-08-12 17:52:09 error: Database connection is not open -2026-08-12 17:52:10 error: MongoNetworkTimeoutError: Socket 'secureConnect' timed out after 30456ms (connectTimeoutMS: 30000) - at TLSSocket. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connect.ts:399:11) - at Object.onceWrapper (node:events:630:28) - at TLSSocket.emit (node:events:509:20) - at TLSSocket.Socket._onTimeout (node:net:610:8) - at listOnTimeout (node:internal/timers:605:17) - at processTimers (node:internal/timers:541:7) -2026-08-12 17:52:11 error: Database connection is not open -2026-08-12 17:52:13 error: Database connection is not open -2026-08-12 17:52:15 error: Database connection is not open -2026-08-12 17:52:17 error: Database connection is not open -2026-08-12 17:52:19 error: Database connection is not open -2026-08-12 17:52:20 error: MongoPoolClearedError: Connection pool for ac-v00shv2-shard-00-01.eplgdfn.mongodb.net:27017 was cleared because another operation failed with: "connection to 159.41.206.112:27017 timed out" - at ConnectionPool.processWaitQueue (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:753:65) - at ConnectionPool.clear (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:476:10) - at updateServers (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:875:21) - at Topology.serverUpdateHandler (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:733:5) - at Server. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:851:66) - at Server.emit (node:events:509:20) - at markServerUnknown (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/server.ts:530:10) - at Monitor. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/server.ts:185:65) - at Monitor.emit (node:events:509:20) - at onHeartbeatFailed (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/monitor.ts:291:13) -2026-08-12 17:52:21 error: Database connection is not open -2026-08-12 17:52:23 error: Database connection is not open -2026-08-12 17:52:25 error: Database connection is not open -2026-08-12 17:52:27 error: Database connection is not open -2026-08-12 17:52:29 error: Database connection is not open -2026-08-12 17:52:30 error: MongoNetworkError: getaddrinfo EAI_AGAIN ac-v00shv2-shard-00-01.eplgdfn.mongodb.net - at TLSSocket. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connect.ts:395:16) - at Object.onceWrapper (node:events:631:12) - at TLSSocket.emit (node:events:509:20) - at emitErrorNT (node:internal/streams/destroy:170:8) - at emitErrorCloseNT (node:internal/streams/destroy:129:3) - at processTicksAndRejections (node:internal/process/task_queues:90:21) -2026-08-12 17:52:30 error: MongoNetworkError: getaddrinfo EAI_AGAIN ac-v00shv2-shard-00-01.eplgdfn.mongodb.net - at TLSSocket. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connect.ts:395:16) - at Object.onceWrapper (node:events:631:12) - at TLSSocket.emit (node:events:509:20) - at emitErrorNT (node:internal/streams/destroy:170:8) - at emitErrorCloseNT (node:internal/streams/destroy:129:3) - at processTicksAndRejections (node:internal/process/task_queues:90:21) -2026-08-12 17:52:31 error: Database connection is not open -2026-08-12 17:52:33 error: Database connection is not open -2026-08-12 17:52:35 error: Database connection is not open -2026-08-12 17:52:37 error: Database connection is not open -2026-08-12 17:52:39 error: Database connection is not open -2026-08-12 17:52:41 error: Database connection is not open -2026-08-12 17:52:43 error: Database connection is not open -2026-08-12 17:52:45 error: Database connection is not open -2026-08-12 17:52:47 error: Database connection is not open -2026-08-12 17:52:49 error: Database connection is not open -2026-08-12 17:52:51 error: Database connection is not open -2026-08-12 17:52:53 error: Database connection is not open -2026-08-12 17:52:55 error: Database connection is not open -2026-08-12 17:52:57 error: Database connection is not open -2026-08-12 17:52:59 error: Database connection is not open -2026-08-12 17:53:01 error: Database connection is not open -2026-08-12 17:53:03 error: Database connection is not open -2026-08-12 17:53:05 error: Database connection is not open -2026-08-12 17:53:07 error: Database connection is not open -2026-08-12 17:53:09 error: Database connection is not open -2026-08-12 17:53:11 error: Database connection is not open -2026-08-12 17:53:13 error: Database connection is not open -2026-08-12 17:53:15 error: Database connection is not open -2026-08-12 17:53:17 error: Database connection is not open -2026-08-12 17:53:19 error: Database connection is not open -2026-08-12 17:53:21 error: Database connection is not open -2026-08-12 17:53:23 error: Database connection is not open -2026-08-12 17:53:25 error: Database connection is not open -2026-08-12 17:53:27 error: Database connection is not open -2026-08-12 17:53:29 error: Database connection is not open -2026-08-12 17:53:31 error: Database connection is not open -2026-08-12 17:53:33 error: Database connection is not open -2026-08-12 17:53:35 error: Database connection is not open -2026-08-12 17:53:37 error: Database connection is not open -2026-08-12 17:53:39 error: Database connection is not open -2026-08-12 17:53:41 error: Database connection is not open -2026-08-12 17:53:43 error: Database connection is not open -2026-08-12 17:53:45 error: Database connection is not open -2026-08-12 17:53:47 error: Database connection is not open -2026-08-12 17:53:49 error: Database connection is not open -2026-08-12 17:53:51 error: Database connection is not open -2026-08-12 17:53:53 error: Database connection is not open -2026-08-12 17:53:55 error: Database connection is not open -2026-08-12 17:53:57 error: Database connection is not open -2026-08-12 17:53:59 error: Database connection is not open -2026-08-12 17:54:06 warn: MongoDB disconnected -2026-08-12 17:54:10 info: MongoDB connected -2026-08-15 14:57:45 info: Redis subscribers initialized -2026-08-15 14:57:52 info: MongoDB connected -2026-08-15 14:57:52 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 14:57:52 info: Creating worker started -2026-08-15 14:57:52 info: Creating worker started -2026-08-15 14:57:52 info: Creating worker started -2026-08-15 14:57:52 info: Worker created successfully -2026-08-15 14:57:52 info: Worker created successfully -2026-08-15 14:57:52 info: Worker created successfully -2026-08-15 14:57:52 info: Worker pool initialized -2026-08-15 14:58:02 info: SignIn started -2026-08-15 14:58:02 info: SignIn completed -2026-08-15 14:58:02 info: [node-1] Client connected: DXTcpQjs9ENPNQ8aAAAB -2026-08-15 14:58:43 info: SignUp started -2026-08-15 14:58:43 info: SignUp completed -2026-08-15 14:58:43 info: [node-1] Client connected: j-jtCXuGZBRvnBWBAAAD -2026-08-15 14:58:57 info: Create room started -2026-08-15 14:58:57 info: Woker loads loaded successfully -2026-08-15 14:58:57 info: Woker assigned succesfully -2026-08-15 14:58:57 info: Creation of router started -2026-08-15 14:58:57 info: Router created -2026-08-15 14:58:57 info: Creation of room successfully executed -2026-08-15 14:58:57 info: Get room started -2026-08-15 14:58:57 info: Get room executed successfully -2026-08-15 14:58:57 info: Broadcaster added to the room -2026-08-15 14:58:57 info: Room created successfully -2026-08-15 14:58:57 info: Get getRouterRtpCapabilities started -2026-08-15 14:58:57 info: Fetching of router started -2026-08-15 14:58:57 info: Fetching of router executed successfully -2026-08-15 14:58:57 info: Rtp capabilities fetched successfully -2026-08-15 14:58:57 info: Get room started -2026-08-15 14:58:57 info: Get room executed successfully -2026-08-15 14:58:57 info: Transport created : 3c869904-3a0d-40bb-9778-221ea8a00110 -2026-08-15 14:58:57 info: Get room started -2026-08-15 14:58:57 info: Get room executed successfully -2026-08-15 14:59:03 info: Connect broadcaster transport listener started -2026-08-15 14:59:03 info: Get room started -2026-08-15 14:59:03 info: Get room executed successfully -2026-08-15 14:59:03 info: Connect broadcaster transport executed successfully -2026-08-15 14:59:03 info: Transport ICE state changed -2026-08-15 14:59:03 info: Transport DTLS state changed -2026-08-15 14:59:03 info: Producer listener started -2026-08-15 14:59:03 info: Get room started -2026-08-15 14:59:03 info: Get room executed successfully -2026-08-15 14:59:03 info: Transport DTLS state changed -2026-08-15 14:59:03 info: Producer listener executed successfully: -2026-08-15 14:59:03 info: Producer listener started -2026-08-15 14:59:03 info: Get room started -2026-08-15 14:59:03 info: Get room executed successfully -2026-08-15 14:59:03 info: Producer listener executed successfully: -2026-08-15 14:59:27 info: Join as viewer listner started -2026-08-15 14:59:27 info: Rate limiting -2026-08-15 14:59:27 info: Rate limiting -2026-08-15 14:59:27 info: Get room started -2026-08-15 14:59:27 info: Get room executed successfully -2026-08-15 14:59:27 info: Fetching of router started -2026-08-15 14:59:27 info: Fetching of router executed successfully -2026-08-15 14:59:27 info: Get room started -2026-08-15 14:59:27 info: Get room executed successfully -2026-08-15 14:59:27 info: Viewer joined the room -2026-08-15 14:59:27 info: Join viewer listner successfully executed -2026-08-15 14:59:27 info: Create viewer transport listner started -2026-08-15 14:59:27 info: Get room started -2026-08-15 14:59:27 info: Get room executed successfully -2026-08-15 14:59:27 info: Get room started -2026-08-15 14:59:27 info: Get room executed successfully -2026-08-15 14:59:27 info: Transport created : 6c09fb8f-09e8-499b-b2a1-5b285f8f2684 -2026-08-15 14:59:27 info: Viewer transport successfully created -2026-08-15 14:59:27 info: Create viewer transport listner successfully executed -2026-08-15 14:59:27 info: Consume lister started -2026-08-15 14:59:27 info: Get room started -2026-08-15 14:59:27 info: Get room executed successfully -2026-08-15 14:59:27 info: Get room started -2026-08-15 14:59:27 info: Get room executed successfully -2026-08-15 14:59:27 info: Get room started -2026-08-15 14:59:27 info: Get room executed successfully -2026-08-15 14:59:27 info: Viewer media consume successfully executed -2026-08-15 14:59:27 info: Consume lister executed successfully -2026-08-15 14:59:27 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:00:31 info: User disconnected DXTcpQjs9ENPNQ8aAAAB beacuse of transport close -2026-08-15 15:00:31 info: Handle disconnect started -2026-08-15 15:00:31 info: Get room started -2026-08-15 15:00:31 info: Get room executed successfully -2026-08-15 15:00:31 info: Get room started -2026-08-15 15:00:31 info: Get room executed successfully -2026-08-15 15:00:31 info: Get room started -2026-08-15 15:00:31 info: Get room executed successfully -2026-08-15 15:00:31 info: Get room started -2026-08-15 15:00:31 info: Get room executed successfully -2026-08-15 15:00:31 info: Get room started -2026-08-15 15:00:31 info: Get room executed successfully -2026-08-15 15:00:31 info: Remove broadcaster success -2026-08-15 15:00:31 info: Handle disconnect succesfully -2026-08-15 15:00:31 info: room:a344cfc4-bd2f-4282-861a-e91ec3334fa5 room deleted successfully -2026-08-15 15:00:31 info: [node-1] Client connected: aVDkHMpoqLhPYqCZAAAF -2026-08-15 15:02:21 info: Redis subscribers initialized -2026-08-15 15:02:22 info: MongoDB connected -2026-08-15 15:02:22 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 15:02:22 info: Creating worker started -2026-08-15 15:02:22 info: Creating worker started -2026-08-15 15:02:22 info: Creating worker started -2026-08-15 15:02:22 info: Worker created successfully -2026-08-15 15:02:22 info: Worker created successfully -2026-08-15 15:02:22 info: Worker created successfully -2026-08-15 15:02:22 info: Worker pool initialized -2026-08-15 15:02:31 info: Redis subscribers initialized -2026-08-15 15:02:33 info: MongoDB connected -2026-08-15 15:02:33 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 15:02:33 info: Creating worker started -2026-08-15 15:02:33 info: Creating worker started -2026-08-15 15:02:33 info: Creating worker started -2026-08-15 15:02:33 info: Worker created successfully -2026-08-15 15:02:33 info: Worker created successfully -2026-08-15 15:02:33 info: Worker created successfully -2026-08-15 15:02:33 info: Worker pool initialized -2026-08-15 15:02:55 info: Redis subscribers initialized -2026-08-15 15:02:57 info: MongoDB connected -2026-08-15 15:02:57 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 15:02:57 info: Creating worker started -2026-08-15 15:02:57 info: Creating worker started -2026-08-15 15:02:57 info: Creating worker started -2026-08-15 15:02:57 info: Worker created successfully -2026-08-15 15:02:57 info: Worker created successfully -2026-08-15 15:02:57 info: Worker created successfully -2026-08-15 15:02:57 info: Worker pool initialized -2026-08-15 15:03:03 info: [node-1] Client connected: C-zpTcdR1raY6xh1AAAB -2026-08-15 15:03:06 info: [node-1] Client connected: 9t-32LLNsTsUeD_sAAAD -2026-08-15 15:03:06 info: Create room started -2026-08-15 15:03:06 info: Woker loads loaded successfully -2026-08-15 15:03:06 info: Woker assigned succesfully -2026-08-15 15:03:06 info: Creation of router started -2026-08-15 15:03:06 info: Router created -2026-08-15 15:03:06 info: Creation of room successfully executed -2026-08-15 15:03:06 info: Get room started -2026-08-15 15:03:06 info: Get room executed successfully -2026-08-15 15:03:06 info: Broadcaster added to the room -2026-08-15 15:03:06 info: Room created successfully -2026-08-15 15:03:06 info: Get getRouterRtpCapabilities started -2026-08-15 15:03:06 info: Fetching of router started -2026-08-15 15:03:06 info: Fetching of router executed successfully -2026-08-15 15:03:06 info: Rtp capabilities fetched successfully -2026-08-15 15:03:06 info: Get room started -2026-08-15 15:03:06 info: Get room executed successfully -2026-08-15 15:03:06 info: Transport created : f34865ae-5bb4-46f8-ae10-63e5d17683be -2026-08-15 15:03:06 info: Get room started -2026-08-15 15:03:06 info: Get room executed successfully -2026-08-15 15:03:06 info: Connect broadcaster transport listener started -2026-08-15 15:03:06 info: Get room started -2026-08-15 15:03:06 info: Get room executed successfully -2026-08-15 15:03:06 info: Connect broadcaster transport executed successfully -2026-08-15 15:03:06 info: Transport ICE state changed -2026-08-15 15:03:06 info: Transport DTLS state changed -2026-08-15 15:03:06 info: Producer listener started -2026-08-15 15:03:06 info: Get room started -2026-08-15 15:03:06 info: Get room executed successfully -2026-08-15 15:03:06 info: Transport DTLS state changed -2026-08-15 15:03:06 info: Producer listener executed successfully: -2026-08-15 15:03:06 info: Producer listener started -2026-08-15 15:03:06 info: Get room started -2026-08-15 15:03:06 info: Get room executed successfully -2026-08-15 15:03:06 info: Producer listener executed successfully: -2026-08-15 15:03:15 info: Join as viewer listner started -2026-08-15 15:03:15 info: Rate limiting -2026-08-15 15:03:15 info: Rate limiting -2026-08-15 15:03:15 info: Get room started -2026-08-15 15:03:15 info: Get room executed successfully -2026-08-15 15:03:15 info: Fetching of router started -2026-08-15 15:03:15 info: Fetching of router executed successfully -2026-08-15 15:03:15 info: Get room started -2026-08-15 15:03:15 info: Get room executed successfully -2026-08-15 15:03:15 info: Viewer joined the room -2026-08-15 15:03:15 info: Join viewer listner successfully executed -2026-08-15 15:03:15 info: Create viewer transport listner started -2026-08-15 15:03:15 info: Get room started -2026-08-15 15:03:15 info: Get room executed successfully -2026-08-15 15:03:15 info: Get room started -2026-08-15 15:03:15 info: Get room executed successfully -2026-08-15 15:03:15 info: Transport created : b8d6dc8c-9a6f-46f2-bab9-22f9ae325303 -2026-08-15 15:03:15 info: Viewer transport successfully created -2026-08-15 15:03:15 info: Create viewer transport listner successfully executed -2026-08-15 15:03:15 info: Consume lister started -2026-08-15 15:03:15 info: Get room started -2026-08-15 15:03:15 info: Get room executed successfully -2026-08-15 15:03:15 info: Get room started -2026-08-15 15:03:15 info: Get room executed successfully -2026-08-15 15:03:15 info: Get room started -2026-08-15 15:03:15 info: Get room executed successfully -2026-08-15 15:03:15 info: Viewer media consume successfully executed -2026-08-15 15:03:15 info: Consume lister executed successfully -2026-08-15 15:03:15 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:03:42 info: Redis subscribers initialized -2026-08-15 15:03:43 info: MongoDB connected -2026-08-15 15:03:43 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 15:03:43 info: Creating worker started -2026-08-15 15:03:43 info: Creating worker started -2026-08-15 15:03:43 info: Creating worker started -2026-08-15 15:03:43 info: Worker created successfully -2026-08-15 15:03:43 info: Worker created successfully -2026-08-15 15:03:43 info: Worker created successfully -2026-08-15 15:03:43 info: Worker pool initialized -2026-08-15 15:03:54 info: SignIn started -2026-08-15 15:03:55 info: SignIn completed -2026-08-15 15:03:55 info: [node-1] Client connected: cbZRiClLkeGCpCYFAAAB -2026-08-15 15:03:57 info: SignIn started -2026-08-15 15:03:57 info: SignIn completed -2026-08-15 15:03:58 info: [node-1] Client connected: kVjxsXf6uGv6GzOLAAAD -2026-08-15 15:04:01 info: Create room started -2026-08-15 15:04:01 info: Woker loads loaded successfully -2026-08-15 15:04:01 info: Woker assigned succesfully -2026-08-15 15:04:01 info: Creation of router started -2026-08-15 15:04:01 info: Router created -2026-08-15 15:04:01 info: Creation of room successfully executed -2026-08-15 15:04:01 info: Get room started -2026-08-15 15:04:01 info: Get room executed successfully -2026-08-15 15:04:01 info: Broadcaster added to the room -2026-08-15 15:04:01 info: Room created successfully -2026-08-15 15:04:01 info: Get getRouterRtpCapabilities started -2026-08-15 15:04:01 info: Fetching of router started -2026-08-15 15:04:01 info: Fetching of router executed successfully -2026-08-15 15:04:01 info: Rtp capabilities fetched successfully -2026-08-15 15:04:01 info: Get room started -2026-08-15 15:04:01 info: Get room executed successfully -2026-08-15 15:04:01 info: Transport created : f565c21c-bb21-4394-bc80-213572b05490 -2026-08-15 15:04:01 info: Get room started -2026-08-15 15:04:01 info: Get room executed successfully -2026-08-15 15:04:02 info: Connect broadcaster transport listener started -2026-08-15 15:04:02 info: Get room started -2026-08-15 15:04:02 info: Get room executed successfully -2026-08-15 15:04:02 info: Connect broadcaster transport executed successfully -2026-08-15 15:04:02 info: Transport ICE state changed -2026-08-15 15:04:02 info: Transport DTLS state changed -2026-08-15 15:04:02 info: Producer listener started -2026-08-15 15:04:02 info: Get room started -2026-08-15 15:04:02 info: Get room executed successfully -2026-08-15 15:04:02 info: Transport DTLS state changed -2026-08-15 15:04:02 info: Producer listener executed successfully: -2026-08-15 15:04:02 info: Producer listener started -2026-08-15 15:04:02 info: Get room started -2026-08-15 15:04:02 info: Get room executed successfully -2026-08-15 15:04:02 info: Producer listener executed successfully: -2026-08-15 15:04:17 info: Join as viewer listner started -2026-08-15 15:04:17 info: Rate limiting -2026-08-15 15:04:17 info: Rate limiting -2026-08-15 15:04:17 info: Get room started -2026-08-15 15:04:17 info: Get room executed successfully -2026-08-15 15:04:17 info: Fetching of router started -2026-08-15 15:04:17 info: Fetching of router executed successfully -2026-08-15 15:04:17 info: Get room started -2026-08-15 15:04:17 info: Get room executed successfully -2026-08-15 15:04:17 info: Viewer joined the room -2026-08-15 15:04:17 info: Join viewer listner successfully executed -2026-08-15 15:04:17 info: Create viewer transport listner started -2026-08-15 15:04:17 info: Get room started -2026-08-15 15:04:17 info: Get room executed successfully -2026-08-15 15:04:17 info: Get room started -2026-08-15 15:04:17 info: Get room executed successfully -2026-08-15 15:04:17 info: Transport created : f79ba8fb-6ec0-471f-9063-b40cf62b2dd1 -2026-08-15 15:04:17 info: Viewer transport successfully created -2026-08-15 15:04:17 info: Create viewer transport listner successfully executed -2026-08-15 15:04:17 info: Consume lister started -2026-08-15 15:04:17 info: Get room started -2026-08-15 15:04:17 info: Get room executed successfully -2026-08-15 15:04:17 info: Get room started -2026-08-15 15:04:17 info: Get room executed successfully -2026-08-15 15:04:17 info: Get room started -2026-08-15 15:04:17 info: Get room executed successfully -2026-08-15 15:04:17 info: Viewer media consume successfully executed -2026-08-15 15:04:17 info: Consume lister executed successfully -2026-08-15 15:04:17 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:04:17 info: Connect consumer listner started -2026-08-15 15:04:17 info: Get room started -2026-08-15 15:04:17 info: Get room executed successfully -2026-08-15 15:04:17 info: Consumer transport connected successfully -2026-08-15 15:04:17 info: Connect consumer listner executed successfully -2026-08-15 15:04:17 info: Transport ICE state changed -2026-08-15 15:04:17 info: Transport DTLS state changed -2026-08-15 15:04:17 info: Transport DTLS state changed -2026-08-15 15:04:17 info: Get room started -2026-08-15 15:04:17 info: Get room executed successfully -2026-08-15 15:04:17 info: Viewer consumer resumed -2026-08-15 15:04:17 info: Resume consumer listener executed successfully -2026-08-15 15:04:17 info: Get room started -2026-08-15 15:04:17 info: Get room executed successfully -2026-08-15 15:04:17 info: Viewer consumer resumed -2026-08-15 15:04:17 info: Resume consumer listener executed successfully -2026-08-15 15:04:37 info: Get room started -2026-08-15 15:04:37 info: Get room executed successfully -2026-08-15 15:04:57 info: Get room started -2026-08-15 15:04:57 info: Get room executed successfully -2026-08-15 15:05:17 info: Get room started -2026-08-15 15:05:17 info: Get room executed successfully -2026-08-15 15:05:37 info: Get room started -2026-08-15 15:05:37 info: Get room executed successfully -2026-08-15 15:05:57 info: Get room started -2026-08-15 15:05:57 info: Get room executed successfully -2026-08-15 15:06:12 info: User disconnected cbZRiClLkeGCpCYFAAAB beacuse of client namespace disconnect -2026-08-15 15:06:12 info: Handle disconnect started -2026-08-15 15:06:12 info: Get room started -2026-08-15 15:06:12 info: Get room executed successfully -2026-08-15 15:06:12 info: Get room started -2026-08-15 15:06:12 info: Get room executed successfully -2026-08-15 15:06:12 info: Get room started -2026-08-15 15:06:12 info: Get room executed successfully -2026-08-15 15:06:12 info: Get room started -2026-08-15 15:06:12 info: Get room executed successfully -2026-08-15 15:06:12 info: Get room started -2026-08-15 15:06:12 info: Get room executed successfully -2026-08-15 15:06:12 info: Remove broadcaster success -2026-08-15 15:06:12 info: Handle disconnect succesfully -2026-08-15 15:06:12 info: room:ccb51a50-5ada-4ac8-90af-e43cc8eaccb0 room deleted successfully -2026-08-15 15:06:17 info: Get room started -2026-08-15 15:12:27 info: Redis subscribers initialized -2026-08-15 15:12:33 info: MongoDB connected -2026-08-15 15:12:33 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 15:12:33 info: Creating worker started -2026-08-15 15:12:33 info: Creating worker started -2026-08-15 15:12:33 info: Creating worker started -2026-08-15 15:12:33 info: Worker created successfully -2026-08-15 15:12:33 info: Worker created successfully -2026-08-15 15:12:33 info: Worker created successfully -2026-08-15 15:12:33 info: Worker pool initialized -2026-08-15 15:15:46 info: SignIn started -2026-08-15 15:15:46 info: SignIn completed -2026-08-15 15:15:46 info: [node-1] Client connected: feRiGPm1dB0gZ5QEAAAB -2026-08-15 15:15:49 info: SignIn started -2026-08-15 15:15:49 info: SignIn completed -2026-08-15 15:15:49 info: [node-1] Client connected: 8uxBBmzb1ksogTJmAAAD -2026-08-15 15:15:53 info: Create room started -2026-08-15 15:15:53 info: Woker loads loaded successfully -2026-08-15 15:15:53 info: Woker assigned succesfully -2026-08-15 15:15:53 info: Creation of router started -2026-08-15 15:15:53 info: Router created -2026-08-15 15:15:53 info: Creation of room successfully executed -2026-08-15 15:15:53 info: Get room started -2026-08-15 15:15:53 info: Get room executed successfully -2026-08-15 15:15:53 info: Broadcaster added to the room -2026-08-15 15:15:53 info: Room created successfully -2026-08-15 15:15:53 info: Get getRouterRtpCapabilities started -2026-08-15 15:15:53 info: Fetching of router started -2026-08-15 15:15:53 info: Fetching of router executed successfully -2026-08-15 15:15:53 info: Rtp capabilities fetched successfully -2026-08-15 15:15:53 info: Get room started -2026-08-15 15:15:53 info: Get room executed successfully -2026-08-15 15:15:53 info: Transport created : ab9807bc-55db-4bbb-bfe4-3215ae610aa3 -2026-08-15 15:15:53 info: Get room started -2026-08-15 15:15:53 info: Get room executed successfully -2026-08-15 15:15:53 info: Connect broadcaster transport listener started -2026-08-15 15:15:53 info: Get room started -2026-08-15 15:15:53 info: Get room executed successfully -2026-08-15 15:15:53 info: Connect broadcaster transport executed successfully -2026-08-15 15:15:53 info: Transport ICE state changed -2026-08-15 15:15:53 info: Transport DTLS state changed -2026-08-15 15:15:53 info: Producer listener started -2026-08-15 15:15:53 info: Transport DTLS state changed -2026-08-15 15:15:53 info: Get room started -2026-08-15 15:15:53 info: Get room executed successfully -2026-08-15 15:15:53 info: Producer listener executed successfully: -2026-08-15 15:15:53 info: Producer listener started -2026-08-15 15:15:53 info: Get room started -2026-08-15 15:15:53 info: Get room executed successfully -2026-08-15 15:15:53 info: Producer listener executed successfully: -2026-08-15 15:16:08 info: Join as viewer listner started -2026-08-15 15:16:08 info: Rate limiting -2026-08-15 15:16:08 info: Rate limiting -2026-08-15 15:16:08 info: Get room started -2026-08-15 15:16:08 info: Get room executed successfully -2026-08-15 15:16:08 info: Fetching of router started -2026-08-15 15:16:08 info: Fetching of router executed successfully -2026-08-15 15:16:08 info: Get room started -2026-08-15 15:16:08 info: Get room executed successfully -2026-08-15 15:16:08 info: Viewer joined the room -2026-08-15 15:16:08 info: Join viewer listner successfully executed -2026-08-15 15:16:08 info: Create viewer transport listner started -2026-08-15 15:16:08 info: Get room started -2026-08-15 15:16:08 info: Get room executed successfully -2026-08-15 15:16:08 info: Get room started -2026-08-15 15:16:08 info: Get room executed successfully -2026-08-15 15:16:08 info: Transport created : a00dc914-e238-4760-9118-b05a6ba6aad9 -2026-08-15 15:16:08 info: Viewer transport successfully created -2026-08-15 15:16:08 info: Create viewer transport listner successfully executed -2026-08-15 15:16:08 info: Consume lister started -2026-08-15 15:16:08 info: Get room started -2026-08-15 15:16:08 info: Get room executed successfully -2026-08-15 15:16:08 info: Get room started -2026-08-15 15:16:08 info: Get room executed successfully -2026-08-15 15:16:08 info: Get room started -2026-08-15 15:16:08 info: Get room executed successfully -2026-08-15 15:16:08 info: Viewer media consume successfully executed -2026-08-15 15:16:08 info: Consume lister executed successfully -2026-08-15 15:16:08 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:16:08 info: Connect consumer listner started -2026-08-15 15:16:08 info: Get room started -2026-08-15 15:16:08 info: Get room executed successfully -2026-08-15 15:16:08 info: Consumer transport connected successfully -2026-08-15 15:16:08 info: Connect consumer listner executed successfully -2026-08-15 15:16:08 info: Transport ICE state changed -2026-08-15 15:16:08 info: Transport DTLS state changed -2026-08-15 15:16:08 info: Transport DTLS state changed -2026-08-15 15:16:08 info: Get room started -2026-08-15 15:16:08 info: Get room executed successfully -2026-08-15 15:16:08 info: Viewer consumer resumed -2026-08-15 15:16:08 info: Resume consumer listener executed successfully -2026-08-15 15:16:08 info: Get room started -2026-08-15 15:16:08 info: Get room executed successfully -2026-08-15 15:16:08 info: Viewer consumer resumed -2026-08-15 15:16:08 info: Resume consumer listener executed successfully -2026-08-15 15:16:10 info: Get room started -2026-08-15 15:16:10 info: Get room executed successfully -2026-08-15 15:16:10 info: Get room started -2026-08-15 15:16:10 info: Get room executed successfully -2026-08-15 15:16:10 info: Get room started -2026-08-15 15:16:10 info: Get room executed successfully -2026-08-15 15:16:10 error: Viewer transport not found -2026-08-15 15:16:10 error: Error: Viewer transport not found - at consume (/home/harshit/CrowdStream/backend/src/handlers/viewer.handler.ts:192:13) - at consumePlainTransportMedia (/home/harshit/CrowdStream/backend/src/recording/recording.ts:33:42) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:163:78) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-08-15 15:16:10 error: Error: Viewer transport not found - at consume (/home/harshit/CrowdStream/backend/src/handlers/viewer.handler.ts:192:13) - at consumePlainTransportMedia (/home/harshit/CrowdStream/backend/src/recording/recording.ts:33:42) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:163:78) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-08-15 15:16:10 error: Error: Viewer transport not found - at consume (/home/harshit/CrowdStream/backend/src/handlers/viewer.handler.ts:192:13) - at consumePlainTransportMedia (/home/harshit/CrowdStream/backend/src/recording/recording.ts:33:42) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:163:78) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-08-15 15:16:28 info: Get room started -2026-08-15 15:16:28 info: Get room executed successfully -2026-08-15 15:16:48 info: Get room started -2026-08-15 15:16:48 info: Get room executed successfully -2026-08-15 15:17:08 info: Get room started -2026-08-15 15:17:08 info: Get room executed successfully -2026-08-15 15:17:28 info: Get room started -2026-08-15 15:17:28 info: Get room executed successfully -2026-08-15 15:17:32 info: User disconnected feRiGPm1dB0gZ5QEAAAB beacuse of transport close -2026-08-15 15:17:32 info: Handle disconnect started -2026-08-15 15:17:32 info: Get room started -2026-08-15 15:17:32 info: Get room executed successfully -2026-08-15 15:17:32 info: Get room started -2026-08-15 15:17:32 info: Get room executed successfully -2026-08-15 15:17:32 info: Get room started -2026-08-15 15:17:32 info: Get room executed successfully -2026-08-15 15:17:32 info: Get room started -2026-08-15 15:17:32 info: Get room executed successfully -2026-08-15 15:17:32 info: Get room started -2026-08-15 15:17:32 info: Get room executed successfully -2026-08-15 15:17:32 info: Remove broadcaster success -2026-08-15 15:17:32 info: Handle disconnect succesfully -2026-08-15 15:17:32 info: room:8c4841fd-055f-41d6-bb1f-5d03c4492a50 room deleted successfully -2026-08-15 15:17:32 info: [node-1] Client connected: zUpTZmHfg02durAOAAAF -2026-08-15 15:17:32 info: User disconnected 8uxBBmzb1ksogTJmAAAD beacuse of transport close -2026-08-15 15:17:32 info: Handle disconnect started -2026-08-15 15:17:33 info: [node-1] Client connected: bn1-jaf3SK2K9o-qAAAH -2026-08-15 15:18:08 info: Redis subscribers initialized -2026-08-15 15:18:15 info: Redis subscribers initialized -2026-08-15 15:18:17 info: MongoDB connected -2026-08-15 15:18:17 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 15:18:17 info: Creating worker started -2026-08-15 15:18:17 info: Creating worker started -2026-08-15 15:18:17 info: Creating worker started -2026-08-15 15:18:17 info: Worker created successfully -2026-08-15 15:18:17 info: Worker created successfully -2026-08-15 15:18:17 info: Worker created successfully -2026-08-15 15:18:17 info: Worker pool initialized -2026-08-15 15:18:26 info: Redis subscribers initialized -2026-08-15 15:18:27 info: MongoDB connected -2026-08-15 15:18:27 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 15:18:27 info: Creating worker started -2026-08-15 15:18:27 info: Creating worker started -2026-08-15 15:18:27 info: Creating worker started -2026-08-15 15:18:27 info: Worker created successfully -2026-08-15 15:18:27 info: Worker created successfully -2026-08-15 15:18:27 info: Worker created successfully -2026-08-15 15:18:27 info: Worker pool initialized -2026-08-15 15:18:34 info: Redis subscribers initialized -2026-08-15 15:18:36 info: MongoDB connected -2026-08-15 15:18:36 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 15:18:36 info: Creating worker started -2026-08-15 15:18:36 info: Creating worker started -2026-08-15 15:18:36 info: Creating worker started -2026-08-15 15:18:36 info: Worker created successfully -2026-08-15 15:18:36 info: Worker created successfully -2026-08-15 15:18:36 info: Worker created successfully -2026-08-15 15:18:36 info: Worker pool initialized -2026-08-15 15:18:39 info: [node-1] Client connected: -4G6YfTB6ju0pvG9AAAB -2026-08-15 15:18:43 info: [node-1] Client connected: S_vuEHZsBGPUf-jaAAAD -2026-08-15 15:18:54 info: Create room started -2026-08-15 15:18:54 info: Woker loads loaded successfully -2026-08-15 15:18:54 info: Woker assigned succesfully -2026-08-15 15:18:54 info: Creation of router started -2026-08-15 15:18:54 info: Router created -2026-08-15 15:18:54 info: Creation of room successfully executed -2026-08-15 15:18:54 info: Get room started -2026-08-15 15:18:54 info: Get room executed successfully -2026-08-15 15:18:54 info: Broadcaster added to the room -2026-08-15 15:18:54 info: Room created successfully -2026-08-15 15:18:54 info: Get getRouterRtpCapabilities started -2026-08-15 15:18:54 info: Fetching of router started -2026-08-15 15:18:54 info: Fetching of router executed successfully -2026-08-15 15:18:54 info: Rtp capabilities fetched successfully -2026-08-15 15:18:54 info: Get room started -2026-08-15 15:18:54 info: Get room executed successfully -2026-08-15 15:18:54 info: Transport created : b8a734dc-4756-4989-acfb-1df4c397faf9 -2026-08-15 15:18:54 info: Get room started -2026-08-15 15:18:54 info: Get room executed successfully -2026-08-15 15:18:54 info: Connect broadcaster transport listener started -2026-08-15 15:18:54 info: Get room started -2026-08-15 15:18:54 info: Get room executed successfully -2026-08-15 15:18:54 info: Connect broadcaster transport executed successfully -2026-08-15 15:18:54 info: Transport ICE state changed -2026-08-15 15:18:54 info: Transport DTLS state changed -2026-08-15 15:18:54 info: Transport DTLS state changed -2026-08-15 15:18:54 info: Producer listener started -2026-08-15 15:18:54 info: Get room started -2026-08-15 15:18:54 info: Get room executed successfully -2026-08-15 15:18:54 info: Producer listener executed successfully: -2026-08-15 15:18:54 info: Producer listener started -2026-08-15 15:18:54 info: Get room started -2026-08-15 15:18:54 info: Get room executed successfully -2026-08-15 15:18:54 info: Producer listener executed successfully: -2026-08-15 15:19:01 info: Join as viewer listner started -2026-08-15 15:19:01 info: Rate limiting -2026-08-15 15:19:01 info: Rate limiting -2026-08-15 15:19:01 info: Get room started -2026-08-15 15:19:01 info: Get room executed successfully -2026-08-15 15:19:01 info: Fetching of router started -2026-08-15 15:19:01 info: Fetching of router executed successfully -2026-08-15 15:19:01 info: Get room started -2026-08-15 15:19:01 info: Get room executed successfully -2026-08-15 15:19:01 info: Viewer joined the room -2026-08-15 15:19:01 info: Join viewer listner successfully executed -2026-08-15 15:19:01 info: Create viewer transport listner started -2026-08-15 15:19:01 info: Get room started -2026-08-15 15:19:01 info: Get room executed successfully -2026-08-15 15:19:01 info: Get room started -2026-08-15 15:19:01 info: Get room executed successfully -2026-08-15 15:19:01 info: Transport created : 5e1a80d0-185d-4b25-a5a8-08a8626e1f53 -2026-08-15 15:19:01 info: Viewer transport successfully created -2026-08-15 15:19:01 info: Create viewer transport listner successfully executed -2026-08-15 15:19:01 info: Consume lister started -2026-08-15 15:19:01 info: Get room started -2026-08-15 15:19:01 info: Get room executed successfully -2026-08-15 15:19:01 info: Get room started -2026-08-15 15:19:01 info: Get room executed successfully -2026-08-15 15:19:01 info: Get room started -2026-08-15 15:19:01 info: Get room executed successfully -2026-08-15 15:19:01 info: Viewer media consume successfully executed -2026-08-15 15:19:01 info: Consume lister executed successfully -2026-08-15 15:19:01 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:19:01 info: Connect consumer listner started -2026-08-15 15:19:01 info: Get room started -2026-08-15 15:19:01 info: Get room executed successfully -2026-08-15 15:19:01 info: Consumer transport connected successfully -2026-08-15 15:19:01 info: Connect consumer listner executed successfully -2026-08-15 15:19:01 info: Transport ICE state changed -2026-08-15 15:19:01 info: Transport DTLS state changed -2026-08-15 15:19:01 info: Transport DTLS state changed -2026-08-15 15:19:01 info: Get room started -2026-08-15 15:19:01 info: Get room executed successfully -2026-08-15 15:19:01 info: Viewer consumer resumed -2026-08-15 15:19:01 info: Resume consumer listener executed successfully -2026-08-15 15:19:01 info: Get room started -2026-08-15 15:19:01 info: Get room executed successfully -2026-08-15 15:19:01 info: Viewer consumer resumed -2026-08-15 15:19:01 info: Resume consumer listener executed successfully -2026-08-15 15:19:03 info: Get room started -2026-08-15 15:19:03 info: Get room executed successfully -2026-08-15 15:19:03 info: Get room started -2026-08-15 15:19:03 info: Get room executed successfully -2026-08-15 15:19:03 info: Get room started -2026-08-15 15:19:03 info: Get room executed successfully -2026-08-15 15:19:03 info: Get room started -2026-08-15 15:19:03 info: Get room executed successfully -2026-08-15 15:19:03 info: Get room started -2026-08-15 15:19:03 info: Get room executed successfully -2026-08-15 15:19:03 info: Get room started -2026-08-15 15:19:03 info: Get room executed successfully -2026-08-15 15:19:03 error: Error: ENOENT: no such file or directory, open '../recording/recording.sdp' - at Object.writeFileSync (node:fs:2406:20) - at generateRecordingSdp (/home/harshit/CrowdStream/backend/src/recording/sdp.ts:83:8) - at consumePlainTransportMedia (/home/harshit/CrowdStream/backend/src/recording/recording.ts:36:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) - at async Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:166:46) -2026-08-15 15:19:03 error: Error: ENOENT: no such file or directory, open '../recording/recording.sdp' - at Object.writeFileSync (node:fs:2406:20) - at generateRecordingSdp (/home/harshit/CrowdStream/backend/src/recording/sdp.ts:83:8) - at consumePlainTransportMedia (/home/harshit/CrowdStream/backend/src/recording/recording.ts:36:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) - at async Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:166:46) -2026-08-15 15:19:03 error: Error: ENOENT: no such file or directory, open '../recording/recording.sdp' - at Object.writeFileSync (node:fs:2406:20) - at generateRecordingSdp (/home/harshit/CrowdStream/backend/src/recording/sdp.ts:83:8) - at consumePlainTransportMedia (/home/harshit/CrowdStream/backend/src/recording/recording.ts:36:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) - at async Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:166:46) -2026-08-15 15:19:21 info: Get room started -2026-08-15 15:19:21 info: Get room executed successfully -2026-08-15 15:19:40 info: User disconnected -4G6YfTB6ju0pvG9AAAB beacuse of transport close -2026-08-15 15:19:40 info: Handle disconnect started -2026-08-15 15:19:40 info: Get room started -2026-08-15 15:19:40 info: Get room executed successfully -2026-08-15 15:19:40 info: Get room started -2026-08-15 15:19:40 info: Get room executed successfully -2026-08-15 15:19:40 info: Get room started -2026-08-15 15:19:40 info: Get room executed successfully -2026-08-15 15:19:40 info: Get room started -2026-08-15 15:19:40 info: Get room executed successfully -2026-08-15 15:19:40 info: Get room started -2026-08-15 15:19:40 info: Get room executed successfully -2026-08-15 15:19:40 info: Remove broadcaster success -2026-08-15 15:19:40 info: Handle disconnect succesfully -2026-08-15 15:19:40 info: room:3a99b05b-68ef-4233-958e-bf45953d435d room deleted successfully -2026-08-15 15:19:40 info: [node-1] Client connected: nlQd34io8754rHtVAAAF -2026-08-15 15:19:41 info: User disconnected S_vuEHZsBGPUf-jaAAAD beacuse of transport close -2026-08-15 15:19:41 info: Handle disconnect started -2026-08-15 15:19:41 info: [node-1] Client connected: h6wPw9KiqQKVDJZYAAAH -2026-08-15 15:21:21 info: Redis subscribers initialized -2026-08-15 15:21:33 info: Redis subscribers initialized -2026-08-15 15:21:34 info: MongoDB connected -2026-08-15 15:21:34 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 15:21:34 info: Creating worker started -2026-08-15 15:21:34 info: Creating worker started -2026-08-15 15:21:34 info: Creating worker started -2026-08-15 15:21:34 info: Worker created successfully -2026-08-15 15:21:34 info: Worker created successfully -2026-08-15 15:21:34 info: Worker created successfully -2026-08-15 15:21:34 info: Worker pool initialized -2026-08-15 15:21:39 info: [node-1] Client connected: EFXfcqs4yj3NLGdvAAAB -2026-08-15 15:21:40 info: [node-1] Client connected: vnqLMTFeEYt8kB60AAAD -2026-08-15 15:21:40 info: Create room started -2026-08-15 15:21:40 info: Woker loads loaded successfully -2026-08-15 15:21:40 info: Woker assigned succesfully -2026-08-15 15:21:40 info: Creation of router started -2026-08-15 15:21:40 info: Router created -2026-08-15 15:21:40 info: Creation of room successfully executed -2026-08-15 15:21:40 info: Get room started -2026-08-15 15:21:40 info: Get room executed successfully -2026-08-15 15:21:40 info: Broadcaster added to the room -2026-08-15 15:21:40 info: Room created successfully -2026-08-15 15:21:40 info: Get getRouterRtpCapabilities started -2026-08-15 15:21:40 info: Fetching of router started -2026-08-15 15:21:40 info: Fetching of router executed successfully -2026-08-15 15:21:40 info: Rtp capabilities fetched successfully -2026-08-15 15:21:40 info: Get room started -2026-08-15 15:21:40 info: Get room executed successfully -2026-08-15 15:21:40 info: Transport created : f5716122-5689-4105-ac72-441e6216c50b -2026-08-15 15:21:40 info: Get room started -2026-08-15 15:21:40 info: Get room executed successfully -2026-08-15 15:21:40 info: Connect broadcaster transport listener started -2026-08-15 15:21:40 info: Get room started -2026-08-15 15:21:40 info: Get room executed successfully -2026-08-15 15:21:40 info: Connect broadcaster transport executed successfully -2026-08-15 15:21:40 info: Transport ICE state changed -2026-08-15 15:21:40 info: Transport DTLS state changed -2026-08-15 15:21:40 info: Producer listener started -2026-08-15 15:21:40 info: Transport DTLS state changed -2026-08-15 15:21:40 info: Get room started -2026-08-15 15:21:40 info: Get room executed successfully -2026-08-15 15:21:40 info: Producer listener executed successfully: -2026-08-15 15:21:40 info: Producer listener started -2026-08-15 15:21:40 info: Get room started -2026-08-15 15:21:40 info: Get room executed successfully -2026-08-15 15:21:40 info: Producer listener executed successfully: -2026-08-15 15:21:47 info: Join as viewer listner started -2026-08-15 15:21:47 info: Rate limiting -2026-08-15 15:21:47 info: Rate limiting -2026-08-15 15:21:47 info: Get room started -2026-08-15 15:21:47 info: Get room executed successfully -2026-08-15 15:21:47 info: Fetching of router started -2026-08-15 15:21:47 info: Fetching of router executed successfully -2026-08-15 15:21:47 info: Get room started -2026-08-15 15:21:47 info: Get room executed successfully -2026-08-15 15:21:47 info: Viewer joined the room -2026-08-15 15:21:47 info: Join viewer listner successfully executed -2026-08-15 15:21:47 info: Create viewer transport listner started -2026-08-15 15:21:47 info: Get room started -2026-08-15 15:21:47 info: Get room executed successfully -2026-08-15 15:21:47 info: Get room started -2026-08-15 15:21:47 info: Get room executed successfully -2026-08-15 15:21:47 info: Transport created : 90c02c5f-38bb-4810-a2a4-774c11f7ae94 -2026-08-15 15:21:47 info: Viewer transport successfully created -2026-08-15 15:21:47 info: Create viewer transport listner successfully executed -2026-08-15 15:21:47 info: Consume lister started -2026-08-15 15:21:47 info: Get room started -2026-08-15 15:21:47 info: Get room executed successfully -2026-08-15 15:21:47 info: Get room started -2026-08-15 15:21:47 info: Get room executed successfully -2026-08-15 15:21:47 info: Get room started -2026-08-15 15:21:47 info: Get room executed successfully -2026-08-15 15:21:47 info: Viewer media consume successfully executed -2026-08-15 15:21:47 info: Consume lister executed successfully -2026-08-15 15:21:47 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:21:47 info: Connect consumer listner started -2026-08-15 15:21:47 info: Get room started -2026-08-15 15:21:47 info: Get room executed successfully -2026-08-15 15:21:47 info: Consumer transport connected successfully -2026-08-15 15:21:47 info: Connect consumer listner executed successfully -2026-08-15 15:21:47 info: Transport ICE state changed -2026-08-15 15:21:47 info: Transport DTLS state changed -2026-08-15 15:21:47 info: Transport DTLS state changed -2026-08-15 15:21:47 info: Get room started -2026-08-15 15:21:47 info: Get room executed successfully -2026-08-15 15:21:47 info: Viewer consumer resumed -2026-08-15 15:21:47 info: Resume consumer listener executed successfully -2026-08-15 15:21:47 info: Get room started -2026-08-15 15:21:47 info: Get room executed successfully -2026-08-15 15:21:47 info: Viewer consumer resumed -2026-08-15 15:21:47 info: Resume consumer listener executed successfully -2026-08-15 15:21:48 info: Get room started -2026-08-15 15:21:48 info: Get room executed successfully -2026-08-15 15:21:48 info: Get room started -2026-08-15 15:21:48 info: Get room executed successfully -2026-08-15 15:21:48 info: Get room started -2026-08-15 15:21:48 info: Get room executed successfully -2026-08-15 15:21:48 info: Get room started -2026-08-15 15:21:48 info: Get room executed successfully -2026-08-15 15:21:48 info: Get room started -2026-08-15 15:21:48 info: Get room executed successfully -2026-08-15 15:21:48 info: Get room started -2026-08-15 15:21:48 info: Get room executed successfully -2026-08-15 15:22:07 info: Get room started -2026-08-15 15:22:07 info: Get room executed successfully -2026-08-15 15:22:27 info: Get room started -2026-08-15 15:22:27 info: Get room executed successfully -2026-08-15 15:22:32 info: User disconnected EFXfcqs4yj3NLGdvAAAB beacuse of transport close -2026-08-15 15:22:32 info: Handle disconnect started -2026-08-15 15:22:32 info: Get room started -2026-08-15 15:22:32 info: Get room executed successfully -2026-08-15 15:22:32 info: Get room started -2026-08-15 15:22:32 info: Get room executed successfully -2026-08-15 15:22:32 info: Remove viewer started -2026-08-15 15:22:32 info: Handle disconnect succesfully -2026-08-15 15:22:32 info: Viewer removed from room -2026-08-15 15:22:32 info: [node-1] Client connected: M9PM5PrpNWkPpCeIAAAF -2026-08-15 15:22:33 info: User disconnected vnqLMTFeEYt8kB60AAAD beacuse of transport close -2026-08-15 15:22:33 info: Handle disconnect started -2026-08-15 15:22:33 info: Get room started -2026-08-15 15:22:33 info: Get room executed successfully -2026-08-15 15:22:33 info: Get room started -2026-08-15 15:22:33 info: Get room executed successfully -2026-08-15 15:22:33 info: Get room started -2026-08-15 15:22:33 info: Get room executed successfully -2026-08-15 15:22:33 info: Remove broadcaster success -2026-08-15 15:22:33 info: Handle disconnect succesfully -2026-08-15 15:22:33 info: room:c4ef7d86-8a39-4404-9a6f-d22f959d9c9f room deleted successfully -2026-08-15 15:22:33 info: [node-1] Client connected: 3sIY3VJtXQQ2ZljGAAAH -2026-08-15 15:24:02 info: Redis subscribers initialized -2026-08-15 15:24:04 info: MongoDB connected -2026-08-15 15:24:04 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 15:24:04 info: Creating worker started -2026-08-15 15:24:04 info: Creating worker started -2026-08-15 15:24:04 info: Creating worker started -2026-08-15 15:24:04 info: Worker created successfully -2026-08-15 15:24:04 info: Worker created successfully -2026-08-15 15:24:04 info: Worker created successfully -2026-08-15 15:24:04 info: Worker pool initialized -2026-08-15 15:24:07 info: [node-1] Client connected: YmqYuFYBGbuIdVN5AAAB -2026-08-15 15:24:09 info: [node-1] Client connected: d5KjGAwCvB0mQEMBAAAD -2026-08-15 15:24:10 info: Create room started -2026-08-15 15:24:10 info: Woker loads loaded successfully -2026-08-15 15:24:10 info: Woker assigned succesfully -2026-08-15 15:24:10 info: Creation of router started -2026-08-15 15:24:10 info: Router created -2026-08-15 15:24:10 info: Creation of room successfully executed -2026-08-15 15:24:11 info: Get room started -2026-08-15 15:24:11 info: Get room executed successfully -2026-08-15 15:24:11 info: Broadcaster added to the room -2026-08-15 15:24:11 info: Room created successfully -2026-08-15 15:24:11 info: Get getRouterRtpCapabilities started -2026-08-15 15:24:11 info: Fetching of router started -2026-08-15 15:24:11 info: Fetching of router executed successfully -2026-08-15 15:24:11 info: Rtp capabilities fetched successfully -2026-08-15 15:24:11 info: Get room started -2026-08-15 15:24:11 info: Get room executed successfully -2026-08-15 15:24:11 info: Transport created : 78d6ca03-968c-47ad-a8e8-0574b1c93b63 -2026-08-15 15:24:11 info: Get room started -2026-08-15 15:24:11 info: Get room executed successfully -2026-08-15 15:24:11 info: Connect broadcaster transport listener started -2026-08-15 15:24:11 info: Get room started -2026-08-15 15:24:11 info: Get room executed successfully -2026-08-15 15:24:11 info: Connect broadcaster transport executed successfully -2026-08-15 15:24:11 info: Transport ICE state changed -2026-08-15 15:24:11 info: Transport DTLS state changed -2026-08-15 15:24:11 info: Producer listener started -2026-08-15 15:24:11 info: Get room started -2026-08-15 15:24:11 info: Get room executed successfully -2026-08-15 15:24:11 info: Transport DTLS state changed -2026-08-15 15:24:11 info: Producer listener executed successfully: -2026-08-15 15:24:11 info: Producer listener started -2026-08-15 15:24:11 info: Get room started -2026-08-15 15:24:11 info: Get room executed successfully -2026-08-15 15:24:11 info: Producer listener executed successfully: -2026-08-15 15:24:15 info: Join as viewer listner started -2026-08-15 15:24:15 info: Rate limiting -2026-08-15 15:24:15 info: Rate limiting -2026-08-15 15:24:15 info: Get room started -2026-08-15 15:24:15 info: Get room executed successfully -2026-08-15 15:24:15 info: Fetching of router started -2026-08-15 15:24:15 info: Fetching of router executed successfully -2026-08-15 15:24:15 info: Get room started -2026-08-15 15:24:15 info: Get room executed successfully -2026-08-15 15:24:15 info: Viewer joined the room -2026-08-15 15:24:15 info: Join viewer listner successfully executed -2026-08-15 15:24:15 info: Create viewer transport listner started -2026-08-15 15:24:15 info: Get room started -2026-08-15 15:24:15 info: Get room executed successfully -2026-08-15 15:24:15 info: Get room started -2026-08-15 15:24:15 info: Get room executed successfully -2026-08-15 15:24:15 info: Transport created : ecb6bbf7-cf5a-4d4a-bb96-cedeeb11f1f3 -2026-08-15 15:24:15 info: Viewer transport successfully created -2026-08-15 15:24:15 info: Create viewer transport listner successfully executed -2026-08-15 15:24:15 info: Consume lister started -2026-08-15 15:24:15 info: Get room started -2026-08-15 15:24:15 info: Get room executed successfully -2026-08-15 15:24:15 info: Get room started -2026-08-15 15:24:15 info: Get room executed successfully -2026-08-15 15:24:15 info: Get room started -2026-08-15 15:24:15 info: Get room executed successfully -2026-08-15 15:24:15 info: Viewer media consume successfully executed -2026-08-15 15:24:15 info: Consume lister executed successfully -2026-08-15 15:24:15 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:24:15 info: Connect consumer listner started -2026-08-15 15:24:15 info: Get room started -2026-08-15 15:24:15 info: Get room executed successfully -2026-08-15 15:24:15 info: Consumer transport connected successfully -2026-08-15 15:24:15 info: Connect consumer listner executed successfully -2026-08-15 15:24:15 info: Transport ICE state changed -2026-08-15 15:24:15 info: Transport DTLS state changed -2026-08-15 15:24:15 info: Transport DTLS state changed -2026-08-15 15:24:15 info: Get room started -2026-08-15 15:24:15 info: Get room executed successfully -2026-08-15 15:24:15 info: Viewer consumer resumed -2026-08-15 15:24:15 info: Resume consumer listener executed successfully -2026-08-15 15:24:15 info: Get room started -2026-08-15 15:24:15 info: Get room executed successfully -2026-08-15 15:24:15 info: Viewer consumer resumed -2026-08-15 15:24:15 info: Resume consumer listener executed successfully -2026-08-15 15:24:17 info: Get room started -2026-08-15 15:24:17 info: Get room executed successfully -2026-08-15 15:24:17 info: Get room started -2026-08-15 15:24:17 info: Get room executed successfully -2026-08-15 15:24:17 info: Get room started -2026-08-15 15:24:17 info: Get room executed successfully -2026-08-15 15:24:17 info: Get room started -2026-08-15 15:24:17 info: Get room executed successfully -2026-08-15 15:24:17 info: Get room started -2026-08-15 15:24:17 info: Get room executed successfully -2026-08-15 15:24:17 info: Get room started -2026-08-15 15:24:17 info: Get room executed successfully -2026-08-15 15:24:35 info: Get room started -2026-08-15 15:24:35 info: Get room executed successfully -2026-08-15 15:24:55 info: Get room started -2026-08-15 15:24:55 info: Get room executed successfully -2026-08-15 15:25:15 info: Get room started -2026-08-15 15:25:15 info: Get room executed successfully -2026-08-15 15:25:22 info: User disconnected YmqYuFYBGbuIdVN5AAAB beacuse of transport close -2026-08-15 15:25:22 info: Handle disconnect started -2026-08-15 15:25:22 info: Get room started -2026-08-15 15:25:22 info: Get room executed successfully -2026-08-15 15:25:22 info: Get room started -2026-08-15 15:25:22 info: Get room executed successfully -2026-08-15 15:25:22 info: Remove viewer started -2026-08-15 15:25:22 info: Handle disconnect succesfully -2026-08-15 15:25:22 info: Viewer removed from room -2026-08-15 15:25:22 info: [node-1] Client connected: ERWJ9KiXHsc3YK9xAAAF -2026-08-15 15:25:23 info: User disconnected d5KjGAwCvB0mQEMBAAAD beacuse of transport close -2026-08-15 15:25:23 info: Handle disconnect started -2026-08-15 15:25:23 info: Get room started -2026-08-15 15:25:23 info: Get room executed successfully -2026-08-15 15:25:23 info: Get room started -2026-08-15 15:25:23 info: Get room executed successfully -2026-08-15 15:25:23 info: Get room started -2026-08-15 15:25:23 info: Get room executed successfully -2026-08-15 15:25:23 info: Remove broadcaster success -2026-08-15 15:25:23 info: Handle disconnect succesfully -2026-08-15 15:25:23 info: room:d3503b70-3b7c-4289-af4a-44853bf51f4b room deleted successfully -2026-08-15 15:25:23 info: [node-1] Client connected: kf6X1e2zbN1LstEeAAAH -2026-08-15 15:26:30 info: Redis subscribers initialized -2026-08-15 15:26:37 info: MongoDB connected -2026-08-15 15:26:37 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 15:26:37 info: Creating worker started -2026-08-15 15:26:37 info: Creating worker started -2026-08-15 15:26:37 info: Creating worker started -2026-08-15 15:26:37 info: Worker created successfully -2026-08-15 15:26:37 info: Worker created successfully -2026-08-15 15:26:37 info: Worker created successfully -2026-08-15 15:26:37 info: Worker pool initialized -2026-08-15 15:26:44 info: [node-1] Client connected: p0-2lgCDHSPeMzCWAAAB -2026-08-15 15:26:45 info: [node-1] Client connected: aJwFbM7nkN6L4ubqAAAD -2026-08-15 15:26:51 info: Redis subscribers initialized -2026-08-15 15:26:53 info: MongoDB connected -2026-08-15 15:26:53 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 15:26:53 info: Creating worker started -2026-08-15 15:26:53 info: Creating worker started -2026-08-15 15:26:53 info: Creating worker started -2026-08-15 15:26:53 info: Worker created successfully -2026-08-15 15:26:53 info: Worker created successfully -2026-08-15 15:26:53 info: Worker created successfully -2026-08-15 15:26:53 info: Worker pool initialized -2026-08-15 15:27:00 info: [node-1] Client connected: WtulKIm5RPTSsuUEAAAB -2026-08-15 15:27:02 info: [node-1] Client connected: wxxC04RbG0xT5cI6AAAD -2026-08-15 15:27:15 info: Redis subscribers initialized -2026-08-15 15:27:17 info: MongoDB connected -2026-08-15 15:27:17 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 15:27:17 info: Creating worker started -2026-08-15 15:27:17 info: Creating worker started -2026-08-15 15:27:17 info: Creating worker started -2026-08-15 15:27:17 info: Worker created successfully -2026-08-15 15:27:17 info: Worker created successfully -2026-08-15 15:27:17 info: Worker created successfully -2026-08-15 15:27:17 info: Worker pool initialized -2026-08-15 15:27:24 info: [node-1] Client connected: t0u6i1w2Q2gtZZaiAAAB -2026-08-15 15:27:26 info: [node-1] Client connected: Zxo0yHlvHYJti1ojAAAD -2026-08-15 15:31:17 info: Redis subscribers initialized -2026-08-15 15:31:19 info: MongoDB connected -2026-08-15 15:31:19 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 15:31:19 info: Creating worker started -2026-08-15 15:31:19 info: Creating worker started -2026-08-15 15:31:19 info: Creating worker started -2026-08-15 15:31:19 info: Worker created successfully -2026-08-15 15:31:19 info: Worker created successfully -2026-08-15 15:31:19 info: Worker created successfully -2026-08-15 15:31:19 info: Worker pool initialized -2026-08-15 15:31:24 info: [node-1] Client connected: uECBQvkyjpQ-O26aAAAB -2026-08-15 15:31:25 info: [node-1] Client connected: TXSfkbzDVziBn0BPAAAD -2026-08-15 15:31:42 info: Redis subscribers initialized -2026-08-15 15:31:43 info: MongoDB connected -2026-08-15 15:31:43 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 15:31:43 info: Creating worker started -2026-08-15 15:31:43 info: Creating worker started -2026-08-15 15:31:43 info: Creating worker started -2026-08-15 15:31:43 info: Worker created successfully -2026-08-15 15:31:43 info: Worker created successfully -2026-08-15 15:31:43 info: Worker created successfully -2026-08-15 15:31:43 info: Worker pool initialized -2026-08-15 15:31:49 info: [node-1] Client connected: dFfMLDImZfUPi1IvAAAB -2026-08-15 15:31:50 info: [node-1] Client connected: aOwMI8LIVXClDJZLAAAD -2026-08-15 15:31:50 info: Create room started -2026-08-15 15:31:50 info: Woker loads loaded successfully -2026-08-15 15:31:50 info: Woker assigned succesfully -2026-08-15 15:31:50 info: Creation of router started -2026-08-15 15:31:50 info: Router created -2026-08-15 15:31:50 info: Creation of room successfully executed -2026-08-15 15:31:50 info: Get room started -2026-08-15 15:31:50 info: Get room executed successfully -2026-08-15 15:31:50 info: Broadcaster added to the room -2026-08-15 15:31:50 info: Room created successfully -2026-08-15 15:31:50 info: Get getRouterRtpCapabilities started -2026-08-15 15:31:50 info: Fetching of router started -2026-08-15 15:31:50 info: Fetching of router executed successfully -2026-08-15 15:31:50 info: Rtp capabilities fetched successfully -2026-08-15 15:31:50 info: Get room started -2026-08-15 15:31:50 info: Get room executed successfully -2026-08-15 15:31:50 info: Transport created : 10ca6e5f-06f9-48a6-9548-b0ef97333cb8 -2026-08-15 15:31:50 info: Get room started -2026-08-15 15:31:50 info: Get room executed successfully -2026-08-15 15:31:50 info: Connect broadcaster transport listener started -2026-08-15 15:31:50 info: Get room started -2026-08-15 15:31:50 info: Get room executed successfully -2026-08-15 15:31:50 info: Connect broadcaster transport executed successfully -2026-08-15 15:31:50 info: Transport ICE state changed -2026-08-15 15:31:50 info: Transport DTLS state changed -2026-08-15 15:31:50 info: Producer listener started -2026-08-15 15:31:50 info: Get room started -2026-08-15 15:31:50 info: Get room executed successfully -2026-08-15 15:31:50 info: Transport DTLS state changed -2026-08-15 15:31:50 info: Producer listener executed successfully: -2026-08-15 15:31:50 info: Producer listener started -2026-08-15 15:31:50 info: Get room started -2026-08-15 15:31:50 info: Get room executed successfully -2026-08-15 15:31:50 info: Producer listener executed successfully: -2026-08-15 15:31:55 info: Join as viewer listner started -2026-08-15 15:31:55 info: Rate limiting -2026-08-15 15:31:55 info: Rate limiting -2026-08-15 15:31:55 info: Get room started -2026-08-15 15:31:55 info: Get room executed successfully -2026-08-15 15:31:55 info: Fetching of router started -2026-08-15 15:31:55 info: Fetching of router executed successfully -2026-08-15 15:31:55 info: Get room started -2026-08-15 15:31:55 info: Get room executed successfully -2026-08-15 15:31:55 info: Viewer joined the room -2026-08-15 15:31:55 info: Join viewer listner successfully executed -2026-08-15 15:31:55 info: Create viewer transport listner started -2026-08-15 15:31:55 info: Get room started -2026-08-15 15:31:55 info: Get room executed successfully -2026-08-15 15:31:55 info: Get room started -2026-08-15 15:31:55 info: Get room executed successfully -2026-08-15 15:31:55 info: Transport created : dc5b1ea6-b6c6-4b30-941d-c288061d0e71 -2026-08-15 15:31:55 info: Viewer transport successfully created -2026-08-15 15:31:55 info: Create viewer transport listner successfully executed -2026-08-15 15:31:55 info: Consume lister started -2026-08-15 15:31:55 info: Get room started -2026-08-15 15:31:55 info: Get room executed successfully -2026-08-15 15:31:55 info: Get room started -2026-08-15 15:31:55 info: Get room executed successfully -2026-08-15 15:31:55 info: Get room started -2026-08-15 15:31:55 info: Get room executed successfully -2026-08-15 15:31:55 info: Viewer media consume successfully executed -2026-08-15 15:31:55 info: Consume lister executed successfully -2026-08-15 15:31:55 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:31:55 info: Connect consumer listner started -2026-08-15 15:31:55 info: Get room started -2026-08-15 15:31:55 info: Get room executed successfully -2026-08-15 15:31:55 info: Consumer transport connected successfully -2026-08-15 15:31:55 info: Connect consumer listner executed successfully -2026-08-15 15:31:55 info: Transport ICE state changed -2026-08-15 15:31:55 info: Transport DTLS state changed -2026-08-15 15:31:55 info: Transport DTLS state changed -2026-08-15 15:31:55 info: Get room started -2026-08-15 15:31:55 info: Get room executed successfully -2026-08-15 15:31:55 info: Viewer consumer resumed -2026-08-15 15:31:55 info: Resume consumer listener executed successfully -2026-08-15 15:31:55 info: Get room started -2026-08-15 15:31:55 info: Get room executed successfully -2026-08-15 15:31:55 info: Viewer consumer resumed -2026-08-15 15:31:55 info: Resume consumer listener executed successfully -2026-08-15 15:31:56 info: Get room started -2026-08-15 15:31:56 info: Get room executed successfully -2026-08-15 15:31:56 info: Get room started -2026-08-15 15:31:56 info: Get room executed successfully -2026-08-15 15:31:56 info: Get room started -2026-08-15 15:31:56 info: Get room executed successfully -2026-08-15 15:31:56 info: Get room started -2026-08-15 15:31:56 info: Get room executed successfully -2026-08-15 15:31:56 info: Get room started -2026-08-15 15:31:56 info: Get room executed successfully -2026-08-15 15:31:56 info: Get room started -2026-08-15 15:31:56 info: Get room executed successfully -2026-08-15 15:32:15 info: Get room started -2026-08-15 15:32:15 info: Get room executed successfully -2026-08-15 15:32:23 info: User disconnected aOwMI8LIVXClDJZLAAAD beacuse of transport close -2026-08-15 15:32:23 info: Handle disconnect started -2026-08-15 15:32:23 info: Get room started -2026-08-15 15:32:23 info: Get room executed successfully -2026-08-15 15:32:23 info: Get room started -2026-08-15 15:32:23 info: Get room executed successfully -2026-08-15 15:32:23 info: Get room started -2026-08-15 15:32:23 info: Get room executed successfully -2026-08-15 15:32:23 info: Get room started -2026-08-15 15:32:23 info: Get room executed successfully -2026-08-15 15:32:23 info: Get room started -2026-08-15 15:32:23 info: Get room executed successfully -2026-08-15 15:32:23 info: Remove broadcaster success -2026-08-15 15:32:23 info: Handle disconnect succesfully -2026-08-15 15:32:23 info: room:e6729847-a3c7-4733-8337-37f289a83cbd room deleted successfully -2026-08-15 15:32:24 info: [node-1] Client connected: OXkrZbBEC8Zv4BmTAAAF -2026-08-15 15:32:24 info: User disconnected dFfMLDImZfUPi1IvAAAB beacuse of transport close -2026-08-15 15:32:24 info: Handle disconnect started -2026-08-15 15:32:24 info: [node-1] Client connected: IYZNIq3G5bmH5oyhAAAH -2026-08-15 15:33:34 info: Redis subscribers initialized -2026-08-15 15:33:40 info: MongoDB connected -2026-08-15 15:33:40 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 15:33:40 info: Creating worker started -2026-08-15 15:33:40 info: Creating worker started -2026-08-15 15:33:40 info: Creating worker started -2026-08-15 15:33:40 info: Worker created successfully -2026-08-15 15:33:40 info: Worker created successfully -2026-08-15 15:33:40 info: Worker created successfully -2026-08-15 15:33:40 info: Worker pool initialized -2026-08-15 15:33:50 info: [node-1] Client connected: rrHyXQ2_HjFWGcpyAAAB -2026-08-15 15:33:50 info: [node-1] Client connected: O7JiXD7ONVpoVZwsAAAD -2026-08-15 15:33:50 info: Create room started -2026-08-15 15:33:50 info: Woker loads loaded successfully -2026-08-15 15:33:50 info: Woker assigned succesfully -2026-08-15 15:33:50 info: Creation of router started -2026-08-15 15:33:50 info: Router created -2026-08-15 15:33:50 info: Creation of room successfully executed -2026-08-15 15:33:50 info: Get room started -2026-08-15 15:33:50 info: Get room executed successfully -2026-08-15 15:33:50 info: Broadcaster added to the room -2026-08-15 15:33:50 info: Room created successfully -2026-08-15 15:33:50 info: Get getRouterRtpCapabilities started -2026-08-15 15:33:50 info: Fetching of router started -2026-08-15 15:33:50 info: Fetching of router executed successfully -2026-08-15 15:33:50 info: Rtp capabilities fetched successfully -2026-08-15 15:33:50 info: Get room started -2026-08-15 15:33:50 info: Get room executed successfully -2026-08-15 15:33:50 info: Transport created : 93ad7f40-ed12-4298-b7ba-d1dd0d384592 -2026-08-15 15:33:50 info: Get room started -2026-08-15 15:33:50 info: Get room executed successfully -2026-08-15 15:33:51 info: Connect broadcaster transport listener started -2026-08-15 15:33:51 info: Get room started -2026-08-15 15:33:51 info: Get room executed successfully -2026-08-15 15:33:51 info: Connect broadcaster transport executed successfully -2026-08-15 15:33:51 info: Transport ICE state changed -2026-08-15 15:33:51 info: Transport DTLS state changed -2026-08-15 15:33:51 info: Producer listener started -2026-08-15 15:33:51 info: Get room started -2026-08-15 15:33:51 info: Get room executed successfully -2026-08-15 15:33:51 info: Producer listener executed successfully: -2026-08-15 15:33:51 info: Transport DTLS state changed -2026-08-15 15:33:51 info: Producer listener started -2026-08-15 15:33:51 info: Get room started -2026-08-15 15:33:51 info: Get room executed successfully -2026-08-15 15:33:51 info: Producer listener executed successfully: -2026-08-15 15:33:55 info: Join as viewer listner started -2026-08-15 15:33:55 info: Rate limiting -2026-08-15 15:33:55 info: Rate limiting -2026-08-15 15:33:55 info: Get room started -2026-08-15 15:33:55 info: Get room executed successfully -2026-08-15 15:33:55 info: Fetching of router started -2026-08-15 15:33:55 info: Fetching of router executed successfully -2026-08-15 15:33:55 info: Get room started -2026-08-15 15:33:55 info: Get room executed successfully -2026-08-15 15:33:55 info: Viewer joined the room -2026-08-15 15:33:55 info: Join viewer listner successfully executed -2026-08-15 15:33:55 info: Create viewer transport listner started -2026-08-15 15:33:55 info: Get room started -2026-08-15 15:33:55 info: Get room executed successfully -2026-08-15 15:33:55 info: Get room started -2026-08-15 15:33:55 info: Get room executed successfully -2026-08-15 15:33:55 info: Transport created : ae951ee1-35ca-4682-a795-6357f385df99 -2026-08-15 15:33:55 info: Viewer transport successfully created -2026-08-15 15:33:55 info: Create viewer transport listner successfully executed -2026-08-15 15:33:55 info: Consume lister started -2026-08-15 15:33:55 info: Get room started -2026-08-15 15:33:55 info: Get room executed successfully -2026-08-15 15:33:55 info: Get room started -2026-08-15 15:33:55 info: Get room executed successfully -2026-08-15 15:33:55 info: Get room started -2026-08-15 15:33:55 info: Get room executed successfully -2026-08-15 15:33:55 info: Viewer media consume successfully executed -2026-08-15 15:33:55 info: Consume lister executed successfully -2026-08-15 15:33:55 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:33:55 info: Connect consumer listner started -2026-08-15 15:33:55 info: Get room started -2026-08-15 15:33:55 info: Get room executed successfully -2026-08-15 15:33:55 info: Consumer transport connected successfully -2026-08-15 15:33:55 info: Connect consumer listner executed successfully -2026-08-15 15:33:55 info: Transport ICE state changed -2026-08-15 15:33:55 info: Transport DTLS state changed -2026-08-15 15:33:55 info: Transport DTLS state changed -2026-08-15 15:33:55 info: Get room started -2026-08-15 15:33:55 info: Get room executed successfully -2026-08-15 15:33:55 info: Viewer consumer resumed -2026-08-15 15:33:55 info: Resume consumer listener executed successfully -2026-08-15 15:33:55 info: Get room started -2026-08-15 15:33:55 info: Get room executed successfully -2026-08-15 15:33:55 info: Viewer consumer resumed -2026-08-15 15:33:55 info: Resume consumer listener executed successfully -2026-08-15 15:33:57 info: Get room started -2026-08-15 15:33:57 info: Get room executed successfully -2026-08-15 15:33:57 info: Get room started -2026-08-15 15:33:57 info: Get room executed successfully -2026-08-15 15:33:57 info: Get room started -2026-08-15 15:33:57 info: Get room executed successfully -2026-08-15 15:33:57 info: Get room started -2026-08-15 15:33:57 info: Get room executed successfully -2026-08-15 15:33:57 info: Get room started -2026-08-15 15:33:57 info: Get room executed successfully -2026-08-15 15:33:57 info: Get room started -2026-08-15 15:33:57 info: Get room executed successfully -2026-08-15 15:34:15 info: Get room started -2026-08-15 15:34:15 info: Get room executed successfully -2026-08-15 15:34:35 info: Get room started -2026-08-15 15:34:35 info: Get room executed successfully -2026-08-15 15:34:38 info: User disconnected O7JiXD7ONVpoVZwsAAAD beacuse of transport close -2026-08-15 15:34:38 info: Handle disconnect started -2026-08-15 15:34:38 info: Get room started -2026-08-15 15:34:38 info: Get room executed successfully -2026-08-15 15:34:38 info: Get room started -2026-08-15 15:34:38 info: Get room executed successfully -2026-08-15 15:34:38 info: Get room started -2026-08-15 15:34:38 info: Get room executed successfully -2026-08-15 15:34:38 info: Get room started -2026-08-15 15:34:38 info: Get room executed successfully -2026-08-15 15:34:38 info: Get room started -2026-08-15 15:34:38 info: Get room executed successfully -2026-08-15 15:34:38 info: Remove broadcaster success -2026-08-15 15:34:38 info: Handle disconnect succesfully -2026-08-15 15:34:38 info: room:94d81d33-b378-4269-a18a-91c4335dc4c8 room deleted successfully -2026-08-15 15:34:39 info: [node-1] Client connected: YHmmBZ4zVMrhwDYHAAAF -2026-08-15 15:34:39 info: User disconnected rrHyXQ2_HjFWGcpyAAAB beacuse of transport close -2026-08-15 15:34:39 info: Handle disconnect started -2026-08-15 15:34:39 info: [node-1] Client connected: FKx9BPPjG_8Dj0gaAAAH -2026-08-15 15:35:07 info: Redis subscribers initialized -2026-08-15 15:35:13 info: MongoDB connected -2026-08-15 15:35:13 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 15:35:13 info: Creating worker started -2026-08-15 15:35:13 info: Creating worker started -2026-08-15 15:35:13 info: Creating worker started -2026-08-15 15:35:13 info: Worker created successfully -2026-08-15 15:35:13 info: Worker created successfully -2026-08-15 15:35:13 info: Worker created successfully -2026-08-15 15:35:13 info: Worker pool initialized -2026-08-15 15:35:22 info: [node-1] Client connected: dstCXxU7qpiv5yYIAAAC -2026-08-15 15:35:22 info: [node-1] Client connected: GF6gWl3hsvxsrXQrAAAD -2026-08-15 15:35:44 info: Create room started -2026-08-15 15:35:44 info: Woker loads loaded successfully -2026-08-15 15:35:44 info: Woker assigned succesfully -2026-08-15 15:35:44 info: Creation of router started -2026-08-15 15:35:44 info: Router created -2026-08-15 15:35:44 info: Creation of room successfully executed -2026-08-15 15:35:44 info: Get room started -2026-08-15 15:35:44 info: Get room executed successfully -2026-08-15 15:35:44 info: Broadcaster added to the room -2026-08-15 15:35:44 info: Room created successfully -2026-08-15 15:35:44 info: Get getRouterRtpCapabilities started -2026-08-15 15:35:44 info: Fetching of router started -2026-08-15 15:35:44 info: Fetching of router executed successfully -2026-08-15 15:35:44 info: Rtp capabilities fetched successfully -2026-08-15 15:35:44 info: Get room started -2026-08-15 15:35:44 info: Get room executed successfully -2026-08-15 15:35:44 info: Transport created : 638d85c0-90f5-43ea-b87b-9988efe96db8 -2026-08-15 15:35:44 info: Get room started -2026-08-15 15:35:44 info: Get room executed successfully -2026-08-15 15:35:44 info: Connect broadcaster transport listener started -2026-08-15 15:35:44 info: Get room started -2026-08-15 15:35:44 info: Get room executed successfully -2026-08-15 15:35:44 info: Connect broadcaster transport executed successfully -2026-08-15 15:35:44 info: Transport ICE state changed -2026-08-15 15:35:44 info: Transport DTLS state changed -2026-08-15 15:35:44 info: Producer listener started -2026-08-15 15:35:44 info: Get room started -2026-08-15 15:35:44 info: Get room executed successfully -2026-08-15 15:35:44 info: Transport DTLS state changed -2026-08-15 15:35:44 info: Producer listener executed successfully: -2026-08-15 15:35:44 info: Producer listener started -2026-08-15 15:35:44 info: Get room started -2026-08-15 15:35:44 info: Get room executed successfully -2026-08-15 15:35:44 info: Producer listener executed successfully: -2026-08-15 15:35:49 info: Join as viewer listner started -2026-08-15 15:35:49 info: Rate limiting -2026-08-15 15:35:49 info: Rate limiting -2026-08-15 15:35:49 info: Get room started -2026-08-15 15:35:49 info: Get room executed successfully -2026-08-15 15:35:49 info: Fetching of router started -2026-08-15 15:35:49 info: Fetching of router executed successfully -2026-08-15 15:35:49 info: Get room started -2026-08-15 15:35:49 info: Get room executed successfully -2026-08-15 15:35:49 info: Viewer joined the room -2026-08-15 15:35:49 info: Join viewer listner successfully executed -2026-08-15 15:35:49 info: Create viewer transport listner started -2026-08-15 15:35:49 info: Get room started -2026-08-15 15:35:49 info: Get room executed successfully -2026-08-15 15:35:49 info: Get room started -2026-08-15 15:35:49 info: Get room executed successfully -2026-08-15 15:35:49 info: Transport created : 7285ee15-a9f4-4912-b3ad-ad779b6ad0c7 -2026-08-15 15:35:49 info: Viewer transport successfully created -2026-08-15 15:35:49 info: Create viewer transport listner successfully executed -2026-08-15 15:35:49 info: Consume lister started -2026-08-15 15:35:49 info: Get room started -2026-08-15 15:35:49 info: Get room executed successfully -2026-08-15 15:35:49 info: Get room started -2026-08-15 15:35:49 info: Get room executed successfully -2026-08-15 15:35:49 info: Get room started -2026-08-15 15:35:49 info: Get room executed successfully -2026-08-15 15:35:49 info: Viewer media consume successfully executed -2026-08-15 15:35:49 info: Consume lister executed successfully -2026-08-15 15:35:49 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:35:49 info: Connect consumer listner started -2026-08-15 15:35:49 info: Get room started -2026-08-15 15:35:49 info: Get room executed successfully -2026-08-15 15:35:49 info: Consumer transport connected successfully -2026-08-15 15:35:49 info: Connect consumer listner executed successfully -2026-08-15 15:35:49 info: Transport ICE state changed -2026-08-15 15:35:49 info: Transport DTLS state changed -2026-08-15 15:35:49 info: Transport DTLS state changed -2026-08-15 15:35:49 info: Get room started -2026-08-15 15:35:49 info: Get room executed successfully -2026-08-15 15:35:49 info: Viewer consumer resumed -2026-08-15 15:35:49 info: Resume consumer listener executed successfully -2026-08-15 15:35:49 info: Get room started -2026-08-15 15:35:49 info: Get room executed successfully -2026-08-15 15:35:49 info: Viewer consumer resumed -2026-08-15 15:35:49 info: Resume consumer listener executed successfully -2026-08-15 15:35:51 info: Get room started -2026-08-15 15:35:51 info: Get room executed successfully -2026-08-15 15:35:51 info: Get room started -2026-08-15 15:35:51 info: Get room executed successfully -2026-08-15 15:35:51 info: Get room started -2026-08-15 15:35:51 info: Get room executed successfully -2026-08-15 15:35:51 info: Get room started -2026-08-15 15:35:51 info: Get room executed successfully -2026-08-15 15:35:51 info: Get room started -2026-08-15 15:35:51 info: Get room executed successfully -2026-08-15 15:35:51 info: Get room started -2026-08-15 15:35:51 info: Get room executed successfully -2026-08-15 15:36:09 info: Get room started -2026-08-15 15:36:09 info: Get room executed successfully -2026-08-15 15:36:16 info: User disconnected dstCXxU7qpiv5yYIAAAC beacuse of transport close -2026-08-15 15:36:16 info: Handle disconnect started -2026-08-15 15:36:16 info: Get room started -2026-08-15 15:36:16 info: Get room executed successfully -2026-08-15 15:36:16 info: Get room started -2026-08-15 15:36:16 info: Get room executed successfully -2026-08-15 15:36:16 info: Get room started -2026-08-15 15:36:16 info: Get room executed successfully -2026-08-15 15:36:16 info: Get room started -2026-08-15 15:36:16 info: Get room executed successfully -2026-08-15 15:36:16 info: Get room started -2026-08-15 15:36:16 info: Get room executed successfully -2026-08-15 15:36:16 info: Remove broadcaster success -2026-08-15 15:36:16 info: Handle disconnect succesfully -2026-08-15 15:36:16 info: room:773100c6-15c3-4bc8-b7b5-651385f20127 room deleted successfully -2026-08-15 15:36:17 info: [node-1] Client connected: a0ZwDCa0sI-F1eMQAAAF -2026-08-15 15:36:17 info: User disconnected GF6gWl3hsvxsrXQrAAAD beacuse of transport close -2026-08-15 15:36:17 info: Handle disconnect started -2026-08-15 15:36:17 info: [node-1] Client connected: 1UsHg31lnQnI4pC2AAAH -2026-08-15 15:37:03 info: Redis subscribers initialized -2026-08-15 15:37:05 info: MongoDB connected -2026-08-15 15:37:05 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 15:37:05 info: Creating worker started -2026-08-15 15:37:05 info: Creating worker started -2026-08-15 15:37:05 info: Creating worker started -2026-08-15 15:37:05 info: Worker created successfully -2026-08-15 15:37:05 info: Worker created successfully -2026-08-15 15:37:05 info: Worker created successfully -2026-08-15 15:37:05 info: Worker pool initialized -2026-08-15 15:37:10 info: [node-1] Client connected: WdCYmFqu8nknfJYRAAAB -2026-08-15 15:37:15 info: [node-1] Client connected: AQiL_-A69kSObGooAAAD -2026-08-15 15:37:34 info: Redis subscribers initialized -2026-08-15 15:37:36 info: MongoDB connected -2026-08-15 15:37:36 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 15:37:36 info: Creating worker started -2026-08-15 15:37:36 info: Creating worker started -2026-08-15 15:37:36 info: Creating worker started -2026-08-15 15:37:36 info: Worker created successfully -2026-08-15 15:37:36 info: Worker created successfully -2026-08-15 15:37:36 info: Worker created successfully -2026-08-15 15:37:36 info: Worker pool initialized -2026-08-15 15:37:40 info: [node-1] Client connected: rIjifoK_Z4jLXu76AAAB -2026-08-15 15:37:45 info: [node-1] Client connected: 6xR7HtDT5Vkc5bqRAAAD -2026-08-15 15:38:53 info: Redis subscribers initialized -2026-08-15 15:39:01 info: MongoDB connected -2026-08-15 15:39:01 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 15:39:01 info: Creating worker started -2026-08-15 15:39:01 info: Creating worker started -2026-08-15 15:39:01 info: Creating worker started -2026-08-15 15:39:01 info: Worker created successfully -2026-08-15 15:39:01 info: Worker created successfully -2026-08-15 15:39:01 info: Worker created successfully -2026-08-15 15:39:01 info: Worker pool initialized -2026-08-15 15:39:09 info: Redis subscribers initialized -2026-08-15 15:39:10 info: MongoDB connected -2026-08-15 15:39:10 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 15:39:10 info: Creating worker started -2026-08-15 15:39:10 info: Creating worker started -2026-08-15 15:39:10 info: Creating worker started -2026-08-15 15:39:10 info: Worker created successfully -2026-08-15 15:39:10 info: Worker created successfully -2026-08-15 15:39:10 info: Worker created successfully -2026-08-15 15:39:10 info: Worker pool initialized -2026-08-15 15:39:17 info: [node-1] Client connected: tAObS-kdz5CuSyHAAAAB -2026-08-15 15:39:17 info: Create room started -2026-08-15 15:39:17 info: Woker loads loaded successfully -2026-08-15 15:39:17 info: Woker assigned succesfully -2026-08-15 15:39:17 info: Creation of router started -2026-08-15 15:39:17 info: Router created -2026-08-15 15:39:17 info: Creation of room successfully executed -2026-08-15 15:39:17 info: Get room started -2026-08-15 15:39:17 info: Get room executed successfully -2026-08-15 15:39:17 info: Broadcaster added to the room -2026-08-15 15:39:17 info: Room created successfully -2026-08-15 15:39:17 info: Get getRouterRtpCapabilities started -2026-08-15 15:39:17 info: Create room started -2026-08-15 15:39:17 info: Get room started -2026-08-15 15:39:17 info: Get room executed successfully -2026-08-15 15:39:17 info: Woker loads loaded successfully -2026-08-15 15:39:17 info: Woker assigned succesfully -2026-08-15 15:39:17 info: Creation of router started -2026-08-15 15:39:17 info: Fetching of router started -2026-08-15 15:39:17 info: Fetching of router executed successfully -2026-08-15 15:39:17 info: Rtp capabilities fetched successfully -2026-08-15 15:39:17 info: Router created -2026-08-15 15:39:17 info: Creation of room successfully executed -2026-08-15 15:39:17 info: Get room started -2026-08-15 15:39:17 info: Get room executed successfully -2026-08-15 15:39:17 info: Broadcaster added to the room -2026-08-15 15:39:17 info: Room created successfully -2026-08-15 15:39:17 info: Get getRouterRtpCapabilities started -2026-08-15 15:39:17 info: Fetching of router started -2026-08-15 15:39:17 info: Fetching of router executed successfully -2026-08-15 15:39:17 info: Rtp capabilities fetched successfully -2026-08-15 15:39:17 info: Get room started -2026-08-15 15:39:17 info: Get room executed successfully -2026-08-15 15:39:17 info: Transport created : 047b025d-0782-4f0e-8e14-a2d8965d9ca3 -2026-08-15 15:39:17 info: Get room started -2026-08-15 15:39:17 info: Get room executed successfully -2026-08-15 15:39:17 info: Get room started -2026-08-15 15:39:17 info: Get room executed successfully -2026-08-15 15:39:17 info: Transport created : 28e2a130-b6da-4615-b319-fe23e8474b08 -2026-08-15 15:39:17 info: Get room started -2026-08-15 15:39:17 info: Get room executed successfully -2026-08-15 15:39:19 info: Connect broadcaster transport listener started -2026-08-15 15:39:19 info: Get room started -2026-08-15 15:39:19 info: Get room executed successfully -2026-08-15 15:39:19 info: Connect broadcaster transport executed successfully -2026-08-15 15:39:19 info: Transport ICE state changed -2026-08-15 15:39:19 info: Transport DTLS state changed -2026-08-15 15:39:19 info: Producer listener started -2026-08-15 15:39:19 info: Get room started -2026-08-15 15:39:19 info: Get room executed successfully -2026-08-15 15:39:19 info: Transport DTLS state changed -2026-08-15 15:39:19 info: Producer listener executed successfully: -2026-08-15 15:39:19 info: Producer listener started -2026-08-15 15:39:19 info: Get room started -2026-08-15 15:39:19 info: Get room executed successfully -2026-08-15 15:39:19 info: Producer listener executed successfully: -2026-08-15 15:39:19 info: Producer listener started -2026-08-15 15:39:19 info: Get room started -2026-08-15 15:39:19 info: Get room executed successfully -2026-08-15 15:39:19 info: Producer listener executed successfully: -2026-08-15 15:39:19 info: Producer listener started -2026-08-15 15:39:19 info: Get room started -2026-08-15 15:39:19 info: Get room executed successfully -2026-08-15 15:39:19 info: Producer listener executed successfully: -2026-08-15 15:39:19 info: [node-1] Client connected: jhUIayu_I8jHprazAAAD -2026-08-15 15:39:25 info: Join as viewer listner started -2026-08-15 15:39:25 info: Rate limiting -2026-08-15 15:39:25 info: Rate limiting -2026-08-15 15:39:25 info: Get room started -2026-08-15 15:39:25 info: Get room executed successfully -2026-08-15 15:39:25 info: Fetching of router started -2026-08-15 15:39:25 info: Fetching of router executed successfully -2026-08-15 15:39:25 info: Get room started -2026-08-15 15:39:25 info: Get room executed successfully -2026-08-15 15:39:25 info: Viewer joined the room -2026-08-15 15:39:25 info: Join viewer listner successfully executed -2026-08-15 15:39:25 info: Create viewer transport listner started -2026-08-15 15:39:25 info: Get room started -2026-08-15 15:39:25 info: Get room executed successfully -2026-08-15 15:39:25 info: Get room started -2026-08-15 15:39:25 info: Get room executed successfully -2026-08-15 15:39:25 info: Transport created : 8b1e704f-1ce1-4a2f-8450-4c852263d568 -2026-08-15 15:39:25 info: Viewer transport successfully created -2026-08-15 15:39:25 info: Create viewer transport listner successfully executed -2026-08-15 15:39:25 info: Consume lister started -2026-08-15 15:39:25 info: Get room started -2026-08-15 15:39:25 info: Get room executed successfully -2026-08-15 15:39:25 info: Get room started -2026-08-15 15:39:25 info: Get room executed successfully -2026-08-15 15:39:25 info: Get room started -2026-08-15 15:39:25 info: Get room executed successfully -2026-08-15 15:39:25 info: Get room started -2026-08-15 15:39:25 info: Get room executed successfully -2026-08-15 15:39:25 info: Get room started -2026-08-15 15:39:25 info: Get room executed successfully -2026-08-15 15:39:25 info: Viewer media consume successfully executed -2026-08-15 15:39:25 info: Consume lister executed successfully -2026-08-15 15:39:25 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:39:25 info: Connect consumer listner started -2026-08-15 15:39:25 info: Get room started -2026-08-15 15:39:25 info: Get room executed successfully -2026-08-15 15:39:25 info: Consumer transport connected successfully -2026-08-15 15:39:25 info: Connect consumer listner executed successfully -2026-08-15 15:39:25 info: Transport ICE state changed -2026-08-15 15:39:25 info: Transport DTLS state changed -2026-08-15 15:39:25 info: Transport DTLS state changed -2026-08-15 15:39:25 info: Get room started -2026-08-15 15:39:25 info: Get room executed successfully -2026-08-15 15:39:25 info: Viewer consumer resumed -2026-08-15 15:39:25 info: Resume consumer listener executed successfully -2026-08-15 15:39:25 info: Get room started -2026-08-15 15:39:25 info: Get room executed successfully -2026-08-15 15:39:25 info: Viewer consumer resumed -2026-08-15 15:39:25 info: Resume consumer listener executed successfully -2026-08-15 15:39:25 info: Get room started -2026-08-15 15:39:25 info: Get room executed successfully -2026-08-15 15:39:25 info: Viewer consumer resumed -2026-08-15 15:39:25 info: Resume consumer listener executed successfully -2026-08-15 15:39:25 info: Get room started -2026-08-15 15:39:25 info: Get room executed successfully -2026-08-15 15:39:25 info: Viewer consumer resumed -2026-08-15 15:39:25 info: Resume consumer listener executed successfully -2026-08-15 15:39:27 info: Get room started -2026-08-15 15:39:27 info: Get room executed successfully -2026-08-15 15:39:27 info: Get room started -2026-08-15 15:39:27 info: Get room executed successfully -2026-08-15 15:39:27 info: Get room started -2026-08-15 15:39:27 info: Get room executed successfully -2026-08-15 15:39:27 info: Get room started -2026-08-15 15:39:27 info: Get room executed successfully -2026-08-15 15:39:27 info: Get room started -2026-08-15 15:39:27 info: Get room executed successfully -2026-08-15 15:39:27 info: Get room started -2026-08-15 15:39:27 info: Get room executed successfully -2026-08-15 15:39:46 info: Get room started -2026-08-15 15:39:46 info: Get room executed successfully -2026-08-15 15:39:50 info: User disconnected jhUIayu_I8jHprazAAAD beacuse of transport close -2026-08-15 15:39:50 info: Handle disconnect started -2026-08-15 15:39:50 info: Get room started -2026-08-15 15:39:50 info: Get room executed successfully -2026-08-15 15:39:50 info: Get room started -2026-08-15 15:39:50 info: Get room executed successfully -2026-08-15 15:39:50 info: Remove viewer started -2026-08-15 15:39:50 info: Handle disconnect succesfully -2026-08-15 15:39:50 info: Viewer removed from room -2026-08-15 15:39:50 info: [node-1] Client connected: BOObCMDAytidKw6eAAAF -2026-08-15 15:39:53 info: User disconnected tAObS-kdz5CuSyHAAAAB beacuse of transport close -2026-08-15 15:39:53 info: Handle disconnect started -2026-08-15 15:39:53 info: Get room started -2026-08-15 15:39:53 info: Get room executed successfully -2026-08-15 15:39:53 info: Get room started -2026-08-15 15:39:53 info: Get room executed successfully -2026-08-15 15:39:53 info: Get room started -2026-08-15 15:39:53 info: Get room executed successfully -2026-08-15 15:39:53 info: Remove broadcaster success -2026-08-15 15:39:53 info: Handle disconnect succesfully -2026-08-15 15:39:53 info: room:73418f34-66b0-4dec-866f-08db8a095ac2 room deleted successfully -2026-08-15 15:39:53 info: [node-1] Client connected: 5OVktfUYUQzfoTawAAAH -2026-08-15 15:40:00 info: Create room started -2026-08-15 15:40:00 info: Get room started -2026-08-15 15:40:00 info: Get room executed successfully -2026-08-15 15:40:00 info: Woker loads loaded successfully -2026-08-15 15:40:00 info: Woker assigned succesfully -2026-08-15 15:40:00 info: Creation of router started -2026-08-15 15:40:00 info: Router created -2026-08-15 15:40:00 info: Creation of room successfully executed -2026-08-15 15:40:00 info: Get room started -2026-08-15 15:40:00 info: Get room executed successfully -2026-08-15 15:40:00 info: Broadcaster added to the room -2026-08-15 15:40:00 info: Room created successfully -2026-08-15 15:40:00 info: Get getRouterRtpCapabilities started -2026-08-15 15:40:00 info: Fetching of router started -2026-08-15 15:40:00 info: Fetching of router executed successfully -2026-08-15 15:40:00 info: Rtp capabilities fetched successfully -2026-08-15 15:40:01 info: Get room started -2026-08-15 15:40:01 info: Get room executed successfully -2026-08-15 15:40:01 info: Transport created : ae3bac09-a3cf-4c04-8446-5a31b770dd01 -2026-08-15 15:40:01 info: Get room started -2026-08-15 15:40:01 info: Get room executed successfully -2026-08-15 15:40:01 info: Connect broadcaster transport listener started -2026-08-15 15:40:01 info: Get room started -2026-08-15 15:40:01 info: Get room executed successfully -2026-08-15 15:40:01 info: Connect broadcaster transport executed successfully -2026-08-15 15:40:01 info: Transport ICE state changed -2026-08-15 15:40:01 info: Transport DTLS state changed -2026-08-15 15:40:01 info: Producer listener started -2026-08-15 15:40:01 info: Get room started -2026-08-15 15:40:01 info: Get room executed successfully -2026-08-15 15:40:01 info: Transport DTLS state changed -2026-08-15 15:40:01 info: Producer listener executed successfully: -2026-08-15 15:40:01 info: Producer listener started -2026-08-15 15:40:01 info: Get room started -2026-08-15 15:40:01 info: Get room executed successfully -2026-08-15 15:40:01 info: Producer listener executed successfully: -2026-08-15 15:40:07 info: Join as viewer listner started -2026-08-15 15:40:07 info: Rate limiting -2026-08-15 15:40:07 info: Rate limiting -2026-08-15 15:40:07 info: Get room started -2026-08-15 15:40:07 info: Get room executed successfully -2026-08-15 15:40:07 info: Fetching of router started -2026-08-15 15:40:07 info: Fetching of router executed successfully -2026-08-15 15:40:07 info: Get room started -2026-08-15 15:40:07 info: Get room executed successfully -2026-08-15 15:40:07 info: Viewer joined the room -2026-08-15 15:40:07 info: Join viewer listner successfully executed -2026-08-15 15:40:07 info: Create viewer transport listner started -2026-08-15 15:40:07 info: Get room started -2026-08-15 15:40:07 info: Get room executed successfully -2026-08-15 15:40:07 info: Get room started -2026-08-15 15:40:07 info: Get room executed successfully -2026-08-15 15:40:07 info: Transport created : bb49e0c5-12c5-402e-a246-499b37149314 -2026-08-15 15:40:07 info: Viewer transport successfully created -2026-08-15 15:40:07 info: Create viewer transport listner successfully executed -2026-08-15 15:40:07 info: Consume lister started -2026-08-15 15:40:07 info: Get room started -2026-08-15 15:40:07 info: Get room executed successfully -2026-08-15 15:40:07 info: Get room started -2026-08-15 15:40:07 info: Get room executed successfully -2026-08-15 15:40:07 info: Get room started -2026-08-15 15:40:07 info: Get room executed successfully -2026-08-15 15:40:07 info: Viewer media consume successfully executed -2026-08-15 15:40:07 info: Consume lister executed successfully -2026-08-15 15:40:07 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:07 info: Connect consumer listner started -2026-08-15 15:40:07 info: Get room started -2026-08-15 15:40:07 info: Get room executed successfully -2026-08-15 15:40:07 info: Consumer transport connected successfully -2026-08-15 15:40:07 info: Connect consumer listner executed successfully -2026-08-15 15:40:07 info: Transport ICE state changed -2026-08-15 15:40:07 info: Transport DTLS state changed -2026-08-15 15:40:07 info: Transport DTLS state changed -2026-08-15 15:40:07 info: Get room started -2026-08-15 15:40:07 info: Get room executed successfully -2026-08-15 15:40:07 info: Viewer consumer resumed -2026-08-15 15:40:07 info: Resume consumer listener executed successfully -2026-08-15 15:40:07 info: Get room started -2026-08-15 15:40:07 info: Get room executed successfully -2026-08-15 15:40:07 info: Viewer consumer resumed -2026-08-15 15:40:07 info: Resume consumer listener executed successfully -2026-08-15 15:40:08 info: Get room started -2026-08-15 15:40:08 info: Get room executed successfully -2026-08-15 15:40:08 info: Get room started -2026-08-15 15:40:08 info: Get room executed successfully -2026-08-15 15:40:08 info: Get room started -2026-08-15 15:40:08 info: Get room executed successfully -2026-08-15 15:40:08 info: Get room started -2026-08-15 15:40:08 info: Get room executed successfully -2026-08-15 15:40:08 info: Get room started -2026-08-15 15:40:08 info: Get room executed successfully -2026-08-15 15:40:08 info: Get room started -2026-08-15 15:40:08 info: Get room executed successfully -2026-08-15 15:40:21 info: User disconnected BOObCMDAytidKw6eAAAF beacuse of transport close -2026-08-15 15:40:21 info: Handle disconnect started -2026-08-15 15:40:21 info: Get room started -2026-08-15 15:40:21 info: Get room executed successfully -2026-08-15 15:40:21 info: Get room started -2026-08-15 15:40:21 info: Get room executed successfully -2026-08-15 15:40:21 info: Remove viewer started -2026-08-15 15:40:21 info: Handle disconnect succesfully -2026-08-15 15:40:21 info: Viewer removed from room -2026-08-15 15:40:21 info: [node-1] Client connected: EPw_eug3sXjPl3ZLAAAJ -2026-08-15 15:40:22 info: Join as viewer listner started -2026-08-15 15:40:22 info: Rate limiting -2026-08-15 15:40:22 info: Rate limiting -2026-08-15 15:40:22 info: Get room started -2026-08-15 15:40:22 error: Room not found -2026-08-15 15:40:22 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:101:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:22 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:113:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:24 info: Join as viewer listner started -2026-08-15 15:40:24 info: Rate limiting -2026-08-15 15:40:24 info: Rate limiting -2026-08-15 15:40:24 info: Get room started -2026-08-15 15:40:24 error: Room not found -2026-08-15 15:40:24 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:101:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:24 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:113:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:32 info: Join as viewer listner started -2026-08-15 15:40:32 info: Rate limiting -2026-08-15 15:40:32 info: Rate limiting -2026-08-15 15:40:32 info: Get room started -2026-08-15 15:40:32 error: Room not found -2026-08-15 15:40:32 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:101:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:32 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:113:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:32 info: Join as viewer listner started -2026-08-15 15:40:32 info: Rate limiting -2026-08-15 15:40:32 info: Rate limiting -2026-08-15 15:40:32 info: Get room started -2026-08-15 15:40:32 error: Room not found -2026-08-15 15:40:32 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:101:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:32 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:113:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:33 info: Join as viewer listner started -2026-08-15 15:40:33 info: Rate limiting -2026-08-15 15:40:33 info: Rate limiting -2026-08-15 15:40:33 info: Get room started -2026-08-15 15:40:33 error: Room not found -2026-08-15 15:40:33 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:101:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:33 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:113:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:34 info: User disconnected 5OVktfUYUQzfoTawAAAH beacuse of transport close -2026-08-15 15:40:34 info: Handle disconnect started -2026-08-15 15:40:34 info: Get room started -2026-08-15 15:40:34 info: Get room executed successfully -2026-08-15 15:40:34 info: Get room started -2026-08-15 15:40:34 info: Get room executed successfully -2026-08-15 15:40:34 info: Get room started -2026-08-15 15:40:34 info: Get room executed successfully -2026-08-15 15:40:34 info: Remove broadcaster success -2026-08-15 15:40:34 info: Handle disconnect succesfully -2026-08-15 15:40:34 info: room:1d9aaf5f-2072-4364-9bd5-dee65231d14d room deleted successfully -2026-08-15 15:40:34 info: [node-1] Client connected: U-9mYXpgCpmQG06-AAAL -2026-08-15 15:40:35 info: Create room started -2026-08-15 15:40:35 info: Get room started -2026-08-15 15:40:35 info: Get room executed successfully -2026-08-15 15:40:35 info: Woker loads loaded successfully -2026-08-15 15:40:35 info: Woker assigned succesfully -2026-08-15 15:40:35 info: Creation of router started -2026-08-15 15:40:35 info: Router created -2026-08-15 15:40:35 info: Creation of room successfully executed -2026-08-15 15:40:35 info: Get room started -2026-08-15 15:40:35 info: Get room executed successfully -2026-08-15 15:40:35 info: Broadcaster added to the room -2026-08-15 15:40:35 info: Room created successfully -2026-08-15 15:40:35 info: Get getRouterRtpCapabilities started -2026-08-15 15:40:35 info: Fetching of router started -2026-08-15 15:40:35 info: Fetching of router executed successfully -2026-08-15 15:40:35 info: Rtp capabilities fetched successfully -2026-08-15 15:40:35 info: Get room started -2026-08-15 15:40:35 info: Get room executed successfully -2026-08-15 15:40:35 info: Transport created : eef16c53-894b-474f-8f44-eeac6963dab6 -2026-08-15 15:40:35 info: Get room started -2026-08-15 15:40:35 info: Get room executed successfully -2026-08-15 15:40:35 info: Connect broadcaster transport listener started -2026-08-15 15:40:35 info: Get room started -2026-08-15 15:40:35 info: Get room executed successfully -2026-08-15 15:40:35 info: Connect broadcaster transport executed successfully -2026-08-15 15:40:35 info: Transport ICE state changed -2026-08-15 15:40:35 info: Transport DTLS state changed -2026-08-15 15:40:35 info: Producer listener started -2026-08-15 15:40:35 info: Get room started -2026-08-15 15:40:35 info: Get room executed successfully -2026-08-15 15:40:35 info: Producer listener executed successfully: -2026-08-15 15:40:35 info: Transport DTLS state changed -2026-08-15 15:40:35 info: Producer listener started -2026-08-15 15:40:35 info: Get room started -2026-08-15 15:40:35 info: Get room executed successfully -2026-08-15 15:40:35 info: Producer listener executed successfully: -2026-08-15 15:40:39 info: Join as viewer listner started -2026-08-15 15:40:39 info: Rate limiting -2026-08-15 15:40:39 info: Rate limiting -2026-08-15 15:40:39 info: Get room started -2026-08-15 15:40:39 info: Get room executed successfully -2026-08-15 15:40:39 info: Fetching of router started -2026-08-15 15:40:39 info: Fetching of router executed successfully -2026-08-15 15:40:39 info: Get room started -2026-08-15 15:40:39 info: Get room executed successfully -2026-08-15 15:40:39 info: Viewer joined the room -2026-08-15 15:40:39 info: Join viewer listner successfully executed -2026-08-15 15:40:39 info: Create viewer transport listner started -2026-08-15 15:40:39 info: Get room started -2026-08-15 15:40:39 info: Get room executed successfully -2026-08-15 15:40:39 info: Get room started -2026-08-15 15:40:39 info: Get room executed successfully -2026-08-15 15:40:39 info: Transport created : ac32f8cc-5b9c-43e6-9ce2-717af3151751 -2026-08-15 15:40:39 info: Viewer transport successfully created -2026-08-15 15:40:39 info: Create viewer transport listner successfully executed -2026-08-15 15:40:39 info: Consume lister started -2026-08-15 15:40:39 info: Get room started -2026-08-15 15:40:39 info: Get room executed successfully -2026-08-15 15:40:39 info: Get room started -2026-08-15 15:40:39 info: Get room executed successfully -2026-08-15 15:40:39 info: Get room started -2026-08-15 15:40:39 info: Get room executed successfully -2026-08-15 15:40:39 info: Viewer media consume successfully executed -2026-08-15 15:40:39 info: Consume lister executed successfully -2026-08-15 15:40:39 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:39 info: Connect consumer listner started -2026-08-15 15:40:39 info: Get room started -2026-08-15 15:40:39 info: Get room executed successfully -2026-08-15 15:40:39 info: Consumer transport connected successfully -2026-08-15 15:40:39 info: Connect consumer listner executed successfully -2026-08-15 15:40:39 info: Transport ICE state changed -2026-08-15 15:40:39 info: Transport DTLS state changed -2026-08-15 15:40:39 info: Transport DTLS state changed -2026-08-15 15:40:39 info: Get room started -2026-08-15 15:40:39 info: Get room executed successfully -2026-08-15 15:40:39 info: Viewer consumer resumed -2026-08-15 15:40:39 info: Resume consumer listener executed successfully -2026-08-15 15:40:39 info: Get room started -2026-08-15 15:40:39 info: Get room executed successfully -2026-08-15 15:40:39 info: Viewer consumer resumed -2026-08-15 15:40:39 info: Resume consumer listener executed successfully -2026-08-15 15:40:40 info: Get room started -2026-08-15 15:40:40 info: Get room executed successfully -2026-08-15 15:40:40 info: Get room started -2026-08-15 15:40:40 info: Get room executed successfully -2026-08-15 15:40:40 info: Get room started -2026-08-15 15:40:40 info: Get room executed successfully -2026-08-15 15:40:40 info: Get room started -2026-08-15 15:40:40 info: Get room executed successfully -2026-08-15 15:40:40 info: Get room started -2026-08-15 15:40:40 info: Get room executed successfully -2026-08-15 15:40:40 info: Get room started -2026-08-15 15:40:40 info: Get room executed successfully -2026-08-15 15:40:59 info: Get room started -2026-08-15 15:40:59 info: Get room executed successfully -2026-08-15 15:41:19 info: Get room started -2026-08-15 15:41:19 info: Get room executed successfully -2026-08-15 15:41:39 info: Get room started -2026-08-15 15:41:39 info: Get room executed successfully -2026-08-15 15:41:59 info: Get room started -2026-08-15 15:41:59 info: Get room executed successfully -2026-08-15 15:42:12 info: User disconnected U-9mYXpgCpmQG06-AAAL beacuse of transport close -2026-08-15 15:42:12 info: Handle disconnect started -2026-08-15 15:42:12 info: Get room started -2026-08-15 15:42:12 info: Get room executed successfully -2026-08-15 15:42:12 info: Get room started -2026-08-15 15:42:12 info: Get room executed successfully -2026-08-15 15:42:12 info: Get room started -2026-08-15 15:42:12 info: Get room executed successfully -2026-08-15 15:42:12 info: Get room started -2026-08-15 15:42:12 info: Get room executed successfully -2026-08-15 15:42:12 info: Get room started -2026-08-15 15:42:12 info: Get room executed successfully -2026-08-15 15:42:12 info: Remove broadcaster success -2026-08-15 15:42:12 info: Handle disconnect succesfully -2026-08-15 15:42:12 info: room:94d7c3fe-955d-422f-9c81-afbb69bab9a2 room deleted successfully -2026-08-15 15:42:12 info: [node-1] Client connected: EW_qqfDm0xKc4eyFAAAN -2026-08-15 15:42:13 info: User disconnected EPw_eug3sXjPl3ZLAAAJ beacuse of transport close -2026-08-15 15:42:13 info: Handle disconnect started -2026-08-15 15:42:13 info: [node-1] Client connected: xXkH2GH6BTo27kJYAAAP -2026-08-15 15:42:14 info: User disconnected EW_qqfDm0xKc4eyFAAAN beacuse of transport close -2026-08-15 15:42:14 info: Handle disconnect started -2026-08-15 15:42:14 error: RoomId not found -2026-08-15 15:42:15 warn: IDK -2026-08-15 15:42:15 info: [node-1] Client connected: YmhWapjwYBqHMJBCAAAR -2026-08-15 15:42:19 info: Create room started -2026-08-15 15:42:19 info: Get room started -2026-08-15 15:42:19 info: Get room executed successfully -2026-08-15 15:42:19 info: Woker loads loaded successfully -2026-08-15 15:42:19 info: Woker assigned succesfully -2026-08-15 15:42:19 info: Creation of router started -2026-08-15 15:42:19 info: Router created -2026-08-15 15:42:19 info: Creation of room successfully executed -2026-08-15 15:42:19 info: Get room started -2026-08-15 15:42:19 info: Get room executed successfully -2026-08-15 15:42:19 info: Broadcaster added to the room -2026-08-15 15:42:19 info: Room created successfully -2026-08-15 15:42:19 info: Get getRouterRtpCapabilities started -2026-08-15 15:42:19 info: Fetching of router started -2026-08-15 15:42:19 info: Fetching of router executed successfully -2026-08-15 15:42:19 info: Rtp capabilities fetched successfully -2026-08-15 15:42:19 info: Get room started -2026-08-15 15:42:19 info: Get room executed successfully -2026-08-15 15:42:19 info: Transport created : a3b0bd40-1d25-481f-b809-438ee5231dc9 -2026-08-15 15:42:19 info: Get room started -2026-08-15 15:42:19 info: Get room executed successfully -2026-08-15 15:42:19 info: Connect broadcaster transport listener started -2026-08-15 15:42:19 info: Get room started -2026-08-15 15:42:19 info: Get room executed successfully -2026-08-15 15:42:19 info: Connect broadcaster transport executed successfully -2026-08-15 15:42:19 info: Transport ICE state changed -2026-08-15 15:42:19 info: Transport DTLS state changed -2026-08-15 15:42:19 info: Producer listener started -2026-08-15 15:42:19 info: Get room started -2026-08-15 15:42:19 info: Get room executed successfully -2026-08-15 15:42:19 info: Producer listener executed successfully: -2026-08-15 15:42:19 info: Transport DTLS state changed -2026-08-15 15:42:19 info: Producer listener started -2026-08-15 15:42:19 info: Get room started -2026-08-15 15:42:19 info: Get room executed successfully -2026-08-15 15:42:19 info: Producer listener executed successfully: -2026-08-15 15:42:26 info: Join as viewer listner started -2026-08-15 15:42:26 info: Rate limiting -2026-08-15 15:42:26 info: Rate limiting -2026-08-15 15:42:26 info: Get room started -2026-08-15 15:42:26 error: Room not found -2026-08-15 15:42:26 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:101:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:42:26 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:113:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:42:33 info: Join as viewer listner started -2026-08-15 15:42:33 info: Rate limiting -2026-08-15 15:42:33 info: Rate limiting -2026-08-15 15:42:33 info: Get room started -2026-08-15 15:42:33 info: Get room executed successfully -2026-08-15 15:42:33 info: Fetching of router started -2026-08-15 15:42:33 info: Fetching of router executed successfully -2026-08-15 15:42:33 info: Get room started -2026-08-15 15:42:33 info: Get room executed successfully -2026-08-15 15:42:33 info: Viewer joined the room -2026-08-15 15:42:33 info: Join viewer listner successfully executed -2026-08-15 15:42:33 info: Create viewer transport listner started -2026-08-15 15:42:33 info: Get room started -2026-08-15 15:42:33 info: Get room executed successfully -2026-08-15 15:42:33 info: Get room started -2026-08-15 15:42:33 info: Get room executed successfully -2026-08-15 15:42:33 info: Transport created : 213ed704-0e41-4b16-8a9d-ddc477a676e5 -2026-08-15 15:42:33 info: Viewer transport successfully created -2026-08-15 15:42:33 info: Create viewer transport listner successfully executed -2026-08-15 15:42:33 info: Consume lister started -2026-08-15 15:42:33 info: Get room started -2026-08-15 15:42:33 info: Get room executed successfully -2026-08-15 15:42:33 info: Get room started -2026-08-15 15:42:33 info: Get room executed successfully -2026-08-15 15:42:33 info: Get room started -2026-08-15 15:42:33 info: Get room executed successfully -2026-08-15 15:42:33 info: Viewer media consume successfully executed -2026-08-15 15:42:33 info: Consume lister executed successfully -2026-08-15 15:42:33 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:42:33 info: Connect consumer listner started -2026-08-15 15:42:33 info: Get room started -2026-08-15 15:42:33 info: Get room executed successfully -2026-08-15 15:42:33 info: Consumer transport connected successfully -2026-08-15 15:42:33 info: Connect consumer listner executed successfully -2026-08-15 15:42:33 info: Transport ICE state changed -2026-08-15 15:42:33 info: Transport DTLS state changed -2026-08-15 15:42:33 info: Transport DTLS state changed -2026-08-15 15:42:33 info: Get room started -2026-08-15 15:42:33 info: Get room executed successfully -2026-08-15 15:42:33 info: Viewer consumer resumed -2026-08-15 15:42:33 info: Resume consumer listener executed successfully -2026-08-15 15:42:33 info: Get room started -2026-08-15 15:42:33 info: Get room executed successfully -2026-08-15 15:42:33 info: Viewer consumer resumed -2026-08-15 15:42:33 info: Resume consumer listener executed successfully -2026-08-15 15:42:37 info: Get room started -2026-08-15 15:42:37 info: Get room executed successfully -2026-08-15 15:42:37 info: Get room started -2026-08-15 15:42:37 info: Get room executed successfully -2026-08-15 15:42:37 info: Get room started -2026-08-15 15:42:37 info: Get room executed successfully -2026-08-15 15:42:37 info: Get room started -2026-08-15 15:42:37 info: Get room executed successfully -2026-08-15 15:42:37 info: Get room started -2026-08-15 15:42:37 info: Get room executed successfully -2026-08-15 15:42:37 info: Get room started -2026-08-15 15:42:37 info: Get room executed successfully -2026-08-15 15:42:53 info: Get room started -2026-08-15 15:42:53 info: Get room executed successfully -2026-08-15 15:43:14 info: Get room started -2026-08-15 15:43:14 info: Get room executed successfully -2026-08-15 15:43:21 info: Transport DTLS state changed -2026-08-15 15:43:21 info: User disconnected xXkH2GH6BTo27kJYAAAP beacuse of transport close -2026-08-15 15:43:21 info: Handle disconnect started -2026-08-15 15:43:21 info: Get room started -2026-08-15 15:43:21 info: Get room executed successfully -2026-08-15 15:43:21 info: Get room started -2026-08-15 15:43:21 info: Get room executed successfully -2026-08-15 15:43:21 info: Remove viewer started -2026-08-15 15:43:21 info: Handle disconnect succesfully -2026-08-15 15:43:21 info: Viewer removed from room -2026-08-15 15:43:21 info: User disconnected YmhWapjwYBqHMJBCAAAR beacuse of transport close -2026-08-15 15:43:21 info: Handle disconnect started -2026-08-15 15:43:21 info: Get room started -2026-08-15 15:43:21 info: Get room executed successfully -2026-08-15 15:43:21 info: Get room started -2026-08-15 15:43:21 info: Get room executed successfully -2026-08-15 15:43:21 info: Get room started -2026-08-15 15:43:21 info: Get room executed successfully -2026-08-15 15:43:21 info: Remove broadcaster success -2026-08-15 15:43:21 info: Handle disconnect succesfully -2026-08-15 15:43:21 info: room:4ebe0d66-420a-442a-9952-e54c1bec9a0a room deleted successfully -2026-08-15 16:38:57 info: Redis subscribers initialized -2026-08-15 16:38:59 info: MongoDB connected -2026-08-15 16:38:59 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 16:38:59 info: Creating worker started -2026-08-15 16:38:59 info: Creating worker started -2026-08-15 16:38:59 info: Creating worker started -2026-08-15 16:38:59 info: Worker created successfully -2026-08-15 16:38:59 info: Worker created successfully -2026-08-15 16:38:59 info: Worker created successfully -2026-08-15 16:38:59 info: Worker pool initialized -2026-08-15 16:39:09 info: SignIn started -2026-08-15 16:39:09 info: SignIn completed -2026-08-15 16:39:09 info: [node-1] Client connected: PZIjd9PqccSOaYYVAAAB -2026-08-15 16:39:13 info: SignIn started -2026-08-15 16:39:13 info: SignIn completed -2026-08-15 16:39:13 info: [node-1] Client connected: ReTXchYNYaxnhejWAAAD -2026-08-15 16:39:18 info: Create room started -2026-08-15 16:39:18 info: Woker loads loaded successfully -2026-08-15 16:39:18 info: Woker assigned succesfully -2026-08-15 16:39:18 info: Creation of router started -2026-08-15 16:39:18 info: Router created -2026-08-15 16:39:18 info: Creation of room successfully executed -2026-08-15 16:39:18 info: Get room started -2026-08-15 16:39:18 info: Get room executed successfully -2026-08-15 16:39:18 info: Broadcaster added to the room -2026-08-15 16:39:18 info: Room created successfully -2026-08-15 16:39:18 info: Get getRouterRtpCapabilities started -2026-08-15 16:39:18 info: Fetching of router started -2026-08-15 16:39:18 info: Fetching of router executed successfully -2026-08-15 16:39:18 info: Rtp capabilities fetched successfully -2026-08-15 16:39:18 info: Get room started -2026-08-15 16:39:18 info: Get room executed successfully -2026-08-15 16:39:18 info: Transport created : 762a0c4e-0eea-4761-b330-7ff0a5d61798 -2026-08-15 16:39:18 info: Get room started -2026-08-15 16:39:18 info: Get room executed successfully -2026-08-15 16:39:21 info: Connect broadcaster transport listener started -2026-08-15 16:39:21 info: Get room started -2026-08-15 16:39:21 info: Get room executed successfully -2026-08-15 16:39:21 info: Connect broadcaster transport executed successfully -2026-08-15 16:39:21 info: Transport ICE state changed -2026-08-15 16:39:21 info: Transport DTLS state changed -2026-08-15 16:39:21 info: Producer listener started -2026-08-15 16:39:21 info: Get room started -2026-08-15 16:39:21 info: Get room executed successfully -2026-08-15 16:39:21 info: Producer listener executed successfully: -2026-08-15 16:39:21 info: Transport DTLS state changed -2026-08-15 16:39:21 info: Producer listener started -2026-08-15 16:39:21 info: Get room started -2026-08-15 16:39:21 info: Get room executed successfully -2026-08-15 16:39:21 info: Producer listener executed successfully: -2026-08-15 16:39:28 info: Join as viewer listner started -2026-08-15 16:39:28 info: Rate limiting -2026-08-15 16:39:28 info: Rate limiting -2026-08-15 16:39:28 info: Get room started -2026-08-15 16:39:28 info: Get room executed successfully -2026-08-15 16:39:28 info: Fetching of router started -2026-08-15 16:39:28 info: Fetching of router executed successfully -2026-08-15 16:39:28 info: Get room started -2026-08-15 16:39:28 info: Get room executed successfully -2026-08-15 16:39:28 info: Viewer joined the room -2026-08-15 16:39:28 info: Join viewer listner successfully executed -2026-08-15 16:39:28 info: Create viewer transport listner started -2026-08-15 16:39:28 info: Get room started -2026-08-15 16:39:28 info: Get room executed successfully -2026-08-15 16:39:28 info: Get room started -2026-08-15 16:39:28 info: Get room executed successfully -2026-08-15 16:39:28 info: Transport created : 061255f9-89ce-4c50-add5-4fa0c1dac125 -2026-08-15 16:39:28 info: Viewer transport successfully created -2026-08-15 16:39:28 info: Create viewer transport listner successfully executed -2026-08-15 16:39:28 info: Consume lister started -2026-08-15 16:39:28 info: Get room started -2026-08-15 16:39:28 info: Get room executed successfully -2026-08-15 16:39:28 info: Get room started -2026-08-15 16:39:28 info: Get room executed successfully -2026-08-15 16:39:28 info: Get room started -2026-08-15 16:39:28 info: Get room executed successfully -2026-08-15 16:39:28 info: Viewer media consume successfully executed -2026-08-15 16:39:28 info: Consume lister executed successfully -2026-08-15 16:39:28 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 16:39:28 info: Connect consumer listner started -2026-08-15 16:39:28 info: Get room started -2026-08-15 16:39:28 info: Get room executed successfully -2026-08-15 16:39:28 info: Consumer transport connected successfully -2026-08-15 16:39:28 info: Connect consumer listner executed successfully -2026-08-15 16:39:28 info: Transport ICE state changed -2026-08-15 16:39:28 info: Transport DTLS state changed -2026-08-15 16:39:28 info: Transport DTLS state changed -2026-08-15 16:39:28 info: Get room started -2026-08-15 16:39:28 info: Get room executed successfully -2026-08-15 16:39:28 info: Viewer consumer resumed -2026-08-15 16:39:28 info: Resume consumer listener executed successfully -2026-08-15 16:39:28 info: Get room started -2026-08-15 16:39:28 info: Get room executed successfully -2026-08-15 16:39:28 info: Viewer consumer resumed -2026-08-15 16:39:28 info: Resume consumer listener executed successfully -2026-08-15 16:39:32 info: Get room started -2026-08-15 16:39:32 info: Get room executed successfully -2026-08-15 16:39:32 info: Get room started -2026-08-15 16:39:32 info: Get room executed successfully -2026-08-15 16:39:32 info: Get room started -2026-08-15 16:39:32 info: Get room executed successfully -2026-08-15 16:39:32 info: Get room started -2026-08-15 16:39:32 info: Get room executed successfully -2026-08-15 16:39:32 info: Get room started -2026-08-15 16:39:32 info: Get room executed successfully -2026-08-15 16:39:32 info: Get room started -2026-08-15 16:39:32 info: Get room executed successfully -2026-08-15 16:39:46 info: Get room started -2026-08-15 16:39:46 info: Get room executed successfully -2026-08-15 16:39:46 warn: No active recording for room 3cc3c364-bfa7-4205-af1a-73133dd2b275 -2026-08-15 16:39:46 error: TypeError: Cannot read properties of undefined (reading 'audioPort') - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:229:39) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 16:39:48 info: Get room started -2026-08-15 16:39:48 info: Get room executed successfully -2026-08-15 16:40:08 info: Get room started -2026-08-15 16:40:08 info: Get room executed successfully -2026-08-15 16:40:16 info: User disconnected PZIjd9PqccSOaYYVAAAB beacuse of transport close -2026-08-15 16:40:16 info: Handle disconnect started -2026-08-15 16:40:16 info: Get room started -2026-08-15 16:40:16 info: Get room executed successfully -2026-08-15 16:40:16 info: Get room started -2026-08-15 16:40:16 info: Get room executed successfully -2026-08-15 16:40:16 info: Get room started -2026-08-15 16:40:16 info: Get room executed successfully -2026-08-15 16:40:16 info: Get room started -2026-08-15 16:40:16 info: Get room executed successfully -2026-08-15 16:40:16 info: Get room started -2026-08-15 16:40:16 info: Get room executed successfully -2026-08-15 16:40:16 info: Remove broadcaster success -2026-08-15 16:40:16 info: Handle disconnect succesfully -2026-08-15 16:40:16 info: room:3cc3c364-bfa7-4205-af1a-73133dd2b275 room deleted successfully -2026-08-15 16:40:17 info: [node-1] Client connected: CGRWFFAMubNL1K6wAAAF -2026-08-15 16:40:17 info: User disconnected ReTXchYNYaxnhejWAAAD beacuse of transport close -2026-08-15 16:40:17 info: Handle disconnect started -2026-08-15 16:40:17 info: [node-1] Client connected: A2Ojse6btVUsUbmAAAAH -2026-08-15 16:41:22 info: Redis subscribers initialized -2026-08-15 16:41:24 info: MongoDB connected -2026-08-15 16:41:24 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 16:41:24 info: Creating worker started -2026-08-15 16:41:24 info: Creating worker started -2026-08-15 16:41:24 info: Creating worker started -2026-08-15 16:41:24 info: Worker created successfully -2026-08-15 16:41:24 info: Worker created successfully -2026-08-15 16:41:24 info: Worker created successfully -2026-08-15 16:41:24 info: Worker pool initialized -2026-08-15 16:41:28 info: [node-1] Client connected: Zstz_1exrj0k1xrZAAAB -2026-08-15 16:41:30 info: [node-1] Client connected: 3HMsbBzIr5xTorWCAAAD -2026-08-15 16:41:57 info: Redis subscribers initialized -2026-08-15 16:41:59 info: MongoDB connected -2026-08-15 16:41:59 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 16:41:59 info: Creating worker started -2026-08-15 16:41:59 info: Creating worker started -2026-08-15 16:41:59 info: Creating worker started -2026-08-15 16:41:59 info: Worker created successfully -2026-08-15 16:41:59 info: Worker created successfully -2026-08-15 16:41:59 info: Worker created successfully -2026-08-15 16:41:59 info: Worker pool initialized -2026-08-15 16:42:03 info: [node-1] Client connected: 5MOk-sY8USfBsFIaAAAB -2026-08-15 16:42:04 info: [node-1] Client connected: jazgbglXsZv1Hf2IAAAD -2026-08-15 16:43:56 info: Redis subscribers initialized -2026-08-15 16:44:02 info: MongoDB connected -2026-08-15 16:44:02 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 16:44:02 info: Creating worker started -2026-08-15 16:44:02 info: Creating worker started -2026-08-15 16:44:02 info: Creating worker started -2026-08-15 16:44:02 info: Worker created successfully -2026-08-15 16:44:02 info: Worker created successfully -2026-08-15 16:44:02 info: Worker created successfully -2026-08-15 16:44:02 info: Worker pool initialized -2026-08-15 16:44:05 info: [node-1] Client connected: KZ5Bkf3-3cR82YR4AAAB -2026-08-15 16:44:09 info: Create room started -2026-08-15 16:44:09 info: Woker loads loaded successfully -2026-08-15 16:44:09 info: Woker assigned succesfully -2026-08-15 16:44:09 info: Creation of router started -2026-08-15 16:44:09 info: Router created -2026-08-15 16:44:09 info: Creation of room successfully executed -2026-08-15 16:44:09 info: Get room started -2026-08-15 16:44:09 info: Get room executed successfully -2026-08-15 16:44:09 info: Broadcaster added to the room -2026-08-15 16:44:09 info: Room created successfully -2026-08-15 16:44:09 info: Get getRouterRtpCapabilities started -2026-08-15 16:44:09 info: Fetching of router started -2026-08-15 16:44:09 info: Fetching of router executed successfully -2026-08-15 16:44:09 info: Rtp capabilities fetched successfully -2026-08-15 16:44:09 info: Get room started -2026-08-15 16:44:09 info: Get room executed successfully -2026-08-15 16:44:09 info: Transport created : 0e59ae19-396d-4674-824e-da7e48e52478 -2026-08-15 16:44:09 info: Get room started -2026-08-15 16:44:09 info: Get room executed successfully -2026-08-15 16:44:09 info: Connect broadcaster transport listener started -2026-08-15 16:44:09 info: Get room started -2026-08-15 16:44:09 info: Get room executed successfully -2026-08-15 16:44:09 info: Connect broadcaster transport executed successfully -2026-08-15 16:44:09 info: Transport ICE state changed -2026-08-15 16:44:09 info: Transport DTLS state changed -2026-08-15 16:44:09 info: Producer listener started -2026-08-15 16:44:09 info: Transport DTLS state changed -2026-08-15 16:44:09 info: Get room started -2026-08-15 16:44:09 info: Get room executed successfully -2026-08-15 16:44:09 info: Producer listener executed successfully: -2026-08-15 16:44:09 info: Producer listener started -2026-08-15 16:44:09 info: Get room started -2026-08-15 16:44:09 info: Get room executed successfully -2026-08-15 16:44:09 info: Producer listener executed successfully: -2026-08-15 16:44:10 info: [node-1] Client connected: Uxazawh-udGD8LqHAAAD -2026-08-15 16:44:14 info: Join as viewer listner started -2026-08-15 16:44:14 info: Rate limiting -2026-08-15 16:44:14 info: Rate limiting -2026-08-15 16:44:14 info: Get room started -2026-08-15 16:44:14 info: Get room executed successfully -2026-08-15 16:44:14 info: Fetching of router started -2026-08-15 16:44:14 info: Fetching of router executed successfully -2026-08-15 16:44:14 info: Get room started -2026-08-15 16:44:14 info: Get room executed successfully -2026-08-15 16:44:14 info: Viewer joined the room -2026-08-15 16:44:14 info: Join viewer listner successfully executed -2026-08-15 16:44:14 info: Create viewer transport listner started -2026-08-15 16:44:14 info: Get room started -2026-08-15 16:44:14 info: Get room executed successfully -2026-08-15 16:44:14 info: Get room started -2026-08-15 16:44:14 info: Get room executed successfully -2026-08-15 16:44:14 info: Transport created : 51bd70ef-a669-4a29-a26c-2f0278ad4351 -2026-08-15 16:44:14 info: Viewer transport successfully created -2026-08-15 16:44:14 info: Create viewer transport listner successfully executed -2026-08-15 16:44:14 info: Consume lister started -2026-08-15 16:44:14 info: Get room started -2026-08-15 16:44:14 info: Get room executed successfully -2026-08-15 16:44:14 info: Get room started -2026-08-15 16:44:14 info: Get room executed successfully -2026-08-15 16:44:14 info: Get room started -2026-08-15 16:44:14 info: Get room executed successfully -2026-08-15 16:44:14 info: Viewer media consume successfully executed -2026-08-15 16:44:14 info: Consume lister executed successfully -2026-08-15 16:44:14 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 16:44:14 info: Connect consumer listner started -2026-08-15 16:44:14 info: Get room started -2026-08-15 16:44:14 info: Get room executed successfully -2026-08-15 16:44:14 info: Consumer transport connected successfully -2026-08-15 16:44:14 info: Connect consumer listner executed successfully -2026-08-15 16:44:14 info: Transport ICE state changed -2026-08-15 16:44:14 info: Transport DTLS state changed -2026-08-15 16:44:14 info: Transport DTLS state changed -2026-08-15 16:44:14 info: Get room started -2026-08-15 16:44:14 info: Get room executed successfully -2026-08-15 16:44:14 info: Viewer consumer resumed -2026-08-15 16:44:14 info: Resume consumer listener executed successfully -2026-08-15 16:44:14 info: Get room started -2026-08-15 16:44:14 info: Get room executed successfully -2026-08-15 16:44:14 info: Viewer consumer resumed -2026-08-15 16:44:14 info: Resume consumer listener executed successfully -2026-08-15 16:44:30 info: Get room started -2026-08-15 16:44:30 info: Get room executed successfully -2026-08-15 16:44:30 info: Rate limiting -2026-08-15 16:44:30 info: Rate limiting -2026-08-15 16:44:30 info: Get room started -2026-08-15 16:44:30 info: Get room executed successfully -2026-08-15 16:44:30 info: Rate limiting -2026-08-15 16:44:30 info: Rate limiting -2026-08-15 16:44:30 info: Get room started -2026-08-15 16:44:30 info: Get room executed successfully -2026-08-15 16:44:30 info: Rate limiting -2026-08-15 16:44:30 info: Rate limiting -2026-08-15 16:44:30 info: Get room started -2026-08-15 16:44:30 info: Get room executed successfully -2026-08-15 16:44:30 info: Rate limiting -2026-08-15 16:44:30 info: Rate limiting -2026-08-15 16:44:31 info: Get room started -2026-08-15 16:44:31 info: Get room executed successfully -2026-08-15 16:44:31 info: Rate limiting -2026-08-15 16:44:31 info: Rate limiting -2026-08-15 16:44:31 info: Get room started -2026-08-15 16:44:31 info: Get room executed successfully -2026-08-15 16:44:31 info: Rate limiting -2026-08-15 16:44:31 info: Rate limiting -2026-08-15 16:44:31 info: Get room started -2026-08-15 16:44:31 info: Get room executed successfully -2026-08-15 16:44:31 info: Rate limiting -2026-08-15 16:44:31 info: Rate limiting -2026-08-15 16:44:31 info: Get room started -2026-08-15 16:44:31 info: Get room executed successfully -2026-08-15 16:44:31 info: Rate limiting -2026-08-15 16:44:31 info: Rate limiting -2026-08-15 16:44:31 info: Get room started -2026-08-15 16:44:31 info: Get room executed successfully -2026-08-15 16:44:31 info: Rate limiting -2026-08-15 16:44:31 info: Rate limiting -2026-08-15 16:44:32 info: Get room started -2026-08-15 16:44:32 info: Get room executed successfully -2026-08-15 16:44:32 info: Get room started -2026-08-15 16:44:32 info: Get room executed successfully -2026-08-15 16:44:32 info: Get room started -2026-08-15 16:44:32 info: Get room executed successfully -2026-08-15 16:44:32 info: Get room started -2026-08-15 16:44:32 info: Get room executed successfully -2026-08-15 16:44:32 info: Get room started -2026-08-15 16:44:32 info: Get room executed successfully -2026-08-15 16:44:32 info: Get room started -2026-08-15 16:44:32 info: Get room executed successfully -2026-08-15 16:44:34 info: Get room started -2026-08-15 16:44:34 info: Get room executed successfully -2026-08-15 16:44:34 info: Rate limiting -2026-08-15 16:44:34 info: Rate limiting -2026-08-15 16:44:34 info: Get room started -2026-08-15 16:44:34 info: Get room executed successfully -2026-08-15 16:44:34 info: Get room started -2026-08-15 16:44:34 info: Get room executed successfully -2026-08-15 16:44:34 info: Rate limiting -2026-08-15 16:44:34 info: Rate limiting -2026-08-15 16:44:34 info: Get room started -2026-08-15 16:44:34 info: Get room executed successfully -2026-08-15 16:44:34 info: Rate limiting -2026-08-15 16:44:34 info: Rate limiting -2026-08-15 16:44:34 info: Get room started -2026-08-15 16:44:34 info: Get room executed successfully -2026-08-15 16:44:34 info: Rate limiting -2026-08-15 16:44:34 info: Rate limiting -2026-08-15 16:44:34 info: Get room started -2026-08-15 16:44:34 info: Get room executed successfully -2026-08-15 16:44:34 info: Rate limiting -2026-08-15 16:44:34 info: Rate limiting -2026-08-15 16:44:35 info: Get room started -2026-08-15 16:44:35 info: Get room executed successfully -2026-08-15 16:44:35 info: Rate limiting -2026-08-15 16:44:35 info: Rate limiting -2026-08-15 16:44:35 info: Get room started -2026-08-15 16:44:35 info: Get room executed successfully -2026-08-15 16:44:35 info: Rate limiting -2026-08-15 16:44:35 info: Rate limiting -2026-08-15 16:44:35 info: Get room started -2026-08-15 16:44:35 info: Get room executed successfully -2026-08-15 16:44:35 info: Rate limiting -2026-08-15 16:44:35 info: Rate limiting -2026-08-15 16:44:35 info: Get room started -2026-08-15 16:44:35 info: Get room executed successfully -2026-08-15 16:44:35 info: Rate limiting -2026-08-15 16:44:35 info: Rate limiting -2026-08-15 16:44:35 info: Get room started -2026-08-15 16:44:35 info: Get room executed successfully -2026-08-15 16:44:35 info: Rate limiting -2026-08-15 16:44:35 info: Rate limiting -2026-08-15 16:44:35 info: Get room started -2026-08-15 16:44:35 info: Get room executed successfully -2026-08-15 16:44:35 info: Rate limiting -2026-08-15 16:44:35 info: Rate limiting -2026-08-15 16:44:36 info: Get room started -2026-08-15 16:44:36 info: Get room executed successfully -2026-08-15 16:44:36 info: Rate limiting -2026-08-15 16:44:36 info: Rate limiting -2026-08-15 16:44:36 info: Get room started -2026-08-15 16:44:36 info: Get room executed successfully -2026-08-15 16:44:36 info: Rate limiting -2026-08-15 16:44:36 info: Rate limiting -2026-08-15 16:44:36 info: Get room started -2026-08-15 16:44:36 info: Get room executed successfully -2026-08-15 16:44:36 info: Rate limiting -2026-08-15 16:44:36 info: Rate limiting -2026-08-15 16:44:36 info: Get room started -2026-08-15 16:44:36 info: Get room executed successfully -2026-08-15 16:44:36 info: Rate limiting -2026-08-15 16:44:36 info: Rate limiting -2026-08-15 16:44:36 info: Get room started -2026-08-15 16:44:36 info: Get room executed successfully -2026-08-15 16:44:36 info: Rate limiting -2026-08-15 16:44:36 info: Rate limiting -2026-08-15 16:44:36 info: Get room started -2026-08-15 16:44:36 info: Get room executed successfully -2026-08-15 16:44:36 info: Rate limiting -2026-08-15 16:44:36 info: Rate limiting -2026-08-15 16:44:36 info: Get room started -2026-08-15 16:44:36 info: Get room executed successfully -2026-08-15 16:44:36 info: Rate limiting -2026-08-15 16:44:36 info: Rate limiting -2026-08-15 16:44:37 info: Get room started -2026-08-15 16:44:37 info: Get room executed successfully -2026-08-15 16:44:37 info: Rate limiting -2026-08-15 16:44:37 info: Rate limiting -2026-08-15 16:44:37 info: Get room started -2026-08-15 16:44:37 info: Get room executed successfully -2026-08-15 16:44:37 info: Rate limiting -2026-08-15 16:44:37 info: Rate limiting -2026-08-15 16:44:37 info: Get room started -2026-08-15 16:44:37 info: Get room executed successfully -2026-08-15 16:44:37 info: Rate limiting -2026-08-15 16:44:37 info: Rate limiting -2026-08-15 16:44:37 info: Get room started -2026-08-15 16:44:37 info: Get room executed successfully -2026-08-15 16:44:37 info: Rate limiting -2026-08-15 16:44:37 info: Rate limiting -2026-08-15 16:44:37 info: Get room started -2026-08-15 16:44:37 info: Get room executed successfully -2026-08-15 16:44:37 info: Rate limiting -2026-08-15 16:44:37 info: Rate limiting -2026-08-15 16:44:37 info: Get room started -2026-08-15 16:44:37 info: Get room executed successfully -2026-08-15 16:44:37 info: Rate limiting -2026-08-15 16:44:37 info: Rate limiting -2026-08-15 16:44:38 info: Get room started -2026-08-15 16:44:38 info: Get room executed successfully -2026-08-15 16:44:38 info: Rate limiting -2026-08-15 16:44:38 info: Rate limiting -2026-08-15 16:44:38 info: Get room started -2026-08-15 16:44:38 info: Get room executed successfully -2026-08-15 16:44:38 info: Rate limiting -2026-08-15 16:44:38 info: Rate limiting -2026-08-15 16:44:38 info: Get room started -2026-08-15 16:44:38 info: Get room executed successfully -2026-08-15 16:44:38 info: Rate limiting -2026-08-15 16:44:38 info: Rate limiting -2026-08-15 16:44:38 info: Get room started -2026-08-15 16:44:38 info: Get room executed successfully -2026-08-15 16:44:38 info: Rate limiting -2026-08-15 16:44:38 info: Rate limiting -2026-08-15 16:44:38 info: Get room started -2026-08-15 16:44:38 info: Get room executed successfully -2026-08-15 16:44:38 info: Rate limiting -2026-08-15 16:44:38 info: Rate limiting -2026-08-15 16:44:38 info: Get room started -2026-08-15 16:44:38 info: Get room executed successfully -2026-08-15 16:44:38 info: Rate limiting -2026-08-15 16:44:38 info: Rate limiting -2026-08-15 16:44:39 info: Get room started -2026-08-15 16:44:39 info: Get room executed successfully -2026-08-15 16:44:39 info: Rate limiting -2026-08-15 16:44:39 info: Rate limiting -2026-08-15 16:44:40 info: Get room started -2026-08-15 16:44:40 info: Get room executed successfully -2026-08-15 16:44:40 info: Rate limiting -2026-08-15 16:44:40 info: Rate limiting -2026-08-15 16:44:40 info: Get room started -2026-08-15 16:44:40 info: Get room executed successfully -2026-08-15 16:44:40 info: Rate limiting -2026-08-15 16:44:40 info: Rate limiting -2026-08-15 16:44:40 info: Get room started -2026-08-15 16:44:40 info: Get room executed successfully -2026-08-15 16:44:40 info: Rate limiting -2026-08-15 16:44:40 info: Rate limiting -2026-08-15 16:44:40 info: Get room started -2026-08-15 16:44:40 info: Get room executed successfully -2026-08-15 16:44:40 info: Rate limiting -2026-08-15 16:44:40 info: Rate limiting -2026-08-15 16:44:40 info: Get room started -2026-08-15 16:44:40 info: Get room executed successfully -2026-08-15 16:44:40 info: Rate limiting -2026-08-15 16:44:40 info: Rate limiting -2026-08-15 16:44:40 info: Get room started -2026-08-15 16:44:40 info: Get room executed successfully -2026-08-15 16:44:40 info: Rate limiting -2026-08-15 16:44:40 info: Rate limiting -2026-08-15 16:44:41 info: Get room started -2026-08-15 16:44:41 info: Get room executed successfully -2026-08-15 16:44:41 info: Rate limiting -2026-08-15 16:44:41 info: Rate limiting -2026-08-15 16:44:41 info: Get room started -2026-08-15 16:44:41 info: Get room executed successfully -2026-08-15 16:44:41 info: Rate limiting -2026-08-15 16:44:41 info: Rate limiting -2026-08-15 16:44:41 info: Get room started -2026-08-15 16:44:41 info: Get room executed successfully -2026-08-15 16:44:41 info: Rate limiting -2026-08-15 16:44:41 info: Rate limiting -2026-08-15 16:44:41 info: Get room started -2026-08-15 16:44:41 info: Get room executed successfully -2026-08-15 16:44:41 info: Rate limiting -2026-08-15 16:44:41 info: Rate limiting -2026-08-15 16:44:41 info: Get room started -2026-08-15 16:44:41 info: Get room executed successfully -2026-08-15 16:44:41 info: Rate limiting -2026-08-15 16:44:41 info: Rate limiting -2026-08-15 16:44:41 info: Get room started -2026-08-15 16:44:41 info: Get room executed successfully -2026-08-15 16:44:41 info: Rate limiting -2026-08-15 16:44:41 info: Rate limiting -2026-08-15 16:44:42 info: Get room started -2026-08-15 16:44:42 info: Get room executed successfully -2026-08-15 16:44:42 info: Rate limiting -2026-08-15 16:44:42 info: Rate limiting -2026-08-15 16:44:42 info: Get room started -2026-08-15 16:44:42 info: Get room executed successfully -2026-08-15 16:44:42 info: Rate limiting -2026-08-15 16:44:42 info: Rate limiting -2026-08-15 16:44:42 info: Get room started -2026-08-15 16:44:42 info: Get room executed successfully -2026-08-15 16:44:42 info: Rate limiting -2026-08-15 16:44:42 info: Rate limiting -2026-08-15 16:44:44 info: Get room started -2026-08-15 16:44:44 info: Get room executed successfully -2026-08-15 16:44:44 info: Rate limiting -2026-08-15 16:44:44 info: Rate limiting -2026-08-15 16:44:44 info: Get room started -2026-08-15 16:44:44 info: Get room executed successfully -2026-08-15 16:44:44 info: Rate limiting -2026-08-15 16:44:44 info: Rate limiting -2026-08-15 16:44:45 info: Get room started -2026-08-15 16:44:45 info: Get room executed successfully -2026-08-15 16:44:45 info: Rate limiting -2026-08-15 16:44:45 info: Rate limiting -2026-08-15 16:44:45 info: Get room started -2026-08-15 16:44:45 info: Get room executed successfully -2026-08-15 16:44:45 info: Rate limiting -2026-08-15 16:44:45 info: Rate limiting -2026-08-15 16:44:45 info: Get room started -2026-08-15 16:44:45 info: Get room executed successfully -2026-08-15 16:44:45 info: Rate limiting -2026-08-15 16:44:45 info: Rate limiting -2026-08-15 16:44:45 info: Get room started -2026-08-15 16:44:45 info: Get room executed successfully -2026-08-15 16:44:45 info: Rate limiting -2026-08-15 16:44:45 info: Rate limiting -2026-08-15 16:44:45 info: Get room started -2026-08-15 16:44:45 info: Get room executed successfully -2026-08-15 16:44:45 info: Rate limiting -2026-08-15 16:44:45 info: Rate limiting -2026-08-15 16:44:45 info: Get room started -2026-08-15 16:44:45 info: Get room executed successfully -2026-08-15 16:44:45 info: Rate limiting -2026-08-15 16:44:45 info: Rate limiting -2026-08-15 16:44:45 info: Get room started -2026-08-15 16:44:45 info: Get room executed successfully -2026-08-15 16:44:45 info: Rate limiting -2026-08-15 16:44:45 info: Rate limiting -2026-08-15 16:44:46 info: Get room started -2026-08-15 16:44:46 info: Get room executed successfully -2026-08-15 16:44:46 info: Rate limiting -2026-08-15 16:44:46 info: Rate limiting -2026-08-15 16:44:46 info: Get room started -2026-08-15 16:44:46 info: Get room executed successfully -2026-08-15 16:44:46 info: Rate limiting -2026-08-15 16:44:46 info: Rate limiting -2026-08-15 16:44:46 info: Get room started -2026-08-15 16:44:46 info: Get room executed successfully -2026-08-15 16:44:46 info: Rate limiting -2026-08-15 16:44:46 info: Rate limiting -2026-08-15 16:44:48 info: Get room started -2026-08-15 16:44:48 info: Get room executed successfully -2026-08-15 16:44:54 info: Get room started -2026-08-15 16:44:54 info: Get room executed successfully -2026-08-15 16:45:14 info: Get room started -2026-08-15 16:45:14 info: Get room executed successfully -2026-08-15 16:45:31 info: User disconnected Uxazawh-udGD8LqHAAAD beacuse of transport close -2026-08-15 16:45:31 info: Handle disconnect started -2026-08-15 16:45:31 info: Get room started -2026-08-15 16:45:31 info: Get room executed successfully -2026-08-15 16:45:31 info: Get room started -2026-08-15 16:45:31 info: Get room executed successfully -2026-08-15 16:45:31 info: Remove viewer started -2026-08-15 16:45:31 info: Handle disconnect succesfully -2026-08-15 16:45:31 info: Viewer removed from room -2026-08-15 16:45:31 info: [node-1] Client connected: IAAn-kjTUHCZ8fklAAAF -2026-08-15 16:49:53 info: Redis subscribers initialized -2026-08-15 16:49:59 info: MongoDB connected -2026-08-15 16:49:59 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 16:49:59 info: Creating worker started -2026-08-15 16:49:59 info: Creating worker started -2026-08-15 16:49:59 info: Creating worker started -2026-08-15 16:49:59 info: Worker created successfully -2026-08-15 16:49:59 info: Worker created successfully -2026-08-15 16:49:59 info: Worker created successfully -2026-08-15 16:49:59 info: Worker pool initialized -2026-08-15 16:50:04 info: [node-1] Client connected: BrGA1lH-4RAXwSw0AAAB -2026-08-15 16:50:06 info: [node-1] Client connected: owOb5vd0DZ9LFAuNAAAD -2026-08-15 16:52:07 info: Redis subscribers initialized -2026-08-15 16:52:26 info: Redis subscribers initialized -2026-08-15 16:52:32 info: MongoDB connected -2026-08-15 16:52:32 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 16:52:32 info: Creating worker started -2026-08-15 16:52:32 info: Creating worker started -2026-08-15 16:52:32 info: Creating worker started -2026-08-15 16:52:32 info: Worker created successfully -2026-08-15 16:52:32 info: Worker created successfully -2026-08-15 16:52:32 info: Worker created successfully -2026-08-15 16:52:32 info: Worker pool initialized -2026-08-15 16:52:40 info: [node-1] Client connected: _-EI0A5JXaCzqUWjAAAB -2026-08-15 16:52:40 info: [node-1] Client connected: Xrrh-lJgS9ZBncl-AAAD -2026-08-15 16:53:40 info: Redis subscribers initialized -2026-08-15 16:53:41 info: MongoDB connected -2026-08-15 16:53:41 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 16:53:41 info: Creating worker started -2026-08-15 16:53:41 info: Creating worker started -2026-08-15 16:53:42 info: Creating worker started -2026-08-15 16:53:42 info: Worker created successfully -2026-08-15 16:53:42 info: Worker created successfully -2026-08-15 16:53:42 info: Worker created successfully -2026-08-15 16:53:42 info: Worker pool initialized -2026-08-15 16:53:48 info: [node-1] Client connected: Lh7gBZHLWCBsJRiWAAAB -2026-08-15 16:53:48 info: [node-1] Client connected: PXtvjfwVKlk0Y-4uAAAD -2026-08-15 16:53:54 info: Redis subscribers initialized -2026-08-15 16:53:55 info: MongoDB connected -2026-08-15 16:53:55 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 16:53:55 info: Creating worker started -2026-08-15 16:53:55 info: Creating worker started -2026-08-15 16:53:55 info: Creating worker started -2026-08-15 16:53:55 info: Worker created successfully -2026-08-15 16:53:55 info: Worker created successfully -2026-08-15 16:53:55 info: Worker created successfully -2026-08-15 16:53:55 info: Worker pool initialized -2026-08-15 16:54:00 info: [node-1] Client connected: U6zZSF9DAmxsemThAAAB -2026-08-15 16:54:02 info: [node-1] Client connected: Utro01YnMRfKSsYMAAAD -2026-08-15 16:54:19 info: Redis subscribers initialized -2026-08-15 16:54:21 info: MongoDB connected -2026-08-15 16:54:21 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 16:54:21 info: Creating worker started -2026-08-15 16:54:21 info: Creating worker started -2026-08-15 16:54:21 info: Creating worker started -2026-08-15 16:54:21 info: Worker created successfully -2026-08-15 16:54:21 info: Worker created successfully -2026-08-15 16:54:21 info: Worker created successfully -2026-08-15 16:54:21 info: Worker pool initialized -2026-08-15 16:54:27 info: [node-1] Client connected: FRY5Rir6CwJu5IfMAAAB -2026-08-15 16:54:27 info: [node-1] Client connected: i716MfzHfhVRCTp4AAAD -2026-08-15 16:55:00 info: Redis subscribers initialized -2026-08-15 16:55:01 info: MongoDB connected -2026-08-15 16:55:01 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 16:55:02 info: Creating worker started -2026-08-15 16:55:02 info: Creating worker started -2026-08-15 16:55:02 info: Creating worker started -2026-08-15 16:55:02 info: Worker created successfully -2026-08-15 16:55:02 info: Worker created successfully -2026-08-15 16:55:02 info: Worker created successfully -2026-08-15 16:55:02 info: Worker pool initialized -2026-08-15 16:55:07 info: [node-1] Client connected: 4EZ7BqP-tQP3bmbTAAAB -2026-08-15 16:55:14 info: Redis subscribers initialized -2026-08-15 16:55:15 info: MongoDB connected -2026-08-15 16:55:15 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 16:55:15 info: Creating worker started -2026-08-15 16:55:15 info: Creating worker started -2026-08-15 16:55:15 info: Creating worker started -2026-08-15 16:55:15 info: Worker created successfully -2026-08-15 16:55:15 info: Worker created successfully -2026-08-15 16:55:15 info: Worker created successfully -2026-08-15 16:55:15 info: Worker pool initialized -2026-08-15 16:55:21 info: [node-1] Client connected: TFmqQu5gMAkxr4iPAAAB -2026-08-15 16:55:21 info: Create room started -2026-08-15 16:55:21 info: Woker loads loaded successfully -2026-08-15 16:55:21 info: Woker assigned succesfully -2026-08-15 16:55:21 info: Creation of router started -2026-08-15 16:55:21 info: Router created -2026-08-15 16:55:21 info: Creation of room successfully executed -2026-08-15 16:55:21 info: Get room started -2026-08-15 16:55:21 info: Get room executed successfully -2026-08-15 16:55:21 info: Broadcaster added to the room -2026-08-15 16:55:21 info: Room created successfully -2026-08-15 16:55:21 info: Get getRouterRtpCapabilities started -2026-08-15 16:55:21 info: Fetching of router started -2026-08-15 16:55:21 info: Fetching of router executed successfully -2026-08-15 16:55:21 info: Rtp capabilities fetched successfully -2026-08-15 16:55:21 info: Get room started -2026-08-15 16:55:21 info: Get room executed successfully -2026-08-15 16:55:21 info: Transport created : 5323584c-a3fc-4518-b3a0-aa8f46cb6668 -2026-08-15 16:55:21 info: Get room started -2026-08-15 16:55:21 info: Get room executed successfully -2026-08-15 16:55:21 info: Connect broadcaster transport listener started -2026-08-15 16:55:21 info: Get room started -2026-08-15 16:55:21 info: Get room executed successfully -2026-08-15 16:55:21 info: Connect broadcaster transport executed successfully -2026-08-15 16:55:21 info: Transport ICE state changed -2026-08-15 16:55:21 info: Transport DTLS state changed -2026-08-15 16:55:21 info: Producer listener started -2026-08-15 16:55:21 info: Transport DTLS state changed -2026-08-15 16:55:21 info: Get room started -2026-08-15 16:55:21 info: Get room executed successfully -2026-08-15 16:55:21 info: Producer listener executed successfully: -2026-08-15 16:55:21 info: Producer listener started -2026-08-15 16:55:21 info: Get room started -2026-08-15 16:55:21 info: Get room executed successfully -2026-08-15 16:55:21 info: Producer listener executed successfully: -2026-08-15 16:55:23 info: [node-1] Client connected: tlsohFXUT16ul4CNAAAD -2026-08-15 16:55:28 info: Join as viewer listner started -2026-08-15 16:55:28 info: Rate limiting -2026-08-15 16:55:28 info: Rate limiting -2026-08-15 16:55:28 info: Get room started -2026-08-15 16:55:28 info: Get room executed successfully -2026-08-15 16:55:28 info: Fetching of router started -2026-08-15 16:55:28 info: Fetching of router executed successfully -2026-08-15 16:55:28 info: Get room started -2026-08-15 16:55:28 info: Get room executed successfully -2026-08-15 16:55:28 info: Viewer joined the room -2026-08-15 16:55:28 info: Join viewer listner successfully executed -2026-08-15 16:55:28 info: Create viewer transport listner started -2026-08-15 16:55:28 info: Get room started -2026-08-15 16:55:28 info: Get room executed successfully -2026-08-15 16:55:28 info: Get room started -2026-08-15 16:55:28 info: Get room executed successfully -2026-08-15 16:55:28 info: Transport created : f152593d-b110-428f-aa3b-7403503ae3e1 -2026-08-15 16:55:28 info: Viewer transport successfully created -2026-08-15 16:55:28 info: Create viewer transport listner successfully executed -2026-08-15 16:55:28 info: Consume lister started -2026-08-15 16:55:28 info: Get room started -2026-08-15 16:55:28 info: Get room executed successfully -2026-08-15 16:55:28 info: Get room started -2026-08-15 16:55:28 info: Get room executed successfully -2026-08-15 16:55:28 info: Get room started -2026-08-15 16:55:28 info: Get room executed successfully -2026-08-15 16:55:28 info: Viewer media consume successfully executed -2026-08-15 16:55:28 info: Consume lister executed successfully -2026-08-15 16:55:28 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 16:55:28 info: Connect consumer listner started -2026-08-15 16:55:28 info: Get room started -2026-08-15 16:55:28 info: Get room executed successfully -2026-08-15 16:55:28 info: Consumer transport connected successfully -2026-08-15 16:55:28 info: Connect consumer listner executed successfully -2026-08-15 16:55:28 info: Transport ICE state changed -2026-08-15 16:55:28 info: Transport DTLS state changed -2026-08-15 16:55:28 info: Transport DTLS state changed -2026-08-15 16:55:28 info: Get room started -2026-08-15 16:55:28 info: Get room executed successfully -2026-08-15 16:55:28 info: Viewer consumer resumed -2026-08-15 16:55:28 info: Resume consumer listener executed successfully -2026-08-15 16:55:28 info: Get room started -2026-08-15 16:55:28 info: Get room executed successfully -2026-08-15 16:55:28 info: Viewer consumer resumed -2026-08-15 16:55:28 info: Resume consumer listener executed successfully -2026-08-15 16:55:31 info: Get room started -2026-08-15 16:55:31 info: Get room executed successfully -2026-08-15 16:55:31 info: Get room started -2026-08-15 16:55:31 info: Get room executed successfully -2026-08-15 16:55:31 info: Get room started -2026-08-15 16:55:31 info: Get room executed successfully -2026-08-15 16:55:31 info: Get room started -2026-08-15 16:55:31 info: Get room executed successfully -2026-08-15 16:55:31 info: Get room started -2026-08-15 16:55:31 info: Get room executed successfully -2026-08-15 16:55:31 info: Get room started -2026-08-15 16:55:31 info: Get room executed successfully -2026-08-15 16:55:41 info: Get room started -2026-08-15 16:55:41 info: Get room executed successfully -2026-08-15 16:55:48 info: Get room started -2026-08-15 16:55:48 info: Get room executed successfully -2026-08-15 16:56:07 info: User disconnected TFmqQu5gMAkxr4iPAAAB beacuse of transport close -2026-08-15 16:56:07 info: Handle disconnect started -2026-08-15 16:56:07 info: Get room started -2026-08-15 16:56:07 info: Get room executed successfully -2026-08-15 16:56:07 info: Get room started -2026-08-15 16:56:07 info: Get room executed successfully -2026-08-15 16:56:07 info: Get room started -2026-08-15 16:56:07 info: Get room executed successfully -2026-08-15 16:56:07 info: Get room started -2026-08-15 16:56:07 info: Get room executed successfully -2026-08-15 16:56:07 info: Get room started -2026-08-15 16:56:07 info: Get room executed successfully -2026-08-15 16:56:07 info: Remove broadcaster success -2026-08-15 16:56:07 info: Handle disconnect succesfully -2026-08-15 16:56:08 info: room:a06c9bf9-5140-4010-a9b2-934a2d5e4866 room deleted successfully -2026-08-15 16:56:08 info: [node-1] Client connected: YkPLF6Y79Ja4Q1q4AAAF -2026-08-15 16:56:08 info: Get room started -2026-08-15 17:01:17 info: Redis subscribers initialized -2026-08-15 17:01:23 info: MongoDB connected -2026-08-15 17:01:23 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 17:01:23 info: Creating worker started -2026-08-15 17:01:23 info: Creating worker started -2026-08-15 17:01:23 info: Creating worker started -2026-08-15 17:01:23 info: Worker created successfully -2026-08-15 17:01:23 info: Worker created successfully -2026-08-15 17:01:23 info: Worker created successfully -2026-08-15 17:01:23 info: Worker pool initialized -2026-08-15 17:01:31 info: [node-1] Client connected: 4UtAoMt2F8K_pPCAAAAB -2026-08-15 17:01:31 info: Create room started -2026-08-15 17:01:31 info: Woker loads loaded successfully -2026-08-15 17:01:31 info: Woker assigned succesfully -2026-08-15 17:01:31 info: Creation of router started -2026-08-15 17:01:31 info: Router created -2026-08-15 17:01:31 info: Creation of room successfully executed -2026-08-15 17:01:31 info: Get room started -2026-08-15 17:01:31 info: Get room executed successfully -2026-08-15 17:01:31 info: Broadcaster added to the room -2026-08-15 17:01:31 info: Room created successfully -2026-08-15 17:01:31 info: Get getRouterRtpCapabilities started -2026-08-15 17:01:31 info: Fetching of router started -2026-08-15 17:01:31 info: Fetching of router executed successfully -2026-08-15 17:01:31 info: Rtp capabilities fetched successfully -2026-08-15 17:01:31 info: Get room started -2026-08-15 17:01:31 info: Get room executed successfully -2026-08-15 17:01:31 info: Transport created : 7f9800eb-386a-4285-867c-94a806f410b3 -2026-08-15 17:01:31 info: Get room started -2026-08-15 17:01:31 info: Get room executed successfully -2026-08-15 17:01:31 info: Connect broadcaster transport listener started -2026-08-15 17:01:31 info: Get room started -2026-08-15 17:01:31 info: Get room executed successfully -2026-08-15 17:01:31 info: Connect broadcaster transport executed successfully -2026-08-15 17:01:31 info: Producer listener started -2026-08-15 17:01:31 info: Get room started -2026-08-15 17:01:31 info: Get room executed successfully -2026-08-15 17:01:31 info: Producer listener executed successfully: -2026-08-15 17:01:31 info: Producer listener started -2026-08-15 17:01:31 info: Get room started -2026-08-15 17:01:31 info: Get room executed successfully -2026-08-15 17:01:31 info: Producer listener executed successfully: -2026-08-15 17:01:35 info: SignIn started -2026-08-15 17:01:35 info: SignIn completed -2026-08-15 17:01:35 info: [node-1] Client connected: d6uALCj9VoWmm_X5AAAD -2026-08-15 17:01:44 info: Join as viewer listner started -2026-08-15 17:01:44 info: Rate limiting -2026-08-15 17:01:44 info: Rate limiting -2026-08-15 17:01:44 info: Get room started -2026-08-15 17:01:44 info: Get room executed successfully -2026-08-15 17:01:44 info: Fetching of router started -2026-08-15 17:01:44 info: Fetching of router executed successfully -2026-08-15 17:01:44 info: Get room started -2026-08-15 17:01:44 info: Get room executed successfully -2026-08-15 17:01:44 info: Viewer joined the room -2026-08-15 17:01:44 info: Join viewer listner successfully executed -2026-08-15 17:01:44 info: Create viewer transport listner started -2026-08-15 17:01:44 info: Get room started -2026-08-15 17:01:44 info: Get room executed successfully -2026-08-15 17:01:44 info: Get room started -2026-08-15 17:01:44 info: Get room executed successfully -2026-08-15 17:01:44 info: Transport created : 6ff3f036-65e7-42e2-bbea-fa2ca10330d8 -2026-08-15 17:01:44 info: Viewer transport successfully created -2026-08-15 17:01:44 info: Create viewer transport listner successfully executed -2026-08-15 17:01:44 info: Consume lister started -2026-08-15 17:01:44 info: Get room started -2026-08-15 17:01:44 info: Get room executed successfully -2026-08-15 17:01:44 info: Get room started -2026-08-15 17:01:44 info: Get room executed successfully -2026-08-15 17:01:44 info: Get room started -2026-08-15 17:01:44 info: Get room executed successfully -2026-08-15 17:01:44 info: Viewer media consume successfully executed -2026-08-15 17:01:44 info: Consume lister executed successfully -2026-08-15 17:01:44 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 17:01:44 info: Connect consumer listner started -2026-08-15 17:01:44 info: Get room started -2026-08-15 17:01:44 info: Get room executed successfully -2026-08-15 17:01:44 info: Consumer transport connected successfully -2026-08-15 17:01:44 info: Connect consumer listner executed successfully -2026-08-15 17:01:44 info: Get room started -2026-08-15 17:01:44 info: Get room executed successfully -2026-08-15 17:01:44 info: Viewer consumer resumed -2026-08-15 17:01:44 info: Resume consumer listener executed successfully -2026-08-15 17:01:44 info: Get room started -2026-08-15 17:01:44 info: Get room executed successfully -2026-08-15 17:01:44 info: Viewer consumer resumed -2026-08-15 17:01:44 info: Resume consumer listener executed successfully -2026-08-15 17:02:04 info: Get room started -2026-08-15 17:02:04 info: Get room executed successfully -2026-08-15 17:02:24 info: Get room started -2026-08-15 17:02:24 info: Get room executed successfully -2026-08-15 17:02:44 info: Get room started -2026-08-15 17:02:44 info: Get room executed successfully -2026-08-15 17:03:04 info: Get room started -2026-08-15 17:03:04 info: Get room executed successfully -2026-08-15 17:03:24 info: Get room started -2026-08-15 17:03:24 info: Get room executed successfully -2026-08-15 17:03:34 info: User disconnected 4UtAoMt2F8K_pPCAAAAB beacuse of transport close -2026-08-15 17:03:34 info: Handle disconnect started -2026-08-15 17:03:34 info: Get room started -2026-08-15 17:03:34 info: Get room executed successfully -2026-08-15 17:03:34 info: Get room started -2026-08-15 17:03:34 info: Get room executed successfully -2026-08-15 17:03:34 info: Get room started -2026-08-15 17:03:34 info: Get room executed successfully -2026-08-15 17:03:34 info: Get room started -2026-08-15 17:03:34 info: Get room executed successfully -2026-08-15 17:03:34 info: Get room started -2026-08-15 17:03:34 info: Get room executed successfully -2026-08-15 17:03:34 info: Remove broadcaster success -2026-08-15 17:03:34 info: Handle disconnect succesfully -2026-08-15 17:03:34 info: room:3858149d-7045-4321-8bb8-b86a7121b139 room deleted successfully -2026-08-15 17:03:35 info: [node-1] Client connected: eQvFtghHkFa9iexaAAAF -2026-08-15 17:03:35 info: User disconnected d6uALCj9VoWmm_X5AAAD beacuse of transport close -2026-08-15 17:03:35 info: Handle disconnect started -2026-08-15 17:03:36 info: [node-1] Client connected: n38RqpIfS3TZxnfDAAAH -2026-08-15 17:06:44 info: Redis subscribers initialized -2026-08-15 17:06:51 info: MongoDB connected -2026-08-15 17:06:51 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 17:06:51 info: Creating worker started -2026-08-15 17:06:51 info: Creating worker started -2026-08-15 17:06:51 info: Creating worker started -2026-08-15 17:06:51 info: Worker created successfully -2026-08-15 17:06:51 info: Worker created successfully -2026-08-15 17:06:51 info: Worker created successfully -2026-08-15 17:06:51 info: Worker pool initialized -2026-08-15 17:06:56 info: [node-1] Client connected: cSaGrZqcT-zc1Fd-AAAB -2026-08-15 17:06:57 info: [node-1] Client connected: AnV3_iiVDbmZiLJlAAAD -2026-08-15 17:06:57 info: Create room started -2026-08-15 17:06:57 info: Woker loads loaded successfully -2026-08-15 17:06:57 info: Woker assigned succesfully -2026-08-15 17:06:57 info: Creation of router started -2026-08-15 17:06:57 info: Router created -2026-08-15 17:06:57 info: Creation of room successfully executed -2026-08-15 17:06:57 info: Get room started -2026-08-15 17:06:57 info: Get room executed successfully -2026-08-15 17:06:57 info: Broadcaster added to the room -2026-08-15 17:06:57 info: Room created successfully -2026-08-15 17:06:57 info: Get getRouterRtpCapabilities started -2026-08-15 17:06:57 info: Fetching of router started -2026-08-15 17:06:57 info: Fetching of router executed successfully -2026-08-15 17:06:57 info: Rtp capabilities fetched successfully -2026-08-15 17:06:57 info: Get room started -2026-08-15 17:06:57 info: Get room executed successfully -2026-08-15 17:06:57 info: Transport created : 6f506a40-3581-411c-8f9c-71d0a869d962 -2026-08-15 17:06:57 info: Get room started -2026-08-15 17:06:57 info: Get room executed successfully -2026-08-15 17:06:57 info: Connect broadcaster transport listener started -2026-08-15 17:06:57 info: Get room started -2026-08-15 17:06:57 info: Get room executed successfully -2026-08-15 17:06:57 info: Connect broadcaster transport executed successfully -2026-08-15 17:06:57 info: Transport ICE state changed -2026-08-15 17:06:57 info: Transport DTLS state changed -2026-08-15 17:06:57 info: Producer listener started -2026-08-15 17:06:57 info: Get room started -2026-08-15 17:06:57 info: Get room executed successfully -2026-08-15 17:06:57 info: Transport DTLS state changed -2026-08-15 17:06:57 info: Producer listener executed successfully: -2026-08-15 17:06:57 info: Producer listener started -2026-08-15 17:06:57 info: Get room started -2026-08-15 17:06:57 info: Get room executed successfully -2026-08-15 17:06:57 info: Producer listener executed successfully: -2026-08-15 17:07:03 info: Join as viewer listner started -2026-08-15 17:07:03 info: Rate limiting -2026-08-15 17:07:03 info: Rate limiting -2026-08-15 17:07:03 info: Get room started -2026-08-15 17:07:03 info: Get room executed successfully -2026-08-15 17:07:03 info: Fetching of router started -2026-08-15 17:07:03 info: Fetching of router executed successfully -2026-08-15 17:07:03 info: Get room started -2026-08-15 17:07:03 info: Get room executed successfully -2026-08-15 17:07:03 info: Viewer joined the room -2026-08-15 17:07:03 info: Join viewer listner successfully executed -2026-08-15 17:07:03 info: Create viewer transport listner started -2026-08-15 17:07:03 info: Get room started -2026-08-15 17:07:03 info: Get room executed successfully -2026-08-15 17:07:03 info: Get room started -2026-08-15 17:07:03 info: Get room executed successfully -2026-08-15 17:07:03 info: Transport created : 97f742bd-341e-4b89-83f5-247b2237d803 -2026-08-15 17:07:03 info: Viewer transport successfully created -2026-08-15 17:07:03 info: Create viewer transport listner successfully executed -2026-08-15 17:07:03 info: Consume lister started -2026-08-15 17:07:03 info: Get room started -2026-08-15 17:07:03 info: Get room executed successfully -2026-08-15 17:07:03 info: Get room started -2026-08-15 17:07:03 info: Get room executed successfully -2026-08-15 17:07:03 info: Get room started -2026-08-15 17:07:03 info: Get room executed successfully -2026-08-15 17:07:03 info: Viewer media consume successfully executed -2026-08-15 17:07:03 info: Consume lister executed successfully -2026-08-15 17:07:03 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 17:07:03 info: Connect consumer listner started -2026-08-15 17:07:03 info: Get room started -2026-08-15 17:07:03 info: Get room executed successfully -2026-08-15 17:07:03 info: Consumer transport connected successfully -2026-08-15 17:07:03 info: Connect consumer listner executed successfully -2026-08-15 17:07:03 info: Transport ICE state changed -2026-08-15 17:07:03 info: Transport DTLS state changed -2026-08-15 17:07:03 info: Transport DTLS state changed -2026-08-15 17:07:03 info: Get room started -2026-08-15 17:07:03 info: Get room executed successfully -2026-08-15 17:07:03 info: Viewer consumer resumed -2026-08-15 17:07:03 info: Resume consumer listener executed successfully -2026-08-15 17:07:03 info: Get room started -2026-08-15 17:07:03 info: Get room executed successfully -2026-08-15 17:07:03 info: Viewer consumer resumed -2026-08-15 17:07:03 info: Resume consumer listener executed successfully -2026-08-15 17:07:06 info: Get room started -2026-08-15 17:07:06 info: Get room executed successfully -2026-08-15 17:07:06 info: Get room started -2026-08-15 17:07:06 info: Get room executed successfully -2026-08-15 17:07:06 info: Get room started -2026-08-15 17:07:06 info: Get room executed successfully -2026-08-15 17:07:06 info: Get room started -2026-08-15 17:07:06 info: Get room executed successfully -2026-08-15 17:07:06 info: Get room started -2026-08-15 17:07:06 info: Get room executed successfully -2026-08-15 17:07:06 info: Get room started -2026-08-15 17:07:06 info: Get room executed successfully -2026-08-15 17:07:23 info: Get room started -2026-08-15 17:07:23 info: Get room executed successfully -2026-08-15 17:07:25 info: Get room started -2026-08-15 17:07:25 info: Get room executed successfully -2026-08-15 17:07:43 info: Get room started -2026-08-15 17:07:43 info: Get room executed successfully -2026-08-15 17:07:51 info: Transport DTLS state changed -2026-08-15 17:07:51 info: User disconnected cSaGrZqcT-zc1Fd-AAAB beacuse of transport close -2026-08-15 17:07:51 info: Handle disconnect started -2026-08-15 17:07:51 info: Get room started -2026-08-15 17:07:51 info: Get room executed successfully -2026-08-15 17:07:51 info: Get room started -2026-08-15 17:07:51 info: Get room executed successfully -2026-08-15 17:07:51 info: Remove viewer started -2026-08-15 17:07:51 info: Handle disconnect succesfully -2026-08-15 17:07:51 info: Viewer removed from room -2026-08-15 17:07:52 info: User disconnected AnV3_iiVDbmZiLJlAAAD beacuse of transport close -2026-08-15 17:07:52 info: Handle disconnect started -2026-08-15 17:07:52 info: Get room started -2026-08-15 17:07:52 info: Get room executed successfully -2026-08-15 17:07:52 info: Get room started -2026-08-15 17:07:52 info: Get room executed successfully -2026-08-15 17:07:52 info: Get room started -2026-08-15 17:07:52 info: Get room executed successfully -2026-08-15 17:07:52 info: Remove broadcaster success -2026-08-15 17:07:52 info: Handle disconnect succesfully -2026-08-15 17:07:52 info: room:bdd24093-837a-40da-b427-d26a3928c3f4 room deleted successfully -2026-08-15 17:08:53 info: Redis subscribers initialized -2026-08-15 17:08:54 info: MongoDB connected -2026-08-15 17:08:54 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 17:08:54 info: Creating worker started -2026-08-15 17:08:54 info: Creating worker started -2026-08-15 17:08:54 info: Creating worker started -2026-08-15 17:08:54 info: Worker created successfully -2026-08-15 17:08:54 info: Worker created successfully -2026-08-15 17:08:54 info: Worker created successfully -2026-08-15 17:08:54 info: Worker pool initialized -2026-08-15 17:09:01 info: Redis subscribers initialized -2026-08-15 17:09:03 info: MongoDB connected -2026-08-15 17:09:03 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 17:09:03 info: Creating worker started -2026-08-15 17:09:03 info: Creating worker started -2026-08-15 17:09:03 info: Creating worker started -2026-08-15 17:09:03 info: Worker created successfully -2026-08-15 17:09:03 info: Worker created successfully -2026-08-15 17:09:03 info: Worker created successfully -2026-08-15 17:09:03 info: Worker pool initialized -2026-08-15 17:09:21 info: SignIn started -2026-08-15 17:09:21 info: SignIn completed -2026-08-15 17:09:21 info: [node-1] Client connected: FolXI1QywmGSNaQJAAAB -2026-08-15 17:09:28 info: SignIn started -2026-08-15 17:09:28 info: SignIn completed -2026-08-15 17:09:28 info: [node-1] Client connected: FI_n38YE52baBXShAAAD -2026-08-15 17:09:35 info: Create room started -2026-08-15 17:09:35 info: Woker loads loaded successfully -2026-08-15 17:09:35 info: Woker assigned succesfully -2026-08-15 17:09:35 info: Creation of router started -2026-08-15 17:09:35 info: Router created -2026-08-15 17:09:35 info: Creation of room successfully executed -2026-08-15 17:09:35 info: Get room started -2026-08-15 17:09:35 info: Get room executed successfully -2026-08-15 17:09:35 info: Broadcaster added to the room -2026-08-15 17:09:35 info: Room created successfully -2026-08-15 17:09:35 info: Get getRouterRtpCapabilities started -2026-08-15 17:09:35 info: Fetching of router started -2026-08-15 17:09:35 info: Fetching of router executed successfully -2026-08-15 17:09:35 info: Rtp capabilities fetched successfully -2026-08-15 17:09:35 info: Get room started -2026-08-15 17:09:35 info: Get room executed successfully -2026-08-15 17:09:35 info: Transport created : 9789357f-4638-434e-aa72-445696fab8df -2026-08-15 17:09:35 info: Get room started -2026-08-15 17:09:35 info: Get room executed successfully -2026-08-15 17:09:35 info: Connect broadcaster transport listener started -2026-08-15 17:09:35 info: Get room started -2026-08-15 17:09:35 info: Get room executed successfully -2026-08-15 17:09:35 info: Connect broadcaster transport executed successfully -2026-08-15 17:09:35 info: Transport ICE state changed -2026-08-15 17:09:35 info: Transport DTLS state changed -2026-08-15 17:09:35 info: Producer listener started -2026-08-15 17:09:35 info: Get room started -2026-08-15 17:09:35 info: Get room executed successfully -2026-08-15 17:09:35 info: Producer listener executed successfully: -2026-08-15 17:09:35 info: Transport DTLS state changed -2026-08-15 17:09:35 info: Producer listener started -2026-08-15 17:09:35 info: Get room started -2026-08-15 17:09:35 info: Get room executed successfully -2026-08-15 17:09:35 info: Producer listener executed successfully: -2026-08-15 17:09:47 info: Join as viewer listner started -2026-08-15 17:09:47 info: Rate limiting -2026-08-15 17:09:47 info: Rate limiting -2026-08-15 17:09:47 info: Get room started -2026-08-15 17:09:47 info: Get room executed successfully -2026-08-15 17:09:47 info: Fetching of router started -2026-08-15 17:09:47 info: Fetching of router executed successfully -2026-08-15 17:09:47 info: Get room started -2026-08-15 17:09:47 info: Get room executed successfully -2026-08-15 17:09:47 info: Viewer joined the room -2026-08-15 17:09:47 info: Join viewer listner successfully executed -2026-08-15 17:09:47 info: Create viewer transport listner started -2026-08-15 17:09:47 info: Get room started -2026-08-15 17:09:47 info: Get room executed successfully -2026-08-15 17:09:47 info: Get room started -2026-08-15 17:09:47 info: Get room executed successfully -2026-08-15 17:09:47 info: Transport created : 600acebe-379d-490b-bbee-ff92230de518 -2026-08-15 17:09:47 info: Viewer transport successfully created -2026-08-15 17:09:47 info: Create viewer transport listner successfully executed -2026-08-15 17:09:47 info: Consume lister started -2026-08-15 17:09:47 info: Get room started -2026-08-15 17:09:47 info: Get room executed successfully -2026-08-15 17:09:47 info: Get room started -2026-08-15 17:09:47 info: Get room executed successfully -2026-08-15 17:09:47 info: Get room started -2026-08-15 17:09:47 info: Get room executed successfully -2026-08-15 17:09:47 info: Viewer media consume successfully executed -2026-08-15 17:09:47 info: Consume lister executed successfully -2026-08-15 17:09:47 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 17:09:47 info: Connect consumer listner started -2026-08-15 17:09:47 info: Get room started -2026-08-15 17:09:47 info: Get room executed successfully -2026-08-15 17:09:47 info: Consumer transport connected successfully -2026-08-15 17:09:47 info: Connect consumer listner executed successfully -2026-08-15 17:09:47 info: Transport ICE state changed -2026-08-15 17:09:47 info: Transport DTLS state changed -2026-08-15 17:09:47 info: Transport DTLS state changed -2026-08-15 17:09:47 info: Get room started -2026-08-15 17:09:47 info: Get room executed successfully -2026-08-15 17:09:47 info: Viewer consumer resumed -2026-08-15 17:09:47 info: Resume consumer listener executed successfully -2026-08-15 17:09:47 info: Get room started -2026-08-15 17:09:47 info: Get room executed successfully -2026-08-15 17:09:47 info: Viewer consumer resumed -2026-08-15 17:09:47 info: Resume consumer listener executed successfully -2026-08-15 17:09:50 info: Get room started -2026-08-15 17:09:50 info: Get room executed successfully -2026-08-15 17:09:50 info: Get room started -2026-08-15 17:09:50 info: Get room executed successfully -2026-08-15 17:09:50 info: Get room started -2026-08-15 17:09:50 info: Get room executed successfully -2026-08-15 17:09:50 info: Get room started -2026-08-15 17:09:50 info: Get room executed successfully -2026-08-15 17:09:50 info: Get room started -2026-08-15 17:09:50 info: Get room executed successfully -2026-08-15 17:09:50 info: Get room started -2026-08-15 17:09:50 info: Get room executed successfully -2026-08-15 17:10:03 info: Get room started -2026-08-15 17:10:03 info: Get room executed successfully -2026-08-15 17:10:07 info: Get room started -2026-08-15 17:10:07 info: Get room executed successfully -2026-08-15 17:10:27 info: Get room started -2026-08-15 17:10:27 info: Get room executed successfully -2026-08-15 17:10:47 info: Get room started -2026-08-15 17:10:47 info: Get room executed successfully -2026-08-15 17:11:07 info: Get room started -2026-08-15 17:11:07 info: Get room executed successfully -2026-08-15 17:11:27 info: Get room started -2026-08-15 17:11:27 info: Get room executed successfully -2026-08-15 17:11:47 info: Get room started -2026-08-15 17:11:47 info: Get room executed successfully -2026-08-15 17:12:02 info: User disconnected FolXI1QywmGSNaQJAAAB beacuse of transport close -2026-08-15 17:12:02 info: Handle disconnect started -2026-08-15 17:12:02 info: Get room started -2026-08-15 17:12:02 info: Get room executed successfully -2026-08-15 17:12:02 info: Get room started -2026-08-15 17:12:02 info: Get room executed successfully -2026-08-15 17:12:02 info: Get room started -2026-08-15 17:12:02 info: Get room executed successfully -2026-08-15 17:12:02 info: Get room started -2026-08-15 17:12:02 info: Get room executed successfully -2026-08-15 17:12:02 info: Get room started -2026-08-15 17:12:02 info: Get room executed successfully -2026-08-15 17:12:02 info: Remove broadcaster success -2026-08-15 17:12:02 info: Handle disconnect succesfully -2026-08-15 17:12:02 info: room:c014ebc7-f0c5-4674-a86d-54383a118d55 room deleted successfully -2026-08-15 17:12:03 info: [node-1] Client connected: v7UIEXtZuuC7gZzXAAAF -2026-08-15 17:12:03 info: User disconnected FI_n38YE52baBXShAAAD beacuse of transport close -2026-08-15 17:12:03 info: Handle disconnect started -2026-08-15 17:12:03 info: [node-1] Client connected: TpzEORJxrG0SN2SnAAAH -2026-08-15 17:12:30 info: Redis subscribers initialized -2026-08-15 17:12:32 info: MongoDB connected -2026-08-15 17:12:32 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 17:12:32 info: Creating worker started -2026-08-15 17:12:32 info: Creating worker started -2026-08-15 17:12:32 info: Creating worker started -2026-08-15 17:12:32 info: Worker created successfully -2026-08-15 17:12:32 info: Worker created successfully -2026-08-15 17:12:32 info: Worker created successfully -2026-08-15 17:12:32 info: Worker pool initialized -2026-08-15 17:12:37 info: [node-1] Client connected: famcT6mM2UXRyPxZAAAB -2026-08-15 17:12:41 info: [node-1] Client connected: OrUgnA5vG0kd2VfVAAAD -2026-08-15 17:12:41 info: Create room started -2026-08-15 17:12:41 info: Woker loads loaded successfully -2026-08-15 17:12:41 info: Woker assigned succesfully -2026-08-15 17:12:41 info: Creation of router started -2026-08-15 17:12:41 info: Router created -2026-08-15 17:12:41 info: Creation of room successfully executed -2026-08-15 17:12:41 info: Get room started -2026-08-15 17:12:41 info: Get room executed successfully -2026-08-15 17:12:41 info: Broadcaster added to the room -2026-08-15 17:12:41 info: Room created successfully -2026-08-15 17:12:41 info: Get getRouterRtpCapabilities started -2026-08-15 17:12:41 info: Fetching of router started -2026-08-15 17:12:41 info: Fetching of router executed successfully -2026-08-15 17:12:41 info: Rtp capabilities fetched successfully -2026-08-15 17:12:41 info: Get room started -2026-08-15 17:12:41 info: Get room executed successfully -2026-08-15 17:12:41 info: Transport created : cdeca84f-a4a3-4e4c-bec9-e748cddddd15 -2026-08-15 17:12:41 info: Get room started -2026-08-15 17:12:41 info: Get room executed successfully -2026-08-15 17:12:41 info: Connect broadcaster transport listener started -2026-08-15 17:12:41 info: Get room started -2026-08-15 17:12:41 info: Get room executed successfully -2026-08-15 17:12:41 info: Connect broadcaster transport executed successfully -2026-08-15 17:12:41 info: Transport ICE state changed -2026-08-15 17:12:41 info: Transport DTLS state changed -2026-08-15 17:12:41 info: Producer listener started -2026-08-15 17:12:41 info: Get room started -2026-08-15 17:12:41 info: Get room executed successfully -2026-08-15 17:12:41 info: Transport DTLS state changed -2026-08-15 17:12:41 info: Producer listener executed successfully: -2026-08-15 17:12:41 info: Producer listener started -2026-08-15 17:12:41 info: Get room started -2026-08-15 17:12:41 info: Get room executed successfully -2026-08-15 17:12:41 info: Producer listener executed successfully: -2026-08-15 17:12:46 info: Join as viewer listner started -2026-08-15 17:12:46 info: Rate limiting -2026-08-15 17:12:46 info: Rate limiting -2026-08-15 17:12:46 info: Get room started -2026-08-15 17:12:46 info: Get room executed successfully -2026-08-15 17:12:46 info: Fetching of router started -2026-08-15 17:12:46 info: Fetching of router executed successfully -2026-08-15 17:12:46 info: Get room started -2026-08-15 17:12:46 info: Get room executed successfully -2026-08-15 17:12:46 info: Viewer joined the room -2026-08-15 17:12:46 info: Join viewer listner successfully executed -2026-08-15 17:12:46 info: Create viewer transport listner started -2026-08-15 17:12:46 info: Get room started -2026-08-15 17:12:46 info: Get room executed successfully -2026-08-15 17:12:46 info: Get room started -2026-08-15 17:12:46 info: Get room executed successfully -2026-08-15 17:12:46 info: Transport created : 7a1f7efd-5184-4f62-a56a-a98a7f765f5a -2026-08-15 17:12:46 info: Viewer transport successfully created -2026-08-15 17:12:46 info: Create viewer transport listner successfully executed -2026-08-15 17:12:46 info: Consume lister started -2026-08-15 17:12:46 info: Get room started -2026-08-15 17:12:46 info: Get room executed successfully -2026-08-15 17:12:46 info: Get room started -2026-08-15 17:12:46 info: Get room executed successfully -2026-08-15 17:12:46 info: Get room started -2026-08-15 17:12:46 info: Get room executed successfully -2026-08-15 17:12:46 info: Viewer media consume successfully executed -2026-08-15 17:12:46 info: Consume lister executed successfully -2026-08-15 17:12:46 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 17:12:46 info: Connect consumer listner started -2026-08-15 17:12:46 info: Get room started -2026-08-15 17:12:46 info: Get room executed successfully -2026-08-15 17:12:46 info: Consumer transport connected successfully -2026-08-15 17:12:46 info: Connect consumer listner executed successfully -2026-08-15 17:12:46 info: Transport ICE state changed -2026-08-15 17:12:46 info: Transport DTLS state changed -2026-08-15 17:12:46 info: Transport DTLS state changed -2026-08-15 17:12:46 info: Get room started -2026-08-15 17:12:46 info: Get room executed successfully -2026-08-15 17:12:46 info: Viewer consumer resumed -2026-08-15 17:12:46 info: Resume consumer listener executed successfully -2026-08-15 17:12:46 info: Get room started -2026-08-15 17:12:46 info: Get room executed successfully -2026-08-15 17:12:46 info: Viewer consumer resumed -2026-08-15 17:12:46 info: Resume consumer listener executed successfully -2026-08-15 17:12:48 info: Get room started -2026-08-15 17:12:48 info: Get room executed successfully -2026-08-15 17:12:48 info: Get room started -2026-08-15 17:12:48 info: Get room executed successfully -2026-08-15 17:12:48 info: Get room started -2026-08-15 17:12:48 info: Get room executed successfully -2026-08-15 17:12:48 info: Get room started -2026-08-15 17:12:48 info: Get room executed successfully -2026-08-15 17:12:48 info: Get room started -2026-08-15 17:12:48 info: Get room executed successfully -2026-08-15 17:12:48 info: Get room started -2026-08-15 17:12:48 info: Get room executed successfully -2026-08-15 17:13:06 info: Get room started -2026-08-15 17:13:06 info: Get room executed successfully -2026-08-15 17:13:11 info: Get room started -2026-08-15 17:13:11 info: Get room executed successfully -2026-08-15 17:13:11 warn: No active recording to stop for room 16edb58d-1749-4011-8980-f7a6fb0aeeef -2026-08-15 17:13:26 info: Get room started -2026-08-15 17:13:26 info: Get room executed successfully -2026-08-15 17:13:46 info: Get room started -2026-08-15 17:13:46 info: Get room executed successfully -2026-08-15 17:14:06 info: Get room started -2026-08-15 17:14:06 info: Get room executed successfully -2026-08-15 17:14:08 info: User disconnected OrUgnA5vG0kd2VfVAAAD beacuse of transport close -2026-08-15 17:14:08 info: Handle disconnect started -2026-08-15 17:14:08 info: Get room started -2026-08-15 17:14:08 info: Get room executed successfully -2026-08-15 17:14:08 info: Get room started -2026-08-15 17:14:08 info: Get room executed successfully -2026-08-15 17:14:08 info: Get room started -2026-08-15 17:14:08 info: Get room executed successfully -2026-08-15 17:14:08 info: Get room started -2026-08-15 17:14:08 info: Get room executed successfully -2026-08-15 17:14:08 info: Get room started -2026-08-15 17:14:08 info: Get room executed successfully -2026-08-15 17:14:08 info: Remove broadcaster success -2026-08-15 17:14:08 info: Handle disconnect succesfully -2026-08-15 17:14:08 info: room:16edb58d-1749-4011-8980-f7a6fb0aeeef room deleted successfully -2026-08-15 17:14:08 info: [node-1] Client connected: b8Rk3b5QUW6LF7YfAAAF -2026-08-15 17:14:08 info: User disconnected famcT6mM2UXRyPxZAAAB beacuse of transport close -2026-08-15 17:14:08 info: Handle disconnect started -2026-08-15 17:14:09 info: [node-1] Client connected: pnksvc6Uwuszgr7mAAAH -2026-08-15 17:14:36 info: Redis subscribers initialized -2026-08-15 17:14:46 info: Redis subscribers initialized -2026-08-15 17:15:04 info: MongoDB connected -2026-08-15 17:15:04 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 17:15:04 info: Creating worker started -2026-08-15 17:15:04 info: Creating worker started -2026-08-15 17:15:04 info: Creating worker started -2026-08-15 17:15:04 info: Worker created successfully -2026-08-15 17:15:04 info: Worker created successfully -2026-08-15 17:15:04 info: Worker created successfully -2026-08-15 17:15:04 info: Worker pool initialized -2026-08-15 17:15:09 info: [node-1] Client connected: E2urqtW0pPt6yvoQAAAB -2026-08-15 17:15:09 info: Create room started -2026-08-15 17:15:09 info: Woker loads loaded successfully -2026-08-15 17:15:09 info: Woker assigned succesfully -2026-08-15 17:15:09 info: Creation of router started -2026-08-15 17:15:09 info: Router created -2026-08-15 17:15:09 info: Creation of room successfully executed -2026-08-15 17:15:09 info: Get room started -2026-08-15 17:15:09 info: Get room executed successfully -2026-08-15 17:15:09 info: Broadcaster added to the room -2026-08-15 17:15:09 info: Room created successfully -2026-08-15 17:15:09 info: Get getRouterRtpCapabilities started -2026-08-15 17:15:09 info: Fetching of router started -2026-08-15 17:15:09 info: Fetching of router executed successfully -2026-08-15 17:15:09 info: Rtp capabilities fetched successfully -2026-08-15 17:15:09 info: Get room started -2026-08-15 17:15:09 info: Get room executed successfully -2026-08-15 17:15:09 info: Transport created : dc09c57f-94bc-4c67-8d20-33150dd5d22e -2026-08-15 17:15:09 info: Get room started -2026-08-15 17:15:09 info: Get room executed successfully -2026-08-15 17:15:09 info: Connect broadcaster transport listener started -2026-08-15 17:15:09 info: Get room started -2026-08-15 17:15:09 info: Get room executed successfully -2026-08-15 17:15:09 info: Connect broadcaster transport executed successfully -2026-08-15 17:15:09 info: Transport ICE state changed -2026-08-15 17:15:09 info: Transport DTLS state changed -2026-08-15 17:15:09 info: Producer listener started -2026-08-15 17:15:09 info: Get room started -2026-08-15 17:15:09 info: Get room executed successfully -2026-08-15 17:15:09 info: Transport DTLS state changed -2026-08-15 17:15:09 info: Producer listener executed successfully: -2026-08-15 17:15:09 info: Producer listener started -2026-08-15 17:15:09 info: Get room started -2026-08-15 17:15:09 info: Get room executed successfully -2026-08-15 17:15:09 info: Producer listener executed successfully: -2026-08-15 17:15:11 info: [node-1] Client connected: Li_Wji5heX08P20cAAAD -2026-08-15 17:15:15 info: Join as viewer listner started -2026-08-15 17:15:15 info: Rate limiting -2026-08-15 17:15:15 info: Rate limiting -2026-08-15 17:15:15 info: Get room started -2026-08-15 17:15:15 info: Get room executed successfully -2026-08-15 17:15:15 info: Fetching of router started -2026-08-15 17:15:15 info: Fetching of router executed successfully -2026-08-15 17:15:15 info: Get room started -2026-08-15 17:15:15 info: Get room executed successfully -2026-08-15 17:15:15 info: Viewer joined the room -2026-08-15 17:15:15 info: Join viewer listner successfully executed -2026-08-15 17:15:15 info: Create viewer transport listner started -2026-08-15 17:15:15 info: Get room started -2026-08-15 17:15:15 info: Get room executed successfully -2026-08-15 17:15:15 info: Get room started -2026-08-15 17:15:15 info: Get room executed successfully -2026-08-15 17:15:15 info: Transport created : 3dcb7129-9cb3-4467-9a3f-b4baa11bc847 -2026-08-15 17:15:15 info: Viewer transport successfully created -2026-08-15 17:15:15 info: Create viewer transport listner successfully executed -2026-08-15 17:15:16 info: Consume lister started -2026-08-15 17:15:16 info: Get room started -2026-08-15 17:15:16 info: Get room executed successfully -2026-08-15 17:15:16 info: Get room started -2026-08-15 17:15:16 info: Get room executed successfully -2026-08-15 17:15:16 info: Get room started -2026-08-15 17:15:16 info: Get room executed successfully -2026-08-15 17:15:16 info: Viewer media consume successfully executed -2026-08-15 17:15:16 info: Consume lister executed successfully -2026-08-15 17:15:16 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 17:15:16 info: Connect consumer listner started -2026-08-15 17:15:16 info: Get room started -2026-08-15 17:15:16 info: Get room executed successfully -2026-08-15 17:15:16 info: Consumer transport connected successfully -2026-08-15 17:15:16 info: Connect consumer listner executed successfully -2026-08-15 17:15:16 info: Transport ICE state changed -2026-08-15 17:15:16 info: Transport DTLS state changed -2026-08-15 17:15:16 info: Transport DTLS state changed -2026-08-15 17:15:16 info: Get room started -2026-08-15 17:15:16 info: Get room executed successfully -2026-08-15 17:15:16 info: Viewer consumer resumed -2026-08-15 17:15:16 info: Resume consumer listener executed successfully -2026-08-15 17:15:16 info: Get room started -2026-08-15 17:15:16 info: Get room executed successfully -2026-08-15 17:15:16 info: Viewer consumer resumed -2026-08-15 17:15:16 info: Resume consumer listener executed successfully -2026-08-15 17:15:36 info: Get room started -2026-08-15 17:15:36 info: Get room executed successfully -2026-08-15 17:15:42 info: Get room started -2026-08-15 17:15:42 info: Get room executed successfully -2026-08-15 17:15:42 info: Get room started -2026-08-15 17:15:42 info: Get room executed successfully -2026-08-15 17:15:42 info: Get room started -2026-08-15 17:15:42 info: Get room executed successfully -2026-08-15 17:15:42 info: Get room started -2026-08-15 17:15:42 info: Get room executed successfully -2026-08-15 17:15:42 info: Get room started -2026-08-15 17:15:42 info: Get room executed successfully -2026-08-15 17:15:42 info: Get room started -2026-08-15 17:15:42 info: Get room executed successfully -2026-08-15 17:15:56 info: Get room started -2026-08-15 17:15:56 info: Get room executed successfully -2026-08-15 17:16:16 info: Get room started -2026-08-15 17:16:16 info: Get room executed successfully -2026-08-15 17:16:36 info: Get room started -2026-08-15 17:16:36 info: Get room executed successfully -2026-08-15 17:16:56 info: Get room started -2026-08-15 17:16:56 info: Get room executed successfully -2026-08-15 17:17:16 info: Get room started -2026-08-15 17:17:16 info: Get room executed successfully -2026-08-15 17:17:18 info: User disconnected E2urqtW0pPt6yvoQAAAB beacuse of transport close -2026-08-15 17:17:18 info: Handle disconnect started -2026-08-15 17:17:18 info: Get room started -2026-08-15 17:17:18 info: Get room executed successfully -2026-08-15 17:17:18 info: Get room started -2026-08-15 17:17:18 info: Get room executed successfully -2026-08-15 17:17:18 info: Get room started -2026-08-15 17:17:18 info: Get room executed successfully -2026-08-15 17:17:18 info: Get room started -2026-08-15 17:17:18 info: Get room executed successfully -2026-08-15 17:17:18 info: Get room started -2026-08-15 17:17:18 info: Get room executed successfully -2026-08-15 17:17:18 info: Remove broadcaster success -2026-08-15 17:17:18 info: Handle disconnect succesfully -2026-08-15 17:17:18 info: room:00859e99-5300-42fe-92b0-6df29ea4c81b room deleted successfully -2026-08-15 17:17:18 info: [node-1] Client connected: TqGtmKiTWRswhiq9AAAF -2026-08-15 17:17:19 info: User disconnected Li_Wji5heX08P20cAAAD beacuse of transport close -2026-08-15 17:17:19 info: Handle disconnect started -2026-08-15 17:17:19 info: [node-1] Client connected: VO94yWdPw40HGFi_AAAH -2026-08-15 17:20:06 info: Redis subscribers initialized -2026-08-15 17:20:08 info: MongoDB connected -2026-08-15 17:20:08 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 17:20:08 info: Creating worker started -2026-08-15 17:20:08 info: Creating worker started -2026-08-15 17:20:08 info: Creating worker started -2026-08-15 17:20:08 info: Worker created successfully -2026-08-15 17:20:08 info: Worker created successfully -2026-08-15 17:20:08 info: Worker created successfully -2026-08-15 17:20:08 info: Worker pool initialized -2026-08-15 17:23:07 info: Redis subscribers initialized -2026-08-15 17:23:09 info: MongoDB connected -2026-08-15 17:23:09 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 17:23:09 info: Creating worker started -2026-08-15 17:23:09 info: Creating worker started -2026-08-15 17:23:09 info: Creating worker started -2026-08-15 17:23:09 info: Worker created successfully -2026-08-15 17:23:09 info: Worker created successfully -2026-08-15 17:23:09 info: Worker created successfully -2026-08-15 17:23:09 info: Worker pool initialized -2026-08-15 17:23:14 info: [node-1] Client connected: nhQfsF495i8AGTPIAAAB -2026-08-15 17:23:15 info: [node-1] Client connected: p_TC5ntybRUCm9ptAAAD -2026-08-15 17:23:39 info: Redis subscribers initialized -2026-08-15 17:23:40 info: MongoDB connected -2026-08-15 17:23:40 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 17:23:40 info: Creating worker started -2026-08-15 17:23:40 info: Creating worker started -2026-08-15 17:23:40 info: Creating worker started -2026-08-15 17:23:40 info: Worker created successfully -2026-08-15 17:23:40 info: Worker created successfully -2026-08-15 17:23:40 info: Worker created successfully -2026-08-15 17:23:40 info: Worker pool initialized -2026-08-15 17:23:46 info: [node-1] Client connected: ieiqcfQeXU0z-u3wAAAB -2026-08-15 17:23:47 info: [node-1] Client connected: oNywdI22pAFnQJOlAAAD -2026-08-15 17:24:00 info: Redis subscribers initialized -2026-08-15 17:24:01 info: MongoDB connected -2026-08-15 17:24:01 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-15 17:24:01 info: Creating worker started -2026-08-15 17:24:01 info: Creating worker started -2026-08-15 17:24:01 info: Creating worker started -2026-08-15 17:24:01 info: Worker created successfully -2026-08-15 17:24:01 info: Worker created successfully -2026-08-15 17:24:01 info: Worker created successfully -2026-08-15 17:24:01 info: Worker pool initialized -2026-08-15 17:24:06 info: [node-1] Client connected: tg-jpCrd6V1dxuG-AAAB -2026-08-15 17:24:06 info: Create room started -2026-08-15 17:24:06 info: Woker loads loaded successfully -2026-08-15 17:24:06 info: Woker assigned succesfully -2026-08-15 17:24:06 info: Creation of router started -2026-08-15 17:24:06 info: Router created -2026-08-15 17:24:06 info: Creation of room successfully executed -2026-08-15 17:24:06 info: Get room started -2026-08-15 17:24:06 info: Get room executed successfully -2026-08-15 17:24:06 info: Broadcaster added to the room -2026-08-15 17:24:06 info: Room created successfully -2026-08-15 17:24:06 info: Get getRouterRtpCapabilities started -2026-08-15 17:24:06 info: Fetching of router started -2026-08-15 17:24:06 info: Fetching of router executed successfully -2026-08-15 17:24:06 info: Rtp capabilities fetched successfully -2026-08-15 17:24:06 info: Get room started -2026-08-15 17:24:06 info: Get room executed successfully -2026-08-15 17:24:06 info: Transport created : a8720279-c45e-442b-b748-ee966756099f -2026-08-15 17:24:06 info: Get room started -2026-08-15 17:24:06 info: Get room executed successfully -2026-08-15 17:24:07 info: Connect broadcaster transport listener started -2026-08-15 17:24:07 info: Get room started -2026-08-15 17:24:07 info: Get room executed successfully -2026-08-15 17:24:07 info: Connect broadcaster transport executed successfully -2026-08-15 17:24:07 info: Transport ICE state changed -2026-08-15 17:24:07 info: Transport DTLS state changed -2026-08-15 17:24:07 info: Producer listener started -2026-08-15 17:24:07 info: Transport DTLS state changed -2026-08-15 17:24:07 info: Get room started -2026-08-15 17:24:07 info: Get room executed successfully -2026-08-15 17:24:07 info: Producer listener executed successfully: -2026-08-15 17:24:07 info: Producer listener started -2026-08-15 17:24:07 info: Get room started -2026-08-15 17:24:07 info: Get room executed successfully -2026-08-15 17:24:07 info: Producer listener executed successfully: -2026-08-15 17:24:07 info: [node-1] Client connected: 9E613NcPfAojsPLlAAAD -2026-08-15 17:24:11 info: Join as viewer listner started -2026-08-15 17:24:11 info: Rate limiting -2026-08-15 17:24:11 info: Rate limiting -2026-08-15 17:24:11 info: Get room started -2026-08-15 17:24:11 info: Get room executed successfully -2026-08-15 17:24:11 info: Fetching of router started -2026-08-15 17:24:11 info: Fetching of router executed successfully -2026-08-15 17:24:11 info: Get room started -2026-08-15 17:24:11 info: Get room executed successfully -2026-08-15 17:24:11 info: Viewer joined the room -2026-08-15 17:24:11 info: Join viewer listner successfully executed -2026-08-15 17:24:11 info: Create viewer transport listner started -2026-08-15 17:24:11 info: Get room started -2026-08-15 17:24:11 info: Get room executed successfully -2026-08-15 17:24:11 info: Get room started -2026-08-15 17:24:11 info: Get room executed successfully -2026-08-15 17:24:11 info: Transport created : 8f6d9dc9-5dd6-4417-89cb-eacfd8efbb27 -2026-08-15 17:24:11 info: Viewer transport successfully created -2026-08-15 17:24:11 info: Create viewer transport listner successfully executed -2026-08-15 17:24:11 info: Consume lister started -2026-08-15 17:24:11 info: Get room started -2026-08-15 17:24:11 info: Get room executed successfully -2026-08-15 17:24:11 info: Get room started -2026-08-15 17:24:11 info: Get room executed successfully -2026-08-15 17:24:11 info: Get room started -2026-08-15 17:24:11 info: Get room executed successfully -2026-08-15 17:24:11 info: Viewer media consume successfully executed -2026-08-15 17:24:11 info: Consume lister executed successfully -2026-08-15 17:24:11 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 17:24:11 info: Connect consumer listner started -2026-08-15 17:24:11 info: Get room started -2026-08-15 17:24:11 info: Get room executed successfully -2026-08-15 17:24:11 info: Consumer transport connected successfully -2026-08-15 17:24:11 info: Connect consumer listner executed successfully -2026-08-15 17:24:11 info: Transport ICE state changed -2026-08-15 17:24:11 info: Transport DTLS state changed -2026-08-15 17:24:11 info: Transport DTLS state changed -2026-08-15 17:24:11 info: Get room started -2026-08-15 17:24:11 info: Get room executed successfully -2026-08-15 17:24:11 info: Viewer consumer resumed -2026-08-15 17:24:11 info: Resume consumer listener executed successfully -2026-08-15 17:24:11 info: Get room started -2026-08-15 17:24:11 info: Get room executed successfully -2026-08-15 17:24:11 info: Viewer consumer resumed -2026-08-15 17:24:11 info: Resume consumer listener executed successfully -2026-08-15 17:24:13 info: Get room started -2026-08-15 17:24:13 info: Get room executed successfully -2026-08-15 17:24:13 info: Get room started -2026-08-15 17:24:13 info: Get room executed successfully -2026-08-15 17:24:13 info: Get room started -2026-08-15 17:24:13 info: Get room executed successfully -2026-08-15 17:24:13 info: Get room started -2026-08-15 17:24:13 info: Get room executed successfully -2026-08-15 17:24:13 info: Get room started -2026-08-15 17:24:13 info: Get room executed successfully -2026-08-15 17:24:13 info: Get room started -2026-08-15 17:24:13 info: Get room executed successfully -2026-08-15 17:24:30 info: Get room started -2026-08-15 17:24:30 info: Get room executed successfully -2026-08-15 17:24:31 info: Get room started -2026-08-15 17:24:31 info: Get room executed successfully -2026-08-15 17:24:51 info: Get room started -2026-08-15 17:24:51 info: Get room executed successfully -2026-08-15 17:25:11 info: Get room started -2026-08-15 17:25:11 info: Get room executed successfully -2026-08-15 17:25:18 info: User disconnected tg-jpCrd6V1dxuG-AAAB beacuse of transport close -2026-08-15 17:25:18 info: Handle disconnect started -2026-08-15 17:25:18 info: Get room started -2026-08-15 17:25:18 info: Get room executed successfully -2026-08-15 17:25:18 info: Get room started -2026-08-15 17:25:18 info: Get room executed successfully -2026-08-15 17:25:18 info: Get room started -2026-08-15 17:25:18 info: Get room executed successfully -2026-08-15 17:25:18 info: Get room started -2026-08-15 17:25:18 info: Get room executed successfully -2026-08-15 17:25:18 info: Get room started -2026-08-15 17:25:18 info: Get room executed successfully -2026-08-15 17:25:18 info: Remove broadcaster success -2026-08-15 17:25:18 info: Handle disconnect succesfully -2026-08-15 17:25:18 info: room:3ff17de5-06f5-49a3-b706-48327a5207ea room deleted successfully -2026-08-15 17:25:18 info: [node-1] Client connected: n9os4e5A3A1GJDvnAAAF -2026-08-15 17:25:18 info: User disconnected 9E613NcPfAojsPLlAAAD beacuse of transport close -2026-08-15 17:25:18 info: Handle disconnect started -2026-08-15 17:25:19 info: [node-1] Client connected: 0jT08UnW4x1C4z3lAAAH -2026-08-17 21:34:52 info: Redis subscribers initialized -2026-08-17 21:35:05 info: MongoDB connected -2026-08-17 21:35:05 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 21:35:05 info: Creating worker started -2026-08-17 21:35:05 info: Creating worker started -2026-08-17 21:35:05 info: Creating worker started -2026-08-17 21:35:05 info: Worker created successfully -2026-08-17 21:35:05 info: Worker created successfully -2026-08-17 21:35:05 info: Worker created successfully -2026-08-17 21:35:05 info: Worker pool initialized -2026-08-17 21:35:11 info: SignIn started -2026-08-17 21:35:11 info: SignIn completed -2026-08-17 21:35:11 info: [node-1] Client connected: nmaDPtA_Dp-eteevAAAB -2026-08-17 21:35:18 info: SignIn started -2026-08-17 21:35:18 info: SignIn completed -2026-08-17 21:35:18 info: [node-1] Client connected: oWyTWbDMu-UWazjwAAAD -2026-08-17 21:35:20 info: Create room started -2026-08-17 21:35:20 info: Woker loads loaded successfully -2026-08-17 21:35:20 info: Woker assigned succesfully -2026-08-17 21:35:20 info: Creation of router started -2026-08-17 21:35:20 info: Router created -2026-08-17 21:35:20 info: Creation of room successfully executed -2026-08-17 21:35:20 info: Get room started -2026-08-17 21:35:20 info: Get room executed successfully -2026-08-17 21:35:20 info: Broadcaster added to the room -2026-08-17 21:35:20 info: Room created successfully -2026-08-17 21:35:20 info: Get getRouterRtpCapabilities started -2026-08-17 21:35:20 info: Fetching of router started -2026-08-17 21:35:20 info: Fetching of router executed successfully -2026-08-17 21:35:20 info: Rtp capabilities fetched successfully -2026-08-17 21:36:45 info: User disconnected nmaDPtA_Dp-eteevAAAB beacuse of transport close -2026-08-17 21:36:45 info: Handle disconnect started -2026-08-17 21:36:45 info: Get room started -2026-08-17 21:36:45 info: Get room executed successfully -2026-08-17 21:36:45 info: Get room started -2026-08-17 21:36:45 info: Get room executed successfully -2026-08-17 21:36:45 info: Get room started -2026-08-17 21:36:45 info: Get room executed successfully -2026-08-17 21:36:45 warn: No active recording for room nmaDPtA_Dp-eteevAAAB -2026-08-17 21:36:45 info: User disconnected oWyTWbDMu-UWazjwAAAD beacuse of transport close -2026-08-17 21:36:45 info: Handle disconnect started -2026-08-17 21:36:45 error: RoomId not found -2026-08-17 21:36:45 warn: No active recording for room oWyTWbDMu-UWazjwAAAD -2026-08-17 21:36:45 info: Remove broadcaster success -2026-08-17 21:36:45 info: Handle disconnect succesfully -2026-08-17 21:36:45 info: room:8e8f2530-ed57-46b1-b444-c6df726e6d3a room deleted successfully -2026-08-17 21:36:45 warn: IDK -2026-08-17 21:36:45 info: [node-1] Client connected: g-E9KLDeQUjeWBvMAAAF -2026-08-17 21:36:45 info: [node-1] Client connected: cSmHmWns0MnHM-D7AAAH -2026-08-17 21:36:56 info: Create room started -2026-08-17 21:36:56 info: Woker loads loaded successfully -2026-08-17 21:36:56 info: Woker assigned succesfully -2026-08-17 21:36:56 info: Creation of router started -2026-08-17 21:36:56 info: Router created -2026-08-17 21:36:56 info: Creation of room successfully executed -2026-08-17 21:36:56 info: Get room started -2026-08-17 21:36:56 info: Get room executed successfully -2026-08-17 21:36:56 info: Broadcaster added to the room -2026-08-17 21:36:56 info: Room created successfully -2026-08-17 21:36:56 info: Get getRouterRtpCapabilities started -2026-08-17 21:36:56 info: Fetching of router started -2026-08-17 21:36:56 info: Fetching of router executed successfully -2026-08-17 21:36:56 info: Rtp capabilities fetched successfully -2026-08-17 21:37:13 info: Redis subscribers initialized -2026-08-17 21:37:44 warn: MongoDB disconnected -2026-08-17 21:37:44 warn: MongoDB connection failed (1/∞). Retrying in 1000ms -2026-08-17 21:37:44 error: MongoServerSelectionError: Server selection timed out after 30000 ms - at Topology.selectServer (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:635:30) - at async Topology._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:467:22) - at async Topology.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:404:7) - at async topologyConnect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:695:9) - at async MongoClient._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:707:7) - at async MongoClient.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:619:7) - at async NativeConnection.createClient (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/drivers/node-mongodb-native/connection.js:351:3) - at async NativeConnection.openUri (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/connection.js:1098:5) - at async connectToDataBase (/home/harshit/CrowdStream/backend/src/database/index.ts:37:28) -2026-08-17 21:38:01 info: Redis subscribers initialized -2026-08-17 21:38:32 warn: MongoDB disconnected -2026-08-17 21:38:32 warn: MongoDB connection failed (1/∞). Retrying in 1000ms -2026-08-17 21:38:32 error: MongoServerSelectionError: Server selection timed out after 30000 ms - at Topology.selectServer (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:635:30) - at async Topology._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:467:22) - at async Topology.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:404:7) - at async topologyConnect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:695:9) - at async MongoClient._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:707:7) - at async MongoClient.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:619:7) - at async NativeConnection.createClient (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/drivers/node-mongodb-native/connection.js:351:3) - at async NativeConnection.openUri (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/connection.js:1098:5) - at async connectToDataBase (/home/harshit/CrowdStream/backend/src/database/index.ts:37:28) -2026-08-17 21:38:40 info: MongoDB connected -2026-08-17 21:38:40 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 21:38:40 info: Creating worker started -2026-08-17 21:38:40 info: Creating worker started -2026-08-17 21:38:40 info: Creating worker started -2026-08-17 21:38:40 info: Worker created successfully -2026-08-17 21:38:40 info: Worker created successfully -2026-08-17 21:38:40 info: Worker created successfully -2026-08-17 21:38:40 info: Worker pool initialized -2026-08-17 21:38:55 info: [node-1] Client connected: mqIqj8F332F1eTHOAAAB -2026-08-17 21:39:40 info: User disconnected mqIqj8F332F1eTHOAAAB beacuse of ping timeout -2026-08-17 21:39:40 info: Handle disconnect started -2026-08-17 21:39:40 error: RoomId not found -2026-08-17 21:39:40 warn: No active recording for room mqIqj8F332F1eTHOAAAB -2026-08-17 21:39:40 warn: IDK -2026-08-17 21:39:54 info: [node-1] Client connected: 8LpCoj5KU_G-uEzpAAAD -2026-08-17 21:40:39 info: User disconnected 8LpCoj5KU_G-uEzpAAAD beacuse of ping timeout -2026-08-17 21:40:39 info: Handle disconnect started -2026-08-17 21:40:39 error: RoomId not found -2026-08-17 21:40:39 warn: No active recording for room 8LpCoj5KU_G-uEzpAAAD -2026-08-17 21:40:39 warn: IDK -2026-08-17 21:42:06 info: SignIn started -2026-08-17 21:42:06 info: SignIn completed -2026-08-17 21:42:06 info: [node-1] Client connected: 2eQEmxLv-rgkum_DAAAF -2026-08-17 21:42:12 info: SignIn started -2026-08-17 21:42:13 info: SignIn completed -2026-08-17 21:42:13 info: [node-1] Client connected: lrt8gFURK8SJb5T2AAAH -2026-08-17 21:42:15 info: Create room started -2026-08-17 21:42:15 info: Woker loads loaded successfully -2026-08-17 21:42:15 info: Woker assigned succesfully -2026-08-17 21:42:15 info: Creation of router started -2026-08-17 21:42:15 info: Router created -2026-08-17 21:42:15 info: Creation of room successfully executed -2026-08-17 21:42:15 info: Get room started -2026-08-17 21:42:15 info: Get room executed successfully -2026-08-17 21:42:15 info: Broadcaster added to the room -2026-08-17 21:42:15 info: Room created successfully -2026-08-17 21:42:15 info: Get getRouterRtpCapabilities started -2026-08-17 21:42:15 info: Fetching of router started -2026-08-17 21:42:15 info: Fetching of router executed successfully -2026-08-17 21:42:15 info: Rtp capabilities fetched successfully -2026-08-17 21:42:46 info: User disconnected 2eQEmxLv-rgkum_DAAAF beacuse of transport close -2026-08-17 21:42:46 info: Handle disconnect started -2026-08-17 21:42:46 info: Get room started -2026-08-17 21:42:46 info: Get room executed successfully -2026-08-17 21:42:46 info: Get room started -2026-08-17 21:42:46 info: Get room executed successfully -2026-08-17 21:42:46 info: Get room started -2026-08-17 21:42:46 info: Get room executed successfully -2026-08-17 21:42:46 warn: No active recording for room 2eQEmxLv-rgkum_DAAAF -2026-08-17 21:42:46 info: Remove broadcaster success -2026-08-17 21:42:46 info: Handle disconnect succesfully -2026-08-17 21:42:46 info: room:4fd9048f-5723-46b2-852a-4add918d6d63 room deleted successfully -2026-08-17 21:42:47 info: [node-1] Client connected: bfqF9s-NvWE_zN0fAAAJ -2026-08-17 21:42:49 info: Create room started -2026-08-17 21:42:49 info: Woker loads loaded successfully -2026-08-17 21:42:49 info: Woker assigned succesfully -2026-08-17 21:42:49 info: Creation of router started -2026-08-17 21:42:49 info: Router created -2026-08-17 21:42:49 info: Creation of room successfully executed -2026-08-17 21:42:49 info: Get room started -2026-08-17 21:42:49 info: Get room executed successfully -2026-08-17 21:42:49 info: Broadcaster added to the room -2026-08-17 21:42:49 info: Room created successfully -2026-08-17 21:42:49 info: Get getRouterRtpCapabilities started -2026-08-17 21:42:49 info: Fetching of router started -2026-08-17 21:42:49 info: Fetching of router executed successfully -2026-08-17 21:42:49 info: Rtp capabilities fetched successfully -2026-08-17 21:46:53 info: User disconnected lrt8gFURK8SJb5T2AAAH beacuse of transport close -2026-08-17 21:46:53 info: Handle disconnect started -2026-08-17 21:46:53 error: RoomId not found -2026-08-17 21:46:53 warn: No active recording for room lrt8gFURK8SJb5T2AAAH -2026-08-17 21:46:53 warn: IDK -2026-08-17 21:46:54 info: User disconnected bfqF9s-NvWE_zN0fAAAJ beacuse of transport close -2026-08-17 21:46:54 info: Handle disconnect started -2026-08-17 21:46:54 info: Get room started -2026-08-17 21:46:54 info: Get room executed successfully -2026-08-17 21:46:54 info: Get room started -2026-08-17 21:46:54 info: Get room executed successfully -2026-08-17 21:46:54 info: Get room started -2026-08-17 21:46:54 info: Get room executed successfully -2026-08-17 21:46:54 warn: No active recording for room bfqF9s-NvWE_zN0fAAAJ -2026-08-17 21:46:54 info: Remove broadcaster success -2026-08-17 21:46:54 info: Handle disconnect succesfully -2026-08-17 21:46:54 info: room:6f63c34b-ac94-43f0-b6a5-564405e5f148 room deleted successfully -2026-08-17 21:47:46 info: Redis subscribers initialized -2026-08-17 21:47:55 info: Redis subscribers initialized -2026-08-17 21:48:25 warn: MongoDB disconnected -2026-08-17 21:48:25 warn: MongoDB connection failed (1/∞). Retrying in 1000ms -2026-08-17 21:48:25 error: MongoServerSelectionError: Server selection timed out after 30000 ms - at Topology.selectServer (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:635:30) - at async Topology._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:467:22) - at async Topology.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:404:7) - at async topologyConnect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:695:9) - at async MongoClient._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:707:7) - at async MongoClient.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:619:7) - at async NativeConnection.createClient (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/drivers/node-mongodb-native/connection.js:351:3) - at async NativeConnection.openUri (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/connection.js:1098:5) - at async connectToDataBase (/home/harshit/CrowdStream/backend/src/database/index.ts:37:28) -2026-08-17 21:48:59 warn: MongoDB disconnected -2026-08-17 21:48:59 warn: MongoDB connection failed (2/∞). Retrying in 2000ms -2026-08-17 21:48:59 error: MongoNetworkTimeoutError: Socket 'secureConnect' timed out after 32150ms (connectTimeoutMS: 30000) - at TLSSocket. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connect.ts:399:11) - at Object.onceWrapper (node:events:630:28) - at TLSSocket.emit (node:events:509:20) - at TLSSocket.Socket._onTimeout (node:net:610:8) - at listOnTimeout (node:internal/timers:605:17) - at processTimers (node:internal/timers:541:7) -2026-08-17 21:49:14 info: Redis subscribers initialized -2026-08-17 21:49:22 info: Redis subscribers initialized -2026-08-17 21:49:37 info: Redis subscribers initialized -2026-08-17 21:49:39 info: MongoDB connected -2026-08-17 21:49:39 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 21:49:39 info: Creating worker started -2026-08-17 21:49:39 info: Creating worker started -2026-08-17 21:49:39 info: Creating worker started -2026-08-17 21:49:39 info: Worker created successfully -2026-08-17 21:49:39 info: Worker created successfully -2026-08-17 21:49:39 info: Worker created successfully -2026-08-17 21:49:39 info: Worker pool initialized -2026-08-17 21:49:59 info: SignIn started -2026-08-17 21:49:59 info: SignIn completed -2026-08-17 21:49:59 info: [node-1] Client connected: pYaexw0NnKer-QiCAAAB -2026-08-17 21:49:59 info: User disconnected pYaexw0NnKer-QiCAAAB beacuse of forced server close -2026-08-17 21:49:59 info: Handle disconnect started -2026-08-17 21:49:59 error: RoomId not found -2026-08-17 21:49:59 warn: No active recording for room pYaexw0NnKer-QiCAAAB -2026-08-17 21:50:00 warn: IDK -2026-08-17 21:50:03 info: SignIn started -2026-08-17 21:50:03 info: SignIn completed -2026-08-17 21:50:03 info: [node-1] Client connected: jNW7BnwwZ6w1bDxGAAAD -2026-08-17 21:50:08 info: Create room started -2026-08-17 21:50:08 info: Woker loads loaded successfully -2026-08-17 21:50:08 info: Woker assigned succesfully -2026-08-17 21:50:08 info: Creation of router started -2026-08-17 21:50:08 info: Router created -2026-08-17 21:50:08 info: Creation of room successfully executed -2026-08-17 21:50:08 info: Get room started -2026-08-17 21:50:08 info: Get room executed successfully -2026-08-17 21:50:08 info: Broadcaster added to the room -2026-08-17 21:50:08 info: Room created successfully -2026-08-17 21:50:08 info: Get getRouterRtpCapabilities started -2026-08-17 21:50:08 info: Fetching of router started -2026-08-17 21:50:08 info: Fetching of router executed successfully -2026-08-17 21:50:08 info: Rtp capabilities fetched successfully -2026-08-17 21:50:08 info: Get room started -2026-08-17 21:50:08 info: Get room executed successfully -2026-08-17 21:50:08 info: Transport created : 8aa43be5-fb3a-45be-a027-0e10bdaa9179 -2026-08-17 21:50:08 info: Get room started -2026-08-17 21:50:08 info: Get room executed successfully -2026-08-17 21:50:11 info: Connect broadcaster transport listener started -2026-08-17 21:50:11 info: Get room started -2026-08-17 21:50:11 info: Get room executed successfully -2026-08-17 21:50:11 info: Connect broadcaster transport executed successfully -2026-08-17 21:50:11 info: Transport ICE state changed -2026-08-17 21:50:11 info: Transport DTLS state changed -2026-08-17 21:50:11 info: Producer listener started -2026-08-17 21:50:11 info: Get room started -2026-08-17 21:50:11 info: Get room executed successfully -2026-08-17 21:50:11 info: Transport DTLS state changed -2026-08-17 21:50:11 info: Producer listener executed successfully: -2026-08-17 21:50:11 info: Producer listener started -2026-08-17 21:50:11 info: Get room started -2026-08-17 21:50:11 info: Get room executed successfully -2026-08-17 21:50:11 info: Producer listener executed successfully: -2026-08-17 21:50:20 info: [node-1] Client connected: Ehkdmh4q7BFnoph-AAAF -2026-08-17 21:50:34 info: SignIn started -2026-08-17 21:50:34 info: SignIn completed -2026-08-17 21:50:35 info: [node-1] Client connected: f2dvG30rKBcTUisbAAAH -2026-08-17 21:51:05 info: User disconnected Ehkdmh4q7BFnoph-AAAF beacuse of ping timeout -2026-08-17 21:51:05 info: Handle disconnect started -2026-08-17 21:51:05 error: RoomId not found -2026-08-17 21:51:05 warn: No active recording for room Ehkdmh4q7BFnoph-AAAF -2026-08-17 21:51:05 warn: IDK -2026-08-17 21:51:06 info: SignIn started -2026-08-17 21:51:06 info: SignIn completed -2026-08-17 21:51:19 info: User disconnected f2dvG30rKBcTUisbAAAH beacuse of ping timeout -2026-08-17 21:51:19 info: Handle disconnect started -2026-08-17 21:51:19 error: RoomId not found -2026-08-17 21:51:19 warn: No active recording for room f2dvG30rKBcTUisbAAAH -2026-08-17 21:51:20 warn: IDK -2026-08-17 21:51:24 info: [node-1] Client connected: S9jEOXqWDXeMX33FAAAJ -2026-08-17 21:51:39 info: Join as viewer listner started -2026-08-17 21:51:39 info: Rate limiting -2026-08-17 21:51:39 info: Rate limiting -2026-08-17 21:51:39 info: Get room started -2026-08-17 21:51:39 info: Get room executed successfully -2026-08-17 21:51:39 info: Fetching of router started -2026-08-17 21:51:39 info: Fetching of router executed successfully -2026-08-17 21:51:39 info: Get room started -2026-08-17 21:51:39 info: Get room executed successfully -2026-08-17 21:51:39 info: Viewer joined the room -2026-08-17 21:51:39 info: Join viewer listner successfully executed -2026-08-17 21:51:39 info: Create viewer transport listner started -2026-08-17 21:51:39 info: Get room started -2026-08-17 21:51:39 info: Get room executed successfully -2026-08-17 21:51:39 info: Get room started -2026-08-17 21:51:39 info: Get room executed successfully -2026-08-17 21:51:39 info: Transport created : b2308044-39d5-4bcc-b45c-0a0dbff04a13 -2026-08-17 21:51:39 info: Viewer transport successfully created -2026-08-17 21:51:39 info: Create viewer transport listner successfully executed -2026-08-17 21:51:39 info: Consume lister started -2026-08-17 21:51:39 info: Get room started -2026-08-17 21:51:39 info: Get room executed successfully -2026-08-17 21:51:39 info: Get room started -2026-08-17 21:51:39 info: Get room executed successfully -2026-08-17 21:51:39 info: Get room started -2026-08-17 21:51:39 info: Get room executed successfully -2026-08-17 21:51:39 info: Viewer media consume successfully executed -2026-08-17 21:51:39 info: Consume lister executed successfully -2026-08-17 21:51:39 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a48c735512699d8407ab848" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 21:51:39 info: Connect consumer listner started -2026-08-17 21:51:39 info: Get room started -2026-08-17 21:51:39 info: Get room executed successfully -2026-08-17 21:51:39 info: Consumer transport connected successfully -2026-08-17 21:51:39 info: Connect consumer listner executed successfully -2026-08-17 21:51:39 info: Transport ICE state changed -2026-08-17 21:51:39 info: Transport DTLS state changed -2026-08-17 21:51:39 info: Transport DTLS state changed -2026-08-17 21:51:39 info: Get room started -2026-08-17 21:51:39 info: Get room executed successfully -2026-08-17 21:51:39 info: Viewer consumer resumed -2026-08-17 21:51:39 info: Resume consumer listener executed successfully -2026-08-17 21:51:39 info: Get room started -2026-08-17 21:51:39 info: Get room executed successfully -2026-08-17 21:51:39 info: Viewer consumer resumed -2026-08-17 21:51:39 info: Resume consumer listener executed successfully -2026-08-17 21:51:44 info: Get room started -2026-08-17 21:51:44 info: Get room executed successfully -2026-08-17 21:51:44 info: Get room started -2026-08-17 21:51:44 info: Get room executed successfully -2026-08-17 21:51:44 info: Get room started -2026-08-17 21:51:44 info: Get room executed successfully -2026-08-17 21:51:44 info: Get room started -2026-08-17 21:51:44 info: Get room executed successfully -2026-08-17 21:51:44 info: Get room started -2026-08-17 21:51:44 info: Get room executed successfully -2026-08-17 21:51:44 info: Get room started -2026-08-17 21:51:44 info: Get room executed successfully -2026-08-17 21:51:59 info: Get room started -2026-08-17 21:51:59 info: Get room executed successfully -2026-08-17 21:51:59 info: Get room started -2026-08-17 21:51:59 info: Get room executed successfully -2026-08-17 21:52:19 info: Get room started -2026-08-17 21:52:19 info: Get room executed successfully -2026-08-17 21:52:39 info: Get room started -2026-08-17 21:52:39 info: Get room executed successfully -2026-08-17 21:52:59 info: Get room started -2026-08-17 21:52:59 info: Get room executed successfully -2026-08-17 21:53:19 info: Get room started -2026-08-17 21:53:19 info: Get room executed successfully -2026-08-17 21:53:39 info: Get room started -2026-08-17 21:53:39 info: Get room executed successfully -2026-08-17 21:53:59 info: Get room started -2026-08-17 21:53:59 info: Get room executed successfully -2026-08-17 21:54:19 info: Get room started -2026-08-17 21:54:19 info: Get room executed successfully -2026-08-17 21:54:39 info: Get room started -2026-08-17 21:54:39 info: Get room executed successfully -2026-08-17 21:55:01 info: Redis subscribers initialized -2026-08-17 21:55:28 info: Redis subscribers initialized -2026-08-17 21:55:59 warn: MongoDB disconnected -2026-08-17 21:55:59 warn: MongoDB connection failed (1/∞). Retrying in 1000ms -2026-08-17 21:55:59 error: MongoServerSelectionError: Server selection timed out after 30000 ms - at Topology.selectServer (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:635:30) - at async Topology._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:467:22) - at async Topology.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:404:7) - at async topologyConnect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:695:9) - at async MongoClient._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:707:7) - at async MongoClient.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:619:7) - at async NativeConnection.createClient (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/drivers/node-mongodb-native/connection.js:351:3) - at async NativeConnection.openUri (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/connection.js:1098:5) - at async connectToDataBase (/home/harshit/CrowdStream/backend/src/database/index.ts:37:28) -2026-08-17 21:56:37 warn: MongoDB disconnected -2026-08-17 21:56:37 warn: MongoDB connection failed (2/∞). Retrying in 2000ms -2026-08-17 21:56:37 error: MongoNetworkTimeoutError: Socket 'secureConnect' timed out after 30083ms (connectTimeoutMS: 30000) - at TLSSocket. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connect.ts:399:11) - at Object.onceWrapper (node:events:630:28) - at TLSSocket.emit (node:events:509:20) - at TLSSocket.Socket._onTimeout (node:net:610:8) - at listOnTimeout (node:internal/timers:605:17) - at processTimers (node:internal/timers:541:7) -2026-08-17 21:57:10 warn: MongoDB disconnected -2026-08-17 21:57:10 warn: MongoDB connection failed (3/∞). Retrying in 4000ms -2026-08-17 21:57:10 error: MongoNetworkTimeoutError: Socket 'secureConnect' timed out after 30363ms (connectTimeoutMS: 30000) - at TLSSocket. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connect.ts:399:11) - at Object.onceWrapper (node:events:630:28) - at TLSSocket.emit (node:events:509:20) - at TLSSocket.Socket._onTimeout (node:net:610:8) - at listOnTimeout (node:internal/timers:605:17) - at processTimers (node:internal/timers:541:7) -2026-08-17 21:57:46 warn: MongoDB disconnected -2026-08-17 21:57:46 warn: MongoDB connection failed (4/∞). Retrying in 8000ms -2026-08-17 21:57:46 error: MongoNetworkTimeoutError: Socket 'secureConnect' timed out after 32190ms (connectTimeoutMS: 30000) - at TLSSocket. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connect.ts:399:11) - at Object.onceWrapper (node:events:630:28) - at TLSSocket.emit (node:events:509:20) - at TLSSocket.Socket._onTimeout (node:net:610:8) - at listOnTimeout (node:internal/timers:605:17) - at processTimers (node:internal/timers:541:7) -2026-08-17 21:58:01 info: MongoDB connected -2026-08-17 21:58:01 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 21:58:01 info: Creating worker started -2026-08-17 21:58:01 info: Creating worker started -2026-08-17 21:58:01 info: Creating worker started -2026-08-17 21:58:01 info: Worker created successfully -2026-08-17 21:58:01 info: Worker created successfully -2026-08-17 21:58:01 info: Worker created successfully -2026-08-17 21:58:01 info: Worker pool initialized -2026-08-17 21:58:06 info: [node-1] Client connected: E2pGtefRtBRI4KltAAAB -2026-08-17 21:58:11 info: [node-1] Client connected: CbQNRhWZy-R3O_WkAAAD -2026-08-17 21:59:05 info: Redis subscribers initialized -2026-08-17 21:59:13 info: MongoDB connected -2026-08-17 21:59:13 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 21:59:13 info: Creating worker started -2026-08-17 21:59:13 info: Creating worker started -2026-08-17 21:59:13 info: Creating worker started -2026-08-17 21:59:13 info: Worker created successfully -2026-08-17 21:59:13 info: Worker created successfully -2026-08-17 21:59:13 info: Worker created successfully -2026-08-17 21:59:13 info: Worker pool initialized -2026-08-17 22:01:52 info: Redis subscribers initialized -2026-08-17 22:02:25 warn: MongoDB disconnected -2026-08-17 22:02:25 warn: MongoDB connection failed (1/∞). Retrying in 1000ms -2026-08-17 22:02:25 error: MongoNetworkTimeoutError: Socket 'secureConnect' timed out after 31608ms (connectTimeoutMS: 30000) - at TLSSocket. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connect.ts:399:11) - at Object.onceWrapper (node:events:630:28) - at TLSSocket.emit (node:events:509:20) - at TLSSocket.Socket._onTimeout (node:net:610:8) - at listOnTimeout (node:internal/timers:605:17) - at processTimers (node:internal/timers:541:7) -2026-08-17 22:02:56 warn: MongoDB disconnected -2026-08-17 22:02:56 warn: MongoDB connection failed (2/∞). Retrying in 2000ms -2026-08-17 22:02:56 error: MongoServerSelectionError: Server selection timed out after 30000 ms - at Topology.selectServer (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:635:30) - at async Topology._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:467:22) - at async Topology.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:404:7) - at async topologyConnect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:695:9) - at async MongoClient._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:707:7) - at async MongoClient.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:619:7) - at async NativeConnection.createClient (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/drivers/node-mongodb-native/connection.js:351:3) - at async NativeConnection.openUri (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/connection.js:1098:5) - at async connectToDataBase (/home/harshit/CrowdStream/backend/src/database/index.ts:37:28) -2026-08-17 22:03:33 warn: MongoDB disconnected -2026-08-17 22:03:33 warn: MongoDB connection failed (3/∞). Retrying in 4000ms -2026-08-17 22:03:33 error: MongoNetworkTimeoutError: Socket 'secureConnect' timed out after 32100ms (connectTimeoutMS: 30000) - at TLSSocket. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connect.ts:399:11) - at Object.onceWrapper (node:events:630:28) - at TLSSocket.emit (node:events:509:20) - at TLSSocket.Socket._onTimeout (node:net:610:8) - at listOnTimeout (node:internal/timers:605:17) - at processTimers (node:internal/timers:541:7) -2026-08-17 22:03:39 info: MongoDB connected -2026-08-17 22:03:39 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 22:03:39 info: Creating worker started -2026-08-17 22:03:39 info: Creating worker started -2026-08-17 22:03:39 info: Creating worker started -2026-08-17 22:03:39 info: Worker created successfully -2026-08-17 22:03:39 info: Worker created successfully -2026-08-17 22:03:39 info: Worker created successfully -2026-08-17 22:03:39 info: Worker pool initialized -2026-08-17 22:03:57 info: Redis subscribers initialized -2026-08-17 22:04:28 warn: MongoDB disconnected -2026-08-17 22:04:28 warn: MongoDB connection failed (1/∞). Retrying in 1000ms -2026-08-17 22:04:28 error: MongoServerSelectionError: Server selection timed out after 30000 ms - at Topology.selectServer (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:635:30) - at async Topology._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:467:22) - at async Topology.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:404:7) - at async topologyConnect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:695:9) - at async MongoClient._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:707:7) - at async MongoClient.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:619:7) - at async NativeConnection.createClient (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/drivers/node-mongodb-native/connection.js:351:3) - at async NativeConnection.openUri (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/connection.js:1098:5) - at async connectToDataBase (/home/harshit/CrowdStream/backend/src/database/index.ts:37:28) -2026-08-17 22:04:35 info: Redis subscribers initialized -2026-08-17 22:05:06 warn: MongoDB disconnected -2026-08-17 22:05:06 warn: MongoDB connection failed (1/∞). Retrying in 1000ms -2026-08-17 22:05:06 error: MongoServerSelectionError: Server selection timed out after 30000 ms - at Topology.selectServer (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:635:30) - at async Topology._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:467:22) - at async Topology.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:404:7) - at async topologyConnect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:695:9) - at async MongoClient._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:707:7) - at async MongoClient.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:619:7) - at async NativeConnection.createClient (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/drivers/node-mongodb-native/connection.js:351:3) - at async NativeConnection.openUri (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/connection.js:1098:5) - at async connectToDataBase (/home/harshit/CrowdStream/backend/src/database/index.ts:37:28) -2026-08-17 22:05:27 info: Redis subscribers initialized -2026-08-17 22:05:28 info: MongoDB connected -2026-08-17 22:05:28 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 22:05:28 info: Creating worker started -2026-08-17 22:05:28 info: Creating worker started -2026-08-17 22:05:28 info: Creating worker started -2026-08-17 22:05:28 info: Worker created successfully -2026-08-17 22:05:28 info: Worker created successfully -2026-08-17 22:05:28 info: Worker created successfully -2026-08-17 22:05:28 info: Worker pool initialized -2026-08-17 22:07:43 info: SignIn started -2026-08-17 22:07:44 info: SignIn completed -2026-08-17 22:07:52 info: SignIn started -2026-08-17 22:07:53 info: SignIn completed -2026-08-17 22:09:17 info: SignIn started -2026-08-17 22:09:17 info: SignIn completed -2026-08-17 22:09:27 info: SignIn started -2026-08-17 22:09:27 info: SignIn completed -2026-08-17 22:09:27 info: [node-1] Client connected: svBmZOMZSBKa9Z7TAAAB -2026-08-17 22:09:32 info: Create room started -2026-08-17 22:09:32 info: Woker loads loaded successfully -2026-08-17 22:09:32 info: Woker assigned succesfully -2026-08-17 22:09:32 info: Creation of router started -2026-08-17 22:09:32 info: Router created -2026-08-17 22:09:32 info: Creation of room successfully executed -2026-08-17 22:09:32 info: Get room started -2026-08-17 22:09:32 info: Get room executed successfully -2026-08-17 22:09:32 info: Broadcaster added to the room -2026-08-17 22:09:32 info: Room created successfully -2026-08-17 22:09:32 info: Get getRouterRtpCapabilities started -2026-08-17 22:09:32 info: Fetching of router started -2026-08-17 22:09:32 info: Fetching of router executed successfully -2026-08-17 22:09:32 info: Rtp capabilities fetched successfully -2026-08-17 22:09:32 info: Get room started -2026-08-17 22:09:32 info: Get room executed successfully -2026-08-17 22:09:32 info: Transport created : ed83fb3c-611b-4e65-a231-4361ae463d77 -2026-08-17 22:09:32 info: Get room started -2026-08-17 22:09:32 info: Get room executed successfully -2026-08-17 22:09:35 info: Connect broadcaster transport listener started -2026-08-17 22:09:35 info: Get room started -2026-08-17 22:09:35 info: Get room executed successfully -2026-08-17 22:09:35 info: Connect broadcaster transport executed successfully -2026-08-17 22:09:35 info: Transport ICE state changed -2026-08-17 22:09:35 info: Transport DTLS state changed -2026-08-17 22:09:35 info: Producer listener started -2026-08-17 22:09:35 info: Transport DTLS state changed -2026-08-17 22:09:35 info: Get room started -2026-08-17 22:09:35 info: Get room executed successfully -2026-08-17 22:09:35 info: Producer listener executed successfully: -2026-08-17 22:09:35 info: Producer listener started -2026-08-17 22:09:35 info: Get room started -2026-08-17 22:09:35 info: Get room executed successfully -2026-08-17 22:09:35 info: Producer listener executed successfully: -2026-08-17 22:09:38 info: [node-1] Client connected: zpcO50-s-jDl_cLpAAAD -2026-08-17 22:09:48 info: SignIn started -2026-08-17 22:09:49 info: SignIn completed -2026-08-17 22:09:49 info: [node-1] Client connected: 1SKJHeJmwSwImO_CAAAF -2026-08-17 22:09:55 info: Join as viewer listner started -2026-08-17 22:09:55 info: Rate limiting -2026-08-17 22:09:55 info: Rate limiting -2026-08-17 22:09:55 info: Get room started -2026-08-17 22:09:55 info: Get room executed successfully -2026-08-17 22:09:55 info: Fetching of router started -2026-08-17 22:09:55 info: Fetching of router executed successfully -2026-08-17 22:09:55 info: Get room started -2026-08-17 22:09:55 info: Get room executed successfully -2026-08-17 22:09:55 info: Viewer joined the room -2026-08-17 22:09:55 info: Join viewer listner successfully executed -2026-08-17 22:09:55 info: Create viewer transport listner started -2026-08-17 22:09:55 info: Get room started -2026-08-17 22:09:55 info: Get room executed successfully -2026-08-17 22:09:55 info: Get room started -2026-08-17 22:09:55 info: Get room executed successfully -2026-08-17 22:09:55 info: Transport created : b0ce713f-06d4-4e7c-935b-95db3ead17ae -2026-08-17 22:09:55 info: Viewer transport successfully created -2026-08-17 22:09:55 info: Create viewer transport listner successfully executed -2026-08-17 22:09:55 info: Consume lister started -2026-08-17 22:09:55 info: Get room started -2026-08-17 22:09:55 info: Get room executed successfully -2026-08-17 22:09:55 info: Get room started -2026-08-17 22:09:55 info: Get room executed successfully -2026-08-17 22:09:55 info: Get room started -2026-08-17 22:09:55 info: Get room executed successfully -2026-08-17 22:09:55 info: Viewer media consume successfully executed -2026-08-17 22:09:55 info: Consume lister executed successfully -2026-08-17 22:09:55 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a48c735512699d8407ab848" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 22:09:55 info: Connect consumer listner started -2026-08-17 22:09:55 info: Get room started -2026-08-17 22:09:55 info: Get room executed successfully -2026-08-17 22:09:55 info: Consumer transport connected successfully -2026-08-17 22:09:55 info: Connect consumer listner executed successfully -2026-08-17 22:09:55 info: Transport ICE state changed -2026-08-17 22:09:55 info: Transport DTLS state changed -2026-08-17 22:09:55 info: Transport DTLS state changed -2026-08-17 22:09:55 info: Get room started -2026-08-17 22:09:55 info: Get room executed successfully -2026-08-17 22:09:55 info: Viewer consumer resumed -2026-08-17 22:09:55 info: Resume consumer listener executed successfully -2026-08-17 22:09:55 info: Get room started -2026-08-17 22:09:55 info: Get room executed successfully -2026-08-17 22:09:55 info: Viewer consumer resumed -2026-08-17 22:09:55 info: Resume consumer listener executed successfully -2026-08-17 22:09:59 info: Get room started -2026-08-17 22:09:59 info: Get room executed successfully -2026-08-17 22:09:59 info: Get room started -2026-08-17 22:09:59 info: Get room executed successfully -2026-08-17 22:09:59 info: Get room started -2026-08-17 22:09:59 info: Get room executed successfully -2026-08-17 22:09:59 info: Get room started -2026-08-17 22:09:59 info: Get room executed successfully -2026-08-17 22:09:59 info: Get room started -2026-08-17 22:09:59 info: Get room executed successfully -2026-08-17 22:09:59 info: Get room started -2026-08-17 22:09:59 info: Get room executed successfully -2026-08-17 22:10:09 info: Get room started -2026-08-17 22:10:09 info: Get room executed successfully -2026-08-17 22:10:15 info: Get room started -2026-08-17 22:10:15 info: Get room executed successfully -2026-08-17 22:10:23 info: User disconnected zpcO50-s-jDl_cLpAAAD beacuse of ping timeout -2026-08-17 22:10:23 info: Handle disconnect started -2026-08-17 22:10:23 error: RoomId not found -2026-08-17 22:10:23 warn: No active recording for room zpcO50-s-jDl_cLpAAAD -2026-08-17 22:10:24 warn: IDK -2026-08-17 22:10:35 info: Get room started -2026-08-17 22:10:35 info: Get room executed successfully -2026-08-17 22:10:55 info: Get room started -2026-08-17 22:10:55 info: Get room executed successfully -2026-08-17 22:11:15 info: Get room started -2026-08-17 22:11:15 info: Get room executed successfully -2026-08-17 22:11:35 info: Get room started -2026-08-17 22:11:35 info: Get room executed successfully -2026-08-17 22:11:55 info: Get room started -2026-08-17 22:11:55 info: Get room executed successfully -2026-08-17 22:12:15 info: Get room started -2026-08-17 22:12:15 info: Get room executed successfully -2026-08-17 22:12:35 info: Get room started -2026-08-17 22:12:35 info: Get room executed successfully -2026-08-17 22:12:55 info: Get room started -2026-08-17 22:12:55 info: Get room executed successfully -2026-08-17 22:13:15 info: Get room started -2026-08-17 22:13:15 info: Get room executed successfully -2026-08-17 22:13:22 info: Join as viewer listner started -2026-08-17 22:13:22 info: Rate limiting -2026-08-17 22:13:22 info: Rate limiting -2026-08-17 22:13:22 info: Get room started -2026-08-17 22:13:22 info: Get room executed successfully -2026-08-17 22:13:22 info: Fetching of router started -2026-08-17 22:13:22 info: Fetching of router executed successfully -2026-08-17 22:13:22 info: Get room started -2026-08-17 22:13:22 info: Get room executed successfully -2026-08-17 22:13:22 info: Viewer joined the room -2026-08-17 22:13:22 info: Join viewer listner successfully executed -2026-08-17 22:13:35 info: Get room started -2026-08-17 22:13:35 info: Get room executed successfully -2026-08-17 22:13:55 info: Get room started -2026-08-17 22:13:55 info: Get room executed successfully -2026-08-17 22:14:00 info: User disconnected 1SKJHeJmwSwImO_CAAAF beacuse of transport close -2026-08-17 22:14:00 info: Handle disconnect started -2026-08-17 22:14:00 info: Get room started -2026-08-17 22:14:00 info: Get room executed successfully -2026-08-17 22:14:00 info: Get room started -2026-08-17 22:14:00 info: Get room executed successfully -2026-08-17 22:14:00 info: Remove viewer started -2026-08-17 22:14:00 info: Handle disconnect succesfully -2026-08-17 22:14:00 warn: No active recording for room 1SKJHeJmwSwImO_CAAAF -2026-08-17 22:14:00 info: Viewer removed from room -2026-08-17 22:14:00 info: Transport DTLS state changed -2026-08-17 22:14:00 info: [node-1] Client connected: RFFDfDuKPd2vdkGTAAAH -2026-08-17 22:14:28 info: Transport ICE state changed -2026-08-17 22:14:29 info: SignIn started -2026-08-17 22:14:30 info: SignIn completed -2026-08-17 22:14:30 info: [node-1] Client connected: xNhk-Lk3ufJOFYfqAAAJ -2026-08-17 22:14:31 info: [node-1] Client connected: v7KopRQT309YkY6CAAAL -2026-08-17 22:14:45 info: User disconnected RFFDfDuKPd2vdkGTAAAH beacuse of ping timeout -2026-08-17 22:14:45 info: Handle disconnect started -2026-08-17 22:14:45 error: RoomId not found -2026-08-17 22:14:45 warn: No active recording for room RFFDfDuKPd2vdkGTAAAH -2026-08-17 22:14:45 warn: IDK -2026-08-17 22:15:14 info: User disconnected v7KopRQT309YkY6CAAAL beacuse of transport error -2026-08-17 22:15:14 info: Handle disconnect started -2026-08-17 22:15:14 error: RoomId not found -2026-08-17 22:15:14 warn: No active recording for room v7KopRQT309YkY6CAAAL -2026-08-17 22:15:14 warn: IDK -2026-08-17 22:15:15 info: User disconnected xNhk-Lk3ufJOFYfqAAAJ beacuse of ping timeout -2026-08-17 22:15:15 info: Handle disconnect started -2026-08-17 22:15:15 error: RoomId not found -2026-08-17 22:15:15 warn: No active recording for room xNhk-Lk3ufJOFYfqAAAJ -2026-08-17 22:15:15 warn: IDK -2026-08-17 22:15:15 info: [node-1] Client connected: 6Z8xEoNuFoEDw24dAAAN -2026-08-17 22:15:29 info: Join as viewer listner started -2026-08-17 22:15:29 info: Rate limiting -2026-08-17 22:15:29 info: Rate limiting -2026-08-17 22:15:29 info: Get room started -2026-08-17 22:15:29 info: Get room executed successfully -2026-08-17 22:15:29 info: Fetching of router started -2026-08-17 22:15:29 info: Fetching of router executed successfully -2026-08-17 22:15:29 info: Get room started -2026-08-17 22:15:29 info: Get room executed successfully -2026-08-17 22:15:29 info: Viewer joined the room -2026-08-17 22:15:29 info: Join viewer listner successfully executed -2026-08-17 22:15:29 info: Create viewer transport listner started -2026-08-17 22:15:29 info: Get room started -2026-08-17 22:15:29 info: Get room executed successfully -2026-08-17 22:15:29 info: Get room started -2026-08-17 22:15:29 info: Get room executed successfully -2026-08-17 22:15:29 info: Transport created : 5d8e0ed7-51be-4f89-9506-c9516c8f8bf6 -2026-08-17 22:15:29 info: Viewer transport successfully created -2026-08-17 22:15:29 info: Create viewer transport listner successfully executed -2026-08-17 22:15:29 info: Consume lister started -2026-08-17 22:15:29 info: Get room started -2026-08-17 22:15:29 info: Get room executed successfully -2026-08-17 22:15:29 info: Get room started -2026-08-17 22:15:29 info: Get room executed successfully -2026-08-17 22:15:29 info: Get room started -2026-08-17 22:15:29 info: Get room executed successfully -2026-08-17 22:15:29 info: Viewer media consume successfully executed -2026-08-17 22:15:29 info: Consume lister executed successfully -2026-08-17 22:15:29 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a48c735512699d8407ab848" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 22:15:29 info: Connect consumer listner started -2026-08-17 22:15:29 info: Get room started -2026-08-17 22:15:29 info: Get room executed successfully -2026-08-17 22:15:29 info: Consumer transport connected successfully -2026-08-17 22:15:29 info: Connect consumer listner executed successfully -2026-08-17 22:15:29 info: Transport ICE state changed -2026-08-17 22:15:29 info: Transport DTLS state changed -2026-08-17 22:15:29 info: Transport DTLS state changed -2026-08-17 22:15:29 info: Get room started -2026-08-17 22:15:29 info: Get room executed successfully -2026-08-17 22:15:29 info: Viewer consumer resumed -2026-08-17 22:15:29 info: Resume consumer listener executed successfully -2026-08-17 22:15:29 info: Get room started -2026-08-17 22:15:29 info: Get room executed successfully -2026-08-17 22:15:29 info: Viewer consumer resumed -2026-08-17 22:15:29 info: Resume consumer listener executed successfully -2026-08-17 22:15:32 info: Get room started -2026-08-17 22:15:32 info: Get room executed successfully -2026-08-17 22:15:32 info: Get room started -2026-08-17 22:15:32 info: Get room executed successfully -2026-08-17 22:15:32 info: Get room started -2026-08-17 22:15:32 info: Get room executed successfully -2026-08-17 22:15:32 info: Get room started -2026-08-17 22:15:32 info: Get room executed successfully -2026-08-17 22:15:32 info: Get room started -2026-08-17 22:15:32 info: Get room executed successfully -2026-08-17 22:15:32 info: Get room started -2026-08-17 22:15:32 info: Get room executed successfully -2026-08-17 22:15:37 info: User disconnected svBmZOMZSBKa9Z7TAAAB beacuse of ping timeout -2026-08-17 22:15:37 info: Handle disconnect started -2026-08-17 22:15:37 info: Get room started -2026-08-17 22:15:37 info: Get room executed successfully -2026-08-17 22:15:37 info: Get room started -2026-08-17 22:15:37 info: Get room executed successfully -2026-08-17 22:15:37 info: Get room started -2026-08-17 22:15:37 info: Get room executed successfully -2026-08-17 22:15:37 info: Get room started -2026-08-17 22:15:37 info: Get room executed successfully -2026-08-17 22:15:37 info: Get room started -2026-08-17 22:15:37 info: Get room executed successfully -2026-08-17 22:15:37 warn: No active recording for room svBmZOMZSBKa9Z7TAAAB -2026-08-17 22:15:37 info: Remove broadcaster success -2026-08-17 22:15:37 info: Handle disconnect succesfully -2026-08-17 22:15:37 info: room:a40b2fe3-7f0e-40ca-9544-d1a3c2265cf1 room deleted successfully -2026-08-17 22:15:40 info: [node-1] Client connected: MdunuJTNEw1DmCBAAAAP -2026-08-17 22:15:40 info: Get room started -2026-08-17 22:15:40 error: Room not found -2026-08-17 22:15:40 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:101:13) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:207:27) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-08-17 22:15:40 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:113:11) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:207:27) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-08-17 22:15:49 info: Get room started -2026-08-17 22:45:45 info: Redis subscribers initialized -2026-08-17 22:45:47 info: MongoDB connected -2026-08-17 22:45:47 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 22:45:47 info: Creating worker started -2026-08-17 22:45:47 info: Creating worker started -2026-08-17 22:45:47 info: Creating worker started -2026-08-17 22:45:47 info: Worker created successfully -2026-08-17 22:45:47 info: Worker created successfully -2026-08-17 22:45:47 info: Worker created successfully -2026-08-17 22:45:47 info: Worker pool initialized -2026-08-17 22:46:00 info: SignIn started -2026-08-17 22:46:00 info: SignIn completed -2026-08-17 22:46:00 info: [node-1] Client connected: xW2L6H6TSqd3dS48AAAB -2026-08-17 22:46:08 info: SignIn started -2026-08-17 22:46:08 info: SignIn completed -2026-08-17 22:46:08 info: [node-1] Client connected: eldEpO0bSHq2TY7wAAAD -2026-08-17 22:46:12 info: Create room started -2026-08-17 22:46:12 info: Woker loads loaded successfully -2026-08-17 22:46:12 info: Woker assigned succesfully -2026-08-17 22:46:12 info: Creation of router started -2026-08-17 22:46:12 info: Router created -2026-08-17 22:46:12 info: Creation of room successfully executed -2026-08-17 22:46:12 info: Get room started -2026-08-17 22:46:12 info: Get room executed successfully -2026-08-17 22:46:12 info: Broadcaster added to the room -2026-08-17 22:46:12 info: Room created successfully -2026-08-17 22:46:12 info: Get getRouterRtpCapabilities started -2026-08-17 22:46:12 info: Fetching of router started -2026-08-17 22:46:12 info: Fetching of router executed successfully -2026-08-17 22:46:12 info: Rtp capabilities fetched successfully -2026-08-17 22:46:12 info: Get room started -2026-08-17 22:46:12 info: Get room executed successfully -2026-08-17 22:46:12 info: Transport created : 19ddb9ce-dab0-4b72-a70a-fd324393a7fd -2026-08-17 22:46:12 info: Get room started -2026-08-17 22:46:12 info: Get room executed successfully -2026-08-17 22:46:14 info: Connect broadcaster transport listener started -2026-08-17 22:46:14 info: Get room started -2026-08-17 22:46:14 info: Get room executed successfully -2026-08-17 22:46:14 info: Connect broadcaster transport executed successfully -2026-08-17 22:46:14 info: Transport ICE state changed -2026-08-17 22:46:14 info: Transport DTLS state changed -2026-08-17 22:46:14 info: Producer listener started -2026-08-17 22:46:14 info: Get room started -2026-08-17 22:46:14 info: Get room executed successfully -2026-08-17 22:46:14 info: Transport DTLS state changed -2026-08-17 22:46:15 info: Producer listener executed successfully: -2026-08-17 22:46:15 info: Producer listener started -2026-08-17 22:46:15 info: Get room started -2026-08-17 22:46:15 info: Get room executed successfully -2026-08-17 22:46:15 info: Producer listener executed successfully: -2026-08-17 22:46:29 info: Join as viewer listner started -2026-08-17 22:46:29 info: Rate limiting -2026-08-17 22:46:29 info: Rate limiting -2026-08-17 22:46:29 info: Get room started -2026-08-17 22:46:29 info: Get room executed successfully -2026-08-17 22:46:29 info: Fetching of router started -2026-08-17 22:46:29 info: Fetching of router executed successfully -2026-08-17 22:46:29 info: Get room started -2026-08-17 22:46:29 info: Get room executed successfully -2026-08-17 22:46:29 info: Viewer joined the room -2026-08-17 22:46:29 info: Join viewer listner successfully executed -2026-08-17 22:46:29 info: Create viewer transport listner started -2026-08-17 22:46:29 info: Get room started -2026-08-17 22:46:29 info: Get room executed successfully -2026-08-17 22:46:29 info: Get room started -2026-08-17 22:46:29 info: Get room executed successfully -2026-08-17 22:46:29 info: Transport created : c53e06f2-8e48-481b-99ad-e466d4eda29f -2026-08-17 22:46:29 info: Viewer transport successfully created -2026-08-17 22:46:29 info: Create viewer transport listner successfully executed -2026-08-17 22:46:29 info: Consume lister started -2026-08-17 22:46:29 info: Get room started -2026-08-17 22:46:29 info: Get room executed successfully -2026-08-17 22:46:29 info: Get room started -2026-08-17 22:46:29 info: Get room executed successfully -2026-08-17 22:46:29 info: Get room started -2026-08-17 22:46:29 info: Get room executed successfully -2026-08-17 22:46:29 info: Viewer media consume successfully executed -2026-08-17 22:46:29 info: Consume lister executed successfully -2026-08-17 22:46:29 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 22:46:29 info: Connect consumer listner started -2026-08-17 22:46:29 info: Get room started -2026-08-17 22:46:29 info: Get room executed successfully -2026-08-17 22:46:29 info: Consumer transport connected successfully -2026-08-17 22:46:29 info: Connect consumer listner executed successfully -2026-08-17 22:46:29 info: Transport ICE state changed -2026-08-17 22:46:29 info: Transport DTLS state changed -2026-08-17 22:46:29 info: Transport DTLS state changed -2026-08-17 22:46:29 info: Get room started -2026-08-17 22:46:29 info: Get room executed successfully -2026-08-17 22:46:29 info: Viewer consumer resumed -2026-08-17 22:46:29 info: Resume consumer listener executed successfully -2026-08-17 22:46:29 info: Get room started -2026-08-17 22:46:29 info: Get room executed successfully -2026-08-17 22:46:29 info: Viewer consumer resumed -2026-08-17 22:46:29 info: Resume consumer listener executed successfully -2026-08-17 22:46:32 info: Get room started -2026-08-17 22:46:32 info: Get room executed successfully -2026-08-17 22:46:32 info: Get room started -2026-08-17 22:46:32 info: Get room executed successfully -2026-08-17 22:46:32 info: Get room started -2026-08-17 22:46:32 info: Get room executed successfully -2026-08-17 22:46:32 info: Get room started -2026-08-17 22:46:32 info: Get room executed successfully -2026-08-17 22:46:32 info: Get room started -2026-08-17 22:46:32 info: Get room executed successfully -2026-08-17 22:46:32 info: Get room started -2026-08-17 22:46:32 info: Get room executed successfully -2026-08-17 22:46:46 info: Get room started -2026-08-17 22:46:46 info: Get room executed successfully -2026-08-17 22:46:49 info: Get room started -2026-08-17 22:46:49 info: Get room executed successfully -2026-08-17 22:47:09 info: Get room started -2026-08-17 22:47:09 info: Get room executed successfully -2026-08-17 22:47:28 info: User disconnected xW2L6H6TSqd3dS48AAAB beacuse of transport close -2026-08-17 22:47:28 info: Handle disconnect started -2026-08-17 22:47:28 info: Get room started -2026-08-17 22:47:28 info: Get room executed successfully -2026-08-17 22:47:28 info: Get room started -2026-08-17 22:47:28 info: Get room executed successfully -2026-08-17 22:47:28 info: Get room started -2026-08-17 22:47:28 info: Get room executed successfully -2026-08-17 22:47:28 info: Get room started -2026-08-17 22:47:28 info: Get room executed successfully -2026-08-17 22:47:28 info: Get room started -2026-08-17 22:47:28 info: Get room executed successfully -2026-08-17 22:47:28 warn: No active recording for room xW2L6H6TSqd3dS48AAAB -2026-08-17 22:47:28 info: Remove broadcaster success -2026-08-17 22:47:28 info: Handle disconnect succesfully -2026-08-17 22:47:28 info: room:3122ccaf-e348-4b84-b92f-ee1459901f1d room deleted successfully -2026-08-17 22:47:28 info: [node-1] Client connected: pI-2PfK-XAOxK7SbAAAF -2026-08-17 22:47:29 info: Get room started -2026-08-17 22:48:24 info: Redis subscribers initialized -2026-08-17 22:48:26 info: MongoDB connected -2026-08-17 22:48:26 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 22:48:26 info: Creating worker started -2026-08-17 22:48:26 info: Creating worker started -2026-08-17 22:48:26 info: Creating worker started -2026-08-17 22:48:26 info: Worker created successfully -2026-08-17 22:48:26 info: Worker created successfully -2026-08-17 22:48:26 info: Worker created successfully -2026-08-17 22:48:26 info: Worker pool initialized -2026-08-17 22:48:30 info: [node-1] Client connected: qWrh2nwNk64rzbB3AAAB -2026-08-17 22:48:30 error: Room not found -2026-08-17 22:49:58 info: Redis subscribers initialized -2026-08-17 22:50:05 info: MongoDB connected -2026-08-17 22:50:05 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 22:50:05 info: Creating worker started -2026-08-17 22:50:05 info: Creating worker started -2026-08-17 22:50:05 info: Creating worker started -2026-08-17 22:50:05 info: Worker created successfully -2026-08-17 22:50:05 info: Worker created successfully -2026-08-17 22:50:05 info: Worker created successfully -2026-08-17 22:50:05 info: Worker pool initialized -2026-08-17 22:53:15 info: Redis subscribers initialized -2026-08-17 22:53:16 info: MongoDB connected -2026-08-17 22:53:16 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 22:53:16 info: Creating worker started -2026-08-17 22:53:16 info: Creating worker started -2026-08-17 22:53:16 info: Creating worker started -2026-08-17 22:53:16 info: Worker created successfully -2026-08-17 22:53:16 info: Worker created successfully -2026-08-17 22:53:16 info: Worker created successfully -2026-08-17 22:53:16 info: Worker pool initialized -2026-08-17 22:53:22 info: Redis subscribers initialized -2026-08-17 22:53:23 info: MongoDB connected -2026-08-17 22:53:23 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 22:53:23 info: Creating worker started -2026-08-17 22:53:23 info: Creating worker started -2026-08-17 22:53:23 info: Creating worker started -2026-08-17 22:53:23 info: Worker created successfully -2026-08-17 22:53:23 info: Worker created successfully -2026-08-17 22:53:23 info: Worker created successfully -2026-08-17 22:53:23 info: Worker pool initialized -2026-08-17 22:54:09 info: Redis subscribers initialized -2026-08-17 22:54:11 info: MongoDB connected -2026-08-17 22:54:11 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 22:54:11 info: Creating worker started -2026-08-17 22:54:11 info: Creating worker started -2026-08-17 22:54:11 info: Creating worker started -2026-08-17 22:54:11 info: Worker created successfully -2026-08-17 22:54:11 info: Worker created successfully -2026-08-17 22:54:11 info: Worker created successfully -2026-08-17 22:54:11 info: Worker pool initialized -2026-08-17 22:54:20 info: SignIn started -2026-08-17 22:54:20 info: SignIn completed -2026-08-17 22:54:21 info: [node-1] Client connected: z2b8NJ-Xj94XbJi0AAAB -2026-08-17 22:54:24 info: SignIn started -2026-08-17 22:54:24 info: SignIn completed -2026-08-17 22:54:24 info: [node-1] Client connected: lu8QaT-BylA1sDnVAAAD -2026-08-17 22:54:27 info: Create room started -2026-08-17 22:54:27 info: Woker loads loaded successfully -2026-08-17 22:54:27 info: Woker assigned succesfully -2026-08-17 22:54:27 info: Creation of router started -2026-08-17 22:54:27 info: Router created -2026-08-17 22:54:27 info: Creation of room successfully executed -2026-08-17 22:54:27 info: Get room started -2026-08-17 22:54:27 info: Get room executed successfully -2026-08-17 22:54:27 info: Broadcaster added to the room -2026-08-17 22:54:27 info: Room created successfully -2026-08-17 22:54:27 info: Get getRouterRtpCapabilities started -2026-08-17 22:54:27 info: Fetching of router started -2026-08-17 22:54:27 info: Fetching of router executed successfully -2026-08-17 22:54:27 info: Rtp capabilities fetched successfully -2026-08-17 22:54:27 info: Get room started -2026-08-17 22:54:27 info: Get room executed successfully -2026-08-17 22:54:27 info: Transport created : 6d8fd7d4-6501-4d15-8a97-672d9724af3f -2026-08-17 22:54:27 info: Get room started -2026-08-17 22:54:27 info: Get room executed successfully -2026-08-17 22:54:27 info: Connect broadcaster transport listener started -2026-08-17 22:54:27 info: Get room started -2026-08-17 22:54:27 info: Get room executed successfully -2026-08-17 22:54:27 info: Connect broadcaster transport executed successfully -2026-08-17 22:54:27 info: Transport ICE state changed -2026-08-17 22:54:27 info: Transport DTLS state changed -2026-08-17 22:54:27 info: Producer listener started -2026-08-17 22:54:27 info: Get room started -2026-08-17 22:54:27 info: Get room executed successfully -2026-08-17 22:54:27 info: Transport DTLS state changed -2026-08-17 22:54:27 info: Producer listener executed successfully: -2026-08-17 22:54:27 info: Producer listener started -2026-08-17 22:54:27 info: Get room started -2026-08-17 22:54:27 info: Get room executed successfully -2026-08-17 22:54:27 info: Producer listener executed successfully: -2026-08-17 22:54:35 info: Join as viewer listner started -2026-08-17 22:54:35 info: Rate limiting -2026-08-17 22:54:35 info: Rate limiting -2026-08-17 22:54:35 info: Get room started -2026-08-17 22:54:35 info: Get room executed successfully -2026-08-17 22:54:35 info: Fetching of router started -2026-08-17 22:54:35 info: Fetching of router executed successfully -2026-08-17 22:54:35 info: Get room started -2026-08-17 22:54:35 info: Get room executed successfully -2026-08-17 22:54:35 info: Viewer joined the room -2026-08-17 22:54:35 info: Join viewer listner successfully executed -2026-08-17 22:54:35 info: Create viewer transport listner started -2026-08-17 22:54:35 info: Get room started -2026-08-17 22:54:35 info: Get room executed successfully -2026-08-17 22:54:35 info: Get room started -2026-08-17 22:54:35 info: Get room executed successfully -2026-08-17 22:54:35 info: Transport created : 7a24242e-6dec-4f2f-bdfd-8945c0ed6e1e -2026-08-17 22:54:35 info: Viewer transport successfully created -2026-08-17 22:54:35 info: Create viewer transport listner successfully executed -2026-08-17 22:54:35 info: Consume lister started -2026-08-17 22:54:35 info: Get room started -2026-08-17 22:54:35 info: Get room executed successfully -2026-08-17 22:54:35 info: Get room started -2026-08-17 22:54:35 info: Get room executed successfully -2026-08-17 22:54:35 info: Get room started -2026-08-17 22:54:35 info: Get room executed successfully -2026-08-17 22:54:35 info: Viewer media consume successfully executed -2026-08-17 22:54:35 info: Consume lister executed successfully -2026-08-17 22:54:35 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a48c735512699d8407ab848" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 22:54:35 info: Connect consumer listner started -2026-08-17 22:54:35 info: Get room started -2026-08-17 22:54:35 info: Get room executed successfully -2026-08-17 22:54:35 info: Consumer transport connected successfully -2026-08-17 22:54:35 info: Connect consumer listner executed successfully -2026-08-17 22:54:35 info: Transport ICE state changed -2026-08-17 22:54:35 info: Transport DTLS state changed -2026-08-17 22:54:35 info: Transport DTLS state changed -2026-08-17 22:54:35 info: Get room started -2026-08-17 22:54:35 info: Get room executed successfully -2026-08-17 22:54:35 info: Viewer consumer resumed -2026-08-17 22:54:35 info: Resume consumer listener executed successfully -2026-08-17 22:54:35 info: Get room started -2026-08-17 22:54:35 info: Get room executed successfully -2026-08-17 22:54:35 info: Viewer consumer resumed -2026-08-17 22:54:35 info: Resume consumer listener executed successfully -2026-08-17 22:54:39 info: Get room started -2026-08-17 22:54:39 info: Get room executed successfully -2026-08-17 22:54:39 info: Get room started -2026-08-17 22:54:39 info: Get room executed successfully -2026-08-17 22:54:39 info: Get room started -2026-08-17 22:54:39 info: Get room executed successfully -2026-08-17 22:54:39 info: Get room started -2026-08-17 22:54:39 info: Get room executed successfully -2026-08-17 22:54:39 info: Get room started -2026-08-17 22:54:39 info: Get room executed successfully -2026-08-17 22:54:39 info: Get room started -2026-08-17 22:54:39 info: Get room executed successfully -2026-08-17 22:54:45 info: Get room started -2026-08-17 22:54:45 info: Get room executed successfully -2026-08-17 22:54:55 info: Get room started -2026-08-17 22:54:55 info: Get room executed successfully -2026-08-17 22:55:15 info: Get room started -2026-08-17 22:55:15 info: Get room executed successfully -2026-08-17 22:55:33 info: Get room started -2026-08-17 22:55:33 info: Get room executed successfully -2026-08-17 22:55:33 info: Get room started -2026-08-17 22:55:33 info: Get room executed successfully -2026-08-17 22:55:33 info: Get room started -2026-08-17 22:55:33 info: Get room executed successfully -2026-08-17 22:55:33 info: Get room started -2026-08-17 22:55:33 info: Get room executed successfully -2026-08-17 22:55:33 info: Get room started -2026-08-17 22:55:33 info: Get room executed successfully -2026-08-17 22:55:33 info: Get room started -2026-08-17 22:55:33 info: Get room executed successfully -2026-08-17 22:55:35 info: Get room started -2026-08-17 22:55:35 info: Get room executed successfully -2026-08-17 22:55:37 info: Get room started -2026-08-17 22:55:37 info: Get room executed successfully -2026-08-17 22:55:55 info: Get room started -2026-08-17 22:55:55 info: Get room executed successfully -2026-08-17 22:56:15 info: Get room started -2026-08-17 22:56:15 info: Get room executed successfully -2026-08-17 22:56:35 info: Get room started -2026-08-17 22:56:35 info: Get room executed successfully -2026-08-17 22:56:55 info: Get room started -2026-08-17 22:56:55 info: Get room executed successfully -2026-08-17 22:57:21 info: Redis subscribers initialized -2026-08-17 22:57:23 info: MongoDB connected -2026-08-17 22:57:23 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 22:57:23 info: Creating worker started -2026-08-17 22:57:23 info: Creating worker started -2026-08-17 22:57:23 info: Creating worker started -2026-08-17 22:57:23 info: Worker created successfully -2026-08-17 22:57:23 info: Worker created successfully -2026-08-17 22:57:23 info: Worker created successfully -2026-08-17 22:57:23 info: Worker pool initialized -2026-08-17 22:57:27 info: [node-1] Client connected: p53aZeG2UXrldZ8wAAAB -2026-08-17 22:57:28 info: [node-1] Client connected: WhEM9GloCXEdlNn1AAAD -2026-08-17 22:57:28 error: Room not found -2026-08-17 22:57:38 info: Redis subscribers initialized -2026-08-17 22:57:40 info: MongoDB connected -2026-08-17 22:57:40 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 22:57:40 info: Creating worker started -2026-08-17 22:57:40 info: Creating worker started -2026-08-17 22:57:40 info: Creating worker started -2026-08-17 22:57:40 info: Worker created successfully -2026-08-17 22:57:40 info: Worker created successfully -2026-08-17 22:57:40 info: Worker created successfully -2026-08-17 22:57:40 info: Worker pool initialized -2026-08-17 22:57:47 info: [node-1] Client connected: ja7dwRfpJVownOdnAAAB -2026-08-17 22:57:47 info: Create room started -2026-08-17 22:57:47 info: Woker loads loaded successfully -2026-08-17 22:57:47 info: Woker assigned succesfully -2026-08-17 22:57:47 info: Creation of router started -2026-08-17 22:57:47 info: Router created -2026-08-17 22:57:47 info: Creation of room successfully executed -2026-08-17 22:57:47 info: Get room started -2026-08-17 22:57:47 info: Get room executed successfully -2026-08-17 22:57:47 info: Broadcaster added to the room -2026-08-17 22:57:47 info: Room created successfully -2026-08-17 22:57:47 info: Get getRouterRtpCapabilities started -2026-08-17 22:57:47 info: Fetching of router started -2026-08-17 22:57:47 info: Fetching of router executed successfully -2026-08-17 22:57:47 info: Rtp capabilities fetched successfully -2026-08-17 22:57:47 info: Get room started -2026-08-17 22:57:47 info: Get room executed successfully -2026-08-17 22:57:47 info: Transport created : 56be063b-93f9-4ecf-92d6-5aefc1628f4c -2026-08-17 22:57:47 info: Get room started -2026-08-17 22:57:47 info: Get room executed successfully -2026-08-17 22:57:47 info: Connect broadcaster transport listener started -2026-08-17 22:57:47 info: Get room started -2026-08-17 22:57:47 info: Get room executed successfully -2026-08-17 22:57:47 info: Connect broadcaster transport executed successfully -2026-08-17 22:57:47 info: Transport ICE state changed -2026-08-17 22:57:47 info: Transport DTLS state changed -2026-08-17 22:57:47 info: Producer listener started -2026-08-17 22:57:47 info: Get room started -2026-08-17 22:57:47 info: Get room executed successfully -2026-08-17 22:57:47 info: Producer listener executed successfully: -2026-08-17 22:57:47 info: Transport DTLS state changed -2026-08-17 22:57:47 info: Producer listener started -2026-08-17 22:57:47 info: Get room started -2026-08-17 22:57:47 info: Get room executed successfully -2026-08-17 22:57:47 info: Producer listener executed successfully: -2026-08-17 22:57:49 info: [node-1] Client connected: V7BjsZYxZtmK5iWSAAAD -2026-08-17 22:57:49 error: Room not found -2026-08-17 22:58:02 info: Redis subscribers initialized -2026-08-17 22:58:04 info: MongoDB connected -2026-08-17 22:58:04 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 22:58:04 info: Creating worker started -2026-08-17 22:58:04 info: Creating worker started -2026-08-17 22:58:04 info: Creating worker started -2026-08-17 22:58:04 info: Worker created successfully -2026-08-17 22:58:04 info: Worker created successfully -2026-08-17 22:58:04 info: Worker created successfully -2026-08-17 22:58:04 info: Worker pool initialized -2026-08-17 22:58:10 info: SignIn started -2026-08-17 22:58:10 info: SignIn completed -2026-08-17 22:58:10 info: [node-1] Client connected: 7oE8Y_Rg_4Ut8x1RAAAB -2026-08-17 22:58:13 info: SignIn started -2026-08-17 22:58:13 info: SignIn completed -2026-08-17 22:58:13 info: [node-1] Client connected: Z5BR7np4UOJYsUkEAAAD -2026-08-17 22:58:16 info: Create room started -2026-08-17 22:58:16 info: Woker loads loaded successfully -2026-08-17 22:58:16 info: Woker assigned succesfully -2026-08-17 22:58:16 info: Creation of router started -2026-08-17 22:58:16 info: Router created -2026-08-17 22:58:16 info: Creation of room successfully executed -2026-08-17 22:58:16 info: Get room started -2026-08-17 22:58:16 info: Get room executed successfully -2026-08-17 22:58:16 info: Broadcaster added to the room -2026-08-17 22:58:16 info: Room created successfully -2026-08-17 22:58:16 info: Get getRouterRtpCapabilities started -2026-08-17 22:58:16 info: Fetching of router started -2026-08-17 22:58:16 info: Fetching of router executed successfully -2026-08-17 22:58:16 info: Rtp capabilities fetched successfully -2026-08-17 22:58:16 info: Get room started -2026-08-17 22:58:16 info: Get room executed successfully -2026-08-17 22:58:16 info: Transport created : 82cd4df2-9b63-4773-bbdb-48d5f13c6554 -2026-08-17 22:58:16 info: Get room started -2026-08-17 22:58:16 info: Get room executed successfully -2026-08-17 22:58:17 info: Connect broadcaster transport listener started -2026-08-17 22:58:17 info: Get room started -2026-08-17 22:58:17 info: Get room executed successfully -2026-08-17 22:58:17 info: Connect broadcaster transport executed successfully -2026-08-17 22:58:17 info: Transport ICE state changed -2026-08-17 22:58:17 info: Transport DTLS state changed -2026-08-17 22:58:17 info: Producer listener started -2026-08-17 22:58:17 info: Get room started -2026-08-17 22:58:17 info: Get room executed successfully -2026-08-17 22:58:17 info: Producer listener executed successfully: -2026-08-17 22:58:17 info: Transport DTLS state changed -2026-08-17 22:58:17 info: Producer listener started -2026-08-17 22:58:17 info: Get room started -2026-08-17 22:58:17 info: Get room executed successfully -2026-08-17 22:58:17 info: Producer listener executed successfully: -2026-08-17 22:58:22 info: Join as viewer listner started -2026-08-17 22:58:22 info: Rate limiting -2026-08-17 22:58:22 info: Rate limiting -2026-08-17 22:58:22 info: Get room started -2026-08-17 22:58:22 info: Get room executed successfully -2026-08-17 22:58:22 info: Fetching of router started -2026-08-17 22:58:22 info: Fetching of router executed successfully -2026-08-17 22:58:22 info: Get room started -2026-08-17 22:58:22 info: Get room executed successfully -2026-08-17 22:58:22 info: Viewer joined the room -2026-08-17 22:58:22 info: Join viewer listner successfully executed -2026-08-17 22:58:22 info: Create viewer transport listner started -2026-08-17 22:58:22 info: Get room started -2026-08-17 22:58:22 info: Get room executed successfully -2026-08-17 22:58:22 info: Get room started -2026-08-17 22:58:22 info: Get room executed successfully -2026-08-17 22:58:22 info: Transport created : fab4ba90-63ac-46c0-9a46-799717211503 -2026-08-17 22:58:22 info: Viewer transport successfully created -2026-08-17 22:58:22 info: Create viewer transport listner successfully executed -2026-08-17 22:58:22 info: Consume lister started -2026-08-17 22:58:22 info: Get room started -2026-08-17 22:58:22 info: Get room executed successfully -2026-08-17 22:58:22 info: Get room started -2026-08-17 22:58:22 info: Get room executed successfully -2026-08-17 22:58:22 info: Get room started -2026-08-17 22:58:22 info: Get room executed successfully -2026-08-17 22:58:22 info: Viewer media consume successfully executed -2026-08-17 22:58:22 info: Consume lister executed successfully -2026-08-17 22:58:22 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 22:58:22 info: Connect consumer listner started -2026-08-17 22:58:22 info: Get room started -2026-08-17 22:58:22 info: Get room executed successfully -2026-08-17 22:58:22 info: Consumer transport connected successfully -2026-08-17 22:58:22 info: Connect consumer listner executed successfully -2026-08-17 22:58:22 info: Transport ICE state changed -2026-08-17 22:58:22 info: Transport DTLS state changed -2026-08-17 22:58:22 info: Transport DTLS state changed -2026-08-17 22:58:22 info: Get room started -2026-08-17 22:58:22 info: Get room executed successfully -2026-08-17 22:58:22 info: Viewer consumer resumed -2026-08-17 22:58:22 info: Resume consumer listener executed successfully -2026-08-17 22:58:22 info: Get room started -2026-08-17 22:58:22 info: Get room executed successfully -2026-08-17 22:58:22 info: Viewer consumer resumed -2026-08-17 22:58:22 info: Resume consumer listener executed successfully -2026-08-17 22:58:24 info: Get room started -2026-08-17 22:58:24 info: Get room executed successfully -2026-08-17 22:58:24 info: Get room started -2026-08-17 22:58:24 info: Get room executed successfully -2026-08-17 22:58:24 info: Get room started -2026-08-17 22:58:24 info: Get room executed successfully -2026-08-17 22:58:24 info: Get room started -2026-08-17 22:58:24 info: Get room executed successfully -2026-08-17 22:58:24 info: Get room started -2026-08-17 22:58:24 info: Get room executed successfully -2026-08-17 22:58:24 info: Get room started -2026-08-17 22:58:24 info: Get room executed successfully -2026-08-17 22:58:27 info: Get room started -2026-08-17 22:58:27 info: Get room executed successfully -2026-08-17 22:58:27 error: Validation error Invalid recording id -2026-08-17 22:58:37 info: User disconnected Z5BR7np4UOJYsUkEAAAD beacuse of transport close -2026-08-17 22:58:37 info: Handle disconnect started -2026-08-17 22:58:37 info: Get room started -2026-08-17 22:58:37 info: Get room executed successfully -2026-08-17 22:58:37 info: Get room started -2026-08-17 22:58:37 info: Get room executed successfully -2026-08-17 22:58:37 info: Remove viewer started -2026-08-17 22:58:37 info: Handle disconnect succesfully -2026-08-17 22:58:37 warn: No active recording for room Z5BR7np4UOJYsUkEAAAD -2026-08-17 22:58:37 info: Viewer removed from room -2026-08-17 22:58:37 info: [node-1] Client connected: DPRpVgYe5USCOWIIAAAF -2026-08-17 22:58:40 info: Join as viewer listner started -2026-08-17 22:58:40 info: Rate limiting -2026-08-17 22:58:40 info: Rate limiting -2026-08-17 22:58:40 info: Get room started -2026-08-17 22:58:40 info: Get room executed successfully -2026-08-17 22:58:40 info: Fetching of router started -2026-08-17 22:58:40 info: Fetching of router executed successfully -2026-08-17 22:58:40 info: Get room started -2026-08-17 22:58:40 info: Get room executed successfully -2026-08-17 22:58:40 info: Viewer joined the room -2026-08-17 22:58:40 info: Join viewer listner successfully executed -2026-08-17 22:58:40 info: Create viewer transport listner started -2026-08-17 22:58:40 info: Get room started -2026-08-17 22:58:40 info: Get room executed successfully -2026-08-17 22:58:40 info: Get room started -2026-08-17 22:58:40 info: Get room executed successfully -2026-08-17 22:58:40 info: Transport created : 520573e3-9e38-4936-9ef6-f90783988db0 -2026-08-17 22:58:40 info: Viewer transport successfully created -2026-08-17 22:58:40 info: Create viewer transport listner successfully executed -2026-08-17 22:58:40 info: Consume lister started -2026-08-17 22:58:40 info: Get room started -2026-08-17 22:58:40 info: Get room executed successfully -2026-08-17 22:58:40 info: Get room started -2026-08-17 22:58:40 info: Get room executed successfully -2026-08-17 22:58:40 info: Get room started -2026-08-17 22:58:40 info: Get room executed successfully -2026-08-17 22:58:40 info: Viewer media consume successfully executed -2026-08-17 22:58:40 info: Consume lister executed successfully -2026-08-17 22:58:40 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 22:58:40 info: Connect consumer listner started -2026-08-17 22:58:40 info: Get room started -2026-08-17 22:58:40 info: Get room executed successfully -2026-08-17 22:58:40 info: Consumer transport connected successfully -2026-08-17 22:58:40 info: Connect consumer listner executed successfully -2026-08-17 22:58:40 info: Transport ICE state changed -2026-08-17 22:58:40 info: Transport DTLS state changed -2026-08-17 22:58:40 info: Transport DTLS state changed -2026-08-17 22:58:40 info: Get room started -2026-08-17 22:58:40 info: Get room executed successfully -2026-08-17 22:58:40 info: Viewer consumer resumed -2026-08-17 22:58:40 info: Resume consumer listener executed successfully -2026-08-17 22:58:40 info: Get room started -2026-08-17 22:58:40 info: Get room executed successfully -2026-08-17 22:58:40 info: Viewer consumer resumed -2026-08-17 22:58:40 info: Resume consumer listener executed successfully -2026-08-17 22:58:44 info: Get room started -2026-08-17 22:58:44 info: Get room executed successfully -2026-08-17 22:58:44 info: Get room started -2026-08-17 22:58:44 info: Get room executed successfully -2026-08-17 22:58:44 info: Get room started -2026-08-17 22:58:44 info: Get room executed successfully -2026-08-17 22:58:44 info: Get room started -2026-08-17 22:58:44 info: Get room executed successfully -2026-08-17 22:58:44 info: Get room started -2026-08-17 22:58:44 info: Get room executed successfully -2026-08-17 22:58:44 info: Get room started -2026-08-17 22:58:44 info: Get room executed successfully -2026-08-17 22:58:47 info: Get room started -2026-08-17 22:58:47 info: Get room executed successfully -2026-08-17 22:58:47 error: Validation error Invalid recording id -2026-08-17 22:59:00 info: Get room started -2026-08-17 22:59:00 info: Get room executed successfully -2026-08-17 22:59:20 info: Get room started -2026-08-17 22:59:20 info: Get room executed successfully -2026-08-17 22:59:31 info: Redis subscribers initialized -2026-08-17 22:59:33 info: MongoDB connected -2026-08-17 22:59:33 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 22:59:33 info: Creating worker started -2026-08-17 22:59:33 info: Creating worker started -2026-08-17 22:59:33 info: Creating worker started -2026-08-17 22:59:33 info: Worker created successfully -2026-08-17 22:59:33 info: Worker created successfully -2026-08-17 22:59:34 info: Worker created successfully -2026-08-17 22:59:34 info: Worker pool initialized -2026-08-17 22:59:40 info: Redis subscribers initialized -2026-08-17 22:59:42 info: MongoDB connected -2026-08-17 22:59:42 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 22:59:42 info: Creating worker started -2026-08-17 22:59:42 info: Creating worker started -2026-08-17 22:59:42 info: Creating worker started -2026-08-17 22:59:42 info: Worker created successfully -2026-08-17 22:59:42 info: Worker created successfully -2026-08-17 22:59:42 info: Worker created successfully -2026-08-17 22:59:42 info: Worker pool initialized -2026-08-17 22:59:48 info: Redis subscribers initialized -2026-08-17 22:59:50 info: MongoDB connected -2026-08-17 22:59:50 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 22:59:50 info: Creating worker started -2026-08-17 22:59:50 info: Creating worker started -2026-08-17 22:59:50 info: Creating worker started -2026-08-17 22:59:50 info: Worker created successfully -2026-08-17 22:59:50 info: Worker created successfully -2026-08-17 22:59:50 info: Worker created successfully -2026-08-17 22:59:50 info: Worker pool initialized -2026-08-17 22:59:56 info: [node-1] Client connected: 7Yp7TJg-KBLH0oNfAAAB -2026-08-17 22:59:56 info: User disconnected 7Yp7TJg-KBLH0oNfAAAB beacuse of transport close -2026-08-17 22:59:56 info: Handle disconnect started -2026-08-17 22:59:56 error: RoomId not found -2026-08-17 22:59:56 warn: No active recording for room 7Yp7TJg-KBLH0oNfAAAB -2026-08-17 22:59:57 warn: IDK -2026-08-17 22:59:57 info: [node-1] Client connected: 8YWJoWi9F4AIocXgAAAD -2026-08-17 22:59:57 info: [node-1] Client connected: yCFqlLf3XHW6U22BAAAF -2026-08-17 22:59:57 error: Room not found -2026-08-17 23:00:07 info: Redis subscribers initialized -2026-08-17 23:00:09 info: MongoDB connected -2026-08-17 23:00:09 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 23:00:09 info: Creating worker started -2026-08-17 23:00:09 info: Creating worker started -2026-08-17 23:00:09 info: Creating worker started -2026-08-17 23:00:09 info: Worker created successfully -2026-08-17 23:00:09 info: Worker created successfully -2026-08-17 23:00:09 info: Worker created successfully -2026-08-17 23:00:09 info: Worker pool initialized -2026-08-17 23:00:12 info: [node-1] Client connected: T6mQDzR_yannnM92AAAB -2026-08-17 23:00:14 info: Create room started -2026-08-17 23:00:14 info: Woker loads loaded successfully -2026-08-17 23:00:14 info: Woker assigned succesfully -2026-08-17 23:00:14 info: Creation of router started -2026-08-17 23:00:14 info: Router created -2026-08-17 23:00:14 info: Creation of room successfully executed -2026-08-17 23:00:14 info: Get room started -2026-08-17 23:00:14 info: Get room executed successfully -2026-08-17 23:00:14 info: Broadcaster added to the room -2026-08-17 23:00:14 info: Room created successfully -2026-08-17 23:00:14 info: Get getRouterRtpCapabilities started -2026-08-17 23:00:14 info: Fetching of router started -2026-08-17 23:00:14 info: Fetching of router executed successfully -2026-08-17 23:00:14 info: Rtp capabilities fetched successfully -2026-08-17 23:00:14 info: Get room started -2026-08-17 23:00:14 info: Get room executed successfully -2026-08-17 23:00:14 info: Transport created : 9c76294e-c421-47cd-afa7-ff918b8eadf5 -2026-08-17 23:00:14 info: Get room started -2026-08-17 23:00:14 info: Get room executed successfully -2026-08-17 23:00:14 info: Connect broadcaster transport listener started -2026-08-17 23:00:14 info: Get room started -2026-08-17 23:00:14 info: Get room executed successfully -2026-08-17 23:00:14 info: Connect broadcaster transport executed successfully -2026-08-17 23:00:14 info: Transport ICE state changed -2026-08-17 23:00:14 info: Transport DTLS state changed -2026-08-17 23:00:14 info: Transport DTLS state changed -2026-08-17 23:00:14 info: Producer listener started -2026-08-17 23:00:14 info: Get room started -2026-08-17 23:00:14 info: Get room executed successfully -2026-08-17 23:00:14 info: Producer listener executed successfully: -2026-08-17 23:00:14 info: Producer listener started -2026-08-17 23:00:14 info: Get room started -2026-08-17 23:00:14 info: Get room executed successfully -2026-08-17 23:00:14 info: Producer listener executed successfully: -2026-08-17 23:00:16 info: [node-1] Client connected: 4rBHWrLRq833EakdAAAD -2026-08-17 23:00:16 error: Room not found -2026-08-17 23:00:35 info: Redis subscribers initialized -2026-08-17 23:00:37 info: MongoDB connected -2026-08-17 23:00:37 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 23:00:37 info: Creating worker started -2026-08-17 23:00:37 info: Creating worker started -2026-08-17 23:00:37 info: Creating worker started -2026-08-17 23:00:37 info: Worker created successfully -2026-08-17 23:00:37 info: Worker created successfully -2026-08-17 23:00:37 info: Worker created successfully -2026-08-17 23:00:37 info: Worker pool initialized -2026-08-17 23:00:41 info: SignIn started -2026-08-17 23:00:41 info: SignIn completed -2026-08-17 23:00:41 info: [node-1] Client connected: xSzJog3SxCH9MbfMAAAB -2026-08-17 23:00:46 info: SignIn started -2026-08-17 23:00:46 info: SignIn completed -2026-08-17 23:00:46 info: [node-1] Client connected: QNvdooDGOgUXh5LAAAAD -2026-08-17 23:00:49 info: Create room started -2026-08-17 23:00:49 info: Woker loads loaded successfully -2026-08-17 23:00:49 info: Woker assigned succesfully -2026-08-17 23:00:49 info: Creation of router started -2026-08-17 23:00:49 info: Router created -2026-08-17 23:00:49 info: Creation of room successfully executed -2026-08-17 23:00:49 info: Get room started -2026-08-17 23:00:49 info: Get room executed successfully -2026-08-17 23:00:49 info: Broadcaster added to the room -2026-08-17 23:00:49 info: Room created successfully -2026-08-17 23:00:49 info: Get getRouterRtpCapabilities started -2026-08-17 23:00:49 info: Fetching of router started -2026-08-17 23:00:49 info: Fetching of router executed successfully -2026-08-17 23:00:49 info: Rtp capabilities fetched successfully -2026-08-17 23:00:49 info: Get room started -2026-08-17 23:00:49 info: Get room executed successfully -2026-08-17 23:00:49 info: Transport created : ae266433-76bd-4175-b254-4ab5d7d1e90d -2026-08-17 23:00:49 info: Get room started -2026-08-17 23:00:49 info: Get room executed successfully -2026-08-17 23:00:49 info: Connect broadcaster transport listener started -2026-08-17 23:00:49 info: Get room started -2026-08-17 23:00:49 info: Get room executed successfully -2026-08-17 23:00:49 info: Connect broadcaster transport executed successfully -2026-08-17 23:00:49 info: Transport ICE state changed -2026-08-17 23:00:49 info: Transport DTLS state changed -2026-08-17 23:00:49 info: Producer listener started -2026-08-17 23:00:49 info: Get room started -2026-08-17 23:00:49 info: Get room executed successfully -2026-08-17 23:00:49 info: Producer listener executed successfully: -2026-08-17 23:00:49 info: Transport DTLS state changed -2026-08-17 23:00:49 info: Producer listener started -2026-08-17 23:00:49 info: Get room started -2026-08-17 23:00:49 info: Get room executed successfully -2026-08-17 23:00:49 info: Producer listener executed successfully: -2026-08-17 23:00:56 info: Join as viewer listner started -2026-08-17 23:00:56 info: Rate limiting -2026-08-17 23:00:56 info: Rate limiting -2026-08-17 23:00:56 info: Get room started -2026-08-17 23:00:56 info: Get room executed successfully -2026-08-17 23:00:56 info: Fetching of router started -2026-08-17 23:00:56 info: Fetching of router executed successfully -2026-08-17 23:00:56 info: Get room started -2026-08-17 23:00:56 info: Get room executed successfully -2026-08-17 23:00:56 info: Viewer joined the room -2026-08-17 23:00:56 info: Join viewer listner successfully executed -2026-08-17 23:00:56 info: Create viewer transport listner started -2026-08-17 23:00:56 info: Get room started -2026-08-17 23:00:56 info: Get room executed successfully -2026-08-17 23:00:56 info: Get room started -2026-08-17 23:00:56 info: Get room executed successfully -2026-08-17 23:00:56 info: Transport created : f5d9e578-607b-4d6e-96f8-7e28f8801c84 -2026-08-17 23:00:56 info: Viewer transport successfully created -2026-08-17 23:00:56 info: Create viewer transport listner successfully executed -2026-08-17 23:00:56 info: Consume lister started -2026-08-17 23:00:56 info: Get room started -2026-08-17 23:00:56 info: Get room executed successfully -2026-08-17 23:00:56 info: Get room started -2026-08-17 23:00:56 info: Get room executed successfully -2026-08-17 23:00:56 info: Get room started -2026-08-17 23:00:56 info: Get room executed successfully -2026-08-17 23:00:56 info: Viewer media consume successfully executed -2026-08-17 23:00:56 info: Consume lister executed successfully -2026-08-17 23:00:56 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 23:00:56 info: Connect consumer listner started -2026-08-17 23:00:56 info: Get room started -2026-08-17 23:00:56 info: Get room executed successfully -2026-08-17 23:00:56 info: Consumer transport connected successfully -2026-08-17 23:00:56 info: Connect consumer listner executed successfully -2026-08-17 23:00:56 info: Transport ICE state changed -2026-08-17 23:00:56 info: Transport DTLS state changed -2026-08-17 23:00:56 info: Transport DTLS state changed -2026-08-17 23:00:56 info: Get room started -2026-08-17 23:00:56 info: Get room executed successfully -2026-08-17 23:00:56 info: Viewer consumer resumed -2026-08-17 23:00:56 info: Resume consumer listener executed successfully -2026-08-17 23:00:56 info: Get room started -2026-08-17 23:00:56 info: Get room executed successfully -2026-08-17 23:00:56 info: Viewer consumer resumed -2026-08-17 23:00:56 info: Resume consumer listener executed successfully -2026-08-17 23:01:00 info: Get room started -2026-08-17 23:01:00 info: Get room executed successfully -2026-08-17 23:01:00 info: Get room started -2026-08-17 23:01:00 info: Get room executed successfully -2026-08-17 23:01:00 info: Get room started -2026-08-17 23:01:00 info: Get room executed successfully -2026-08-17 23:01:00 info: Get room started -2026-08-17 23:01:00 info: Get room executed successfully -2026-08-17 23:01:00 info: Get room started -2026-08-17 23:01:00 info: Get room executed successfully -2026-08-17 23:01:00 info: Get room started -2026-08-17 23:01:00 info: Get room executed successfully -2026-08-17 23:01:05 info: Get room started -2026-08-17 23:01:05 info: Get room executed successfully -2026-08-17 23:01:06 error: Validation error Invalid recording id -2026-08-17 23:01:17 info: Get room started -2026-08-17 23:01:17 info: Get room executed successfully -2026-08-17 23:01:38 info: Get room started -2026-08-17 23:01:38 info: Get room executed successfully -2026-08-17 23:01:58 info: Get room started -2026-08-17 23:01:58 info: Get room executed successfully -2026-08-17 23:02:18 info: Get room started -2026-08-17 23:02:18 info: Get room executed successfully -2026-08-17 23:02:38 info: Get room started -2026-08-17 23:02:38 info: Get room executed successfully -2026-08-17 23:02:58 info: Get room started -2026-08-17 23:02:58 info: Get room executed successfully -2026-08-17 23:03:18 info: Get room started -2026-08-17 23:03:18 info: Get room executed successfully -2026-08-17 23:03:38 info: Get room started -2026-08-17 23:03:38 info: Get room executed successfully -2026-08-17 23:03:58 info: Get room started -2026-08-17 23:03:58 info: Get room executed successfully -2026-08-17 23:04:19 info: Redis subscribers initialized -2026-08-17 23:04:21 info: MongoDB connected -2026-08-17 23:04:21 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 23:04:21 info: Creating worker started -2026-08-17 23:04:21 info: Creating worker started -2026-08-17 23:04:21 info: Creating worker started -2026-08-17 23:04:21 info: Worker created successfully -2026-08-17 23:04:21 info: Worker created successfully -2026-08-17 23:04:21 info: Worker created successfully -2026-08-17 23:04:21 info: Worker pool initialized -2026-08-17 23:04:26 info: [node-1] Client connected: xtFxv_ANWbUOnVqoAAAB -2026-08-17 23:04:26 info: [node-1] Client connected: wjXr_oeoHhn7dagZAAAD -2026-08-17 23:04:26 error: Room not found -2026-08-17 23:04:35 info: Redis subscribers initialized -2026-08-17 23:04:37 info: MongoDB connected -2026-08-17 23:04:37 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 23:04:37 info: Creating worker started -2026-08-17 23:04:37 info: Creating worker started -2026-08-17 23:04:37 info: Creating worker started -2026-08-17 23:04:37 info: Worker created successfully -2026-08-17 23:04:37 info: Worker created successfully -2026-08-17 23:04:37 info: Worker created successfully -2026-08-17 23:04:37 info: Worker pool initialized -2026-08-17 23:04:41 info: [node-1] Client connected: Jonyvm6v9pABhDrrAAAB -2026-08-17 23:04:41 error: Room not found -2026-08-17 23:04:57 info: Redis subscribers initialized -2026-08-17 23:05:00 info: MongoDB connected -2026-08-17 23:05:00 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 23:05:00 info: Creating worker started -2026-08-17 23:05:00 info: Creating worker started -2026-08-17 23:05:00 info: Creating worker started -2026-08-17 23:05:00 info: Worker created successfully -2026-08-17 23:05:00 info: Worker created successfully -2026-08-17 23:05:00 info: Worker created successfully -2026-08-17 23:05:00 info: Worker pool initialized -2026-08-17 23:05:05 info: SignIn started -2026-08-17 23:05:05 info: SignIn completed -2026-08-17 23:05:05 info: [node-1] Client connected: 7_53n-ckWsQr7O2bAAAB -2026-08-17 23:05:08 info: SignIn started -2026-08-17 23:05:09 info: SignIn completed -2026-08-17 23:05:09 info: [node-1] Client connected: 5CHKUhlBaSy1cMBbAAAD -2026-08-17 23:05:12 info: Create room started -2026-08-17 23:05:12 info: Woker loads loaded successfully -2026-08-17 23:05:12 info: Woker assigned succesfully -2026-08-17 23:05:12 info: Creation of router started -2026-08-17 23:05:12 info: Router created -2026-08-17 23:05:12 info: Creation of room successfully executed -2026-08-17 23:05:12 info: Get room started -2026-08-17 23:05:12 info: Get room executed successfully -2026-08-17 23:05:12 info: Broadcaster added to the room -2026-08-17 23:05:12 info: Room created successfully -2026-08-17 23:05:12 info: Get getRouterRtpCapabilities started -2026-08-17 23:05:12 info: Fetching of router started -2026-08-17 23:05:12 info: Fetching of router executed successfully -2026-08-17 23:05:12 info: Rtp capabilities fetched successfully -2026-08-17 23:05:12 info: Get room started -2026-08-17 23:05:12 info: Get room executed successfully -2026-08-17 23:05:12 info: Transport created : 4e7a9686-f6b5-4be0-8e76-f1834ff76423 -2026-08-17 23:05:12 info: Get room started -2026-08-17 23:05:12 info: Get room executed successfully -2026-08-17 23:05:12 info: Connect broadcaster transport listener started -2026-08-17 23:05:12 info: Get room started -2026-08-17 23:05:12 info: Get room executed successfully -2026-08-17 23:05:12 info: Connect broadcaster transport executed successfully -2026-08-17 23:05:12 info: Transport ICE state changed -2026-08-17 23:05:12 info: Transport DTLS state changed -2026-08-17 23:05:12 info: Producer listener started -2026-08-17 23:05:12 info: Get room started -2026-08-17 23:05:12 info: Get room executed successfully -2026-08-17 23:05:12 info: Transport DTLS state changed -2026-08-17 23:05:12 info: Producer listener executed successfully: -2026-08-17 23:05:12 info: Producer listener started -2026-08-17 23:05:12 info: Get room started -2026-08-17 23:05:12 info: Get room executed successfully -2026-08-17 23:05:12 info: Producer listener executed successfully: -2026-08-17 23:05:19 info: Join as viewer listner started -2026-08-17 23:05:19 info: Rate limiting -2026-08-17 23:05:19 info: Rate limiting -2026-08-17 23:05:19 info: Get room started -2026-08-17 23:05:19 info: Get room executed successfully -2026-08-17 23:05:19 info: Fetching of router started -2026-08-17 23:05:19 info: Fetching of router executed successfully -2026-08-17 23:05:19 info: Get room started -2026-08-17 23:05:19 info: Get room executed successfully -2026-08-17 23:05:19 info: Viewer joined the room -2026-08-17 23:05:19 info: Join viewer listner successfully executed -2026-08-17 23:05:19 info: Create viewer transport listner started -2026-08-17 23:05:19 info: Get room started -2026-08-17 23:05:19 info: Get room executed successfully -2026-08-17 23:05:19 info: Get room started -2026-08-17 23:05:19 info: Get room executed successfully -2026-08-17 23:05:19 info: Transport created : 22b0dd43-791c-49f4-8056-463b33ad65a7 -2026-08-17 23:05:19 info: Viewer transport successfully created -2026-08-17 23:05:19 info: Create viewer transport listner successfully executed -2026-08-17 23:05:19 info: Consume lister started -2026-08-17 23:05:19 info: Get room started -2026-08-17 23:05:19 info: Get room executed successfully -2026-08-17 23:05:19 info: Get room started -2026-08-17 23:05:19 info: Get room executed successfully -2026-08-17 23:05:19 info: Get room started -2026-08-17 23:05:19 info: Get room executed successfully -2026-08-17 23:05:19 info: Viewer media consume successfully executed -2026-08-17 23:05:19 info: Consume lister executed successfully -2026-08-17 23:05:19 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 23:05:19 info: Connect consumer listner started -2026-08-17 23:05:19 info: Get room started -2026-08-17 23:05:19 info: Get room executed successfully -2026-08-17 23:05:19 info: Consumer transport connected successfully -2026-08-17 23:05:19 info: Connect consumer listner executed successfully -2026-08-17 23:05:19 info: Transport ICE state changed -2026-08-17 23:05:19 info: Transport DTLS state changed -2026-08-17 23:05:19 info: Transport DTLS state changed -2026-08-17 23:05:19 info: Get room started -2026-08-17 23:05:19 info: Get room executed successfully -2026-08-17 23:05:19 info: Viewer consumer resumed -2026-08-17 23:05:19 info: Resume consumer listener executed successfully -2026-08-17 23:05:19 info: Get room started -2026-08-17 23:05:19 info: Get room executed successfully -2026-08-17 23:05:19 info: Viewer consumer resumed -2026-08-17 23:05:19 info: Resume consumer listener executed successfully -2026-08-17 23:05:21 info: Get room started -2026-08-17 23:05:21 info: Get room executed successfully -2026-08-17 23:05:21 info: Get room started -2026-08-17 23:05:21 info: Get room executed successfully -2026-08-17 23:05:21 info: Get room started -2026-08-17 23:05:21 info: Get room executed successfully -2026-08-17 23:05:21 info: Get room started -2026-08-17 23:05:21 info: Get room executed successfully -2026-08-17 23:05:21 info: Get room started -2026-08-17 23:05:21 info: Get room executed successfully -2026-08-17 23:05:21 info: Get room started -2026-08-17 23:05:21 info: Get room executed successfully -2026-08-17 23:05:24 info: Get room started -2026-08-17 23:05:24 info: Get room executed successfully -2026-08-17 23:05:24 error: Recording not found error Invalid recording id -2026-08-17 23:05:39 info: Get room started -2026-08-17 23:05:39 info: Get room executed successfully -2026-08-17 23:05:59 info: Get room started -2026-08-17 23:05:59 info: Get room executed successfully -2026-08-17 23:06:19 info: Get room started -2026-08-17 23:06:19 info: Get room executed successfully -2026-08-17 23:06:32 info: Redis subscribers initialized -2026-08-17 23:06:34 info: MongoDB connected -2026-08-17 23:06:34 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 23:06:34 info: Creating worker started -2026-08-17 23:06:34 info: Creating worker started -2026-08-17 23:06:34 info: Creating worker started -2026-08-17 23:06:34 info: Worker created successfully -2026-08-17 23:06:34 info: Worker created successfully -2026-08-17 23:06:34 info: Worker created successfully -2026-08-17 23:06:34 info: Worker pool initialized -2026-08-17 23:06:41 info: [node-1] Client connected: b30XOIeOpHYuCDVbAAAB -2026-08-17 23:06:41 error: Room not found -2026-08-17 23:06:52 info: Redis subscribers initialized -2026-08-17 23:06:54 info: MongoDB connected -2026-08-17 23:06:54 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 23:06:54 info: Creating worker started -2026-08-17 23:06:54 info: Creating worker started -2026-08-17 23:06:54 info: Creating worker started -2026-08-17 23:06:54 info: Worker created successfully -2026-08-17 23:06:54 info: Worker created successfully -2026-08-17 23:06:54 info: Worker created successfully -2026-08-17 23:06:54 info: Worker pool initialized -2026-08-17 23:06:59 info: [node-1] Client connected: niBX413xrAfW74d_AAAB -2026-08-17 23:07:01 info: SignIn started -2026-08-17 23:07:01 info: SignIn completed -2026-08-17 23:07:01 info: [node-1] Client connected: wIHbyrlD7XrMC29MAAAD -2026-08-17 23:07:03 info: User disconnected niBX413xrAfW74d_AAAB beacuse of transport close -2026-08-17 23:07:03 info: Handle disconnect started -2026-08-17 23:07:03 error: RoomId not found -2026-08-17 23:07:03 warn: No active recording for room niBX413xrAfW74d_AAAB -2026-08-17 23:07:03 warn: IDK -2026-08-17 23:07:04 info: [node-1] Client connected: yWNTTrysz7sm0zdmAAAF -2026-08-17 23:07:11 info: Create room started -2026-08-17 23:07:11 info: Woker loads loaded successfully -2026-08-17 23:07:11 info: Woker assigned succesfully -2026-08-17 23:07:11 info: Creation of router started -2026-08-17 23:07:11 info: Router created -2026-08-17 23:07:11 info: Creation of room successfully executed -2026-08-17 23:07:11 info: Get room started -2026-08-17 23:07:11 info: Get room executed successfully -2026-08-17 23:07:11 info: Broadcaster added to the room -2026-08-17 23:07:11 info: Room created successfully -2026-08-17 23:07:11 info: Get getRouterRtpCapabilities started -2026-08-17 23:07:11 info: Fetching of router started -2026-08-17 23:07:11 info: Fetching of router executed successfully -2026-08-17 23:07:11 info: Rtp capabilities fetched successfully -2026-08-17 23:07:11 info: Get room started -2026-08-17 23:07:11 info: Get room executed successfully -2026-08-17 23:07:11 info: Transport created : 341c9325-947f-4f1c-a625-393bf999d207 -2026-08-17 23:07:11 info: Get room started -2026-08-17 23:07:11 info: Get room executed successfully -2026-08-17 23:07:12 info: Connect broadcaster transport listener started -2026-08-17 23:07:12 info: Get room started -2026-08-17 23:07:12 info: Get room executed successfully -2026-08-17 23:07:12 info: Connect broadcaster transport executed successfully -2026-08-17 23:07:12 info: Transport ICE state changed -2026-08-17 23:07:12 info: Transport DTLS state changed -2026-08-17 23:07:12 info: Producer listener started -2026-08-17 23:07:12 info: Get room started -2026-08-17 23:07:12 info: Get room executed successfully -2026-08-17 23:07:12 info: Transport DTLS state changed -2026-08-17 23:07:12 info: Producer listener executed successfully: -2026-08-17 23:07:12 info: Producer listener started -2026-08-17 23:07:12 info: Get room started -2026-08-17 23:07:12 info: Get room executed successfully -2026-08-17 23:07:12 info: Producer listener executed successfully: -2026-08-17 23:07:20 info: Join as viewer listner started -2026-08-17 23:07:20 info: Rate limiting -2026-08-17 23:07:20 info: Rate limiting -2026-08-17 23:07:20 info: Get room started -2026-08-17 23:07:20 info: Get room executed successfully -2026-08-17 23:07:20 info: Fetching of router started -2026-08-17 23:07:20 info: Fetching of router executed successfully -2026-08-17 23:07:20 info: Get room started -2026-08-17 23:07:20 info: Get room executed successfully -2026-08-17 23:07:20 info: Viewer joined the room -2026-08-17 23:07:20 info: Join viewer listner successfully executed -2026-08-17 23:07:20 info: Create viewer transport listner started -2026-08-17 23:07:20 info: Get room started -2026-08-17 23:07:20 info: Get room executed successfully -2026-08-17 23:07:20 info: Get room started -2026-08-17 23:07:20 info: Get room executed successfully -2026-08-17 23:07:20 info: Transport created : 52b239ef-6ee6-4e37-869d-e9f7b050fdf8 -2026-08-17 23:07:20 info: Viewer transport successfully created -2026-08-17 23:07:20 info: Create viewer transport listner successfully executed -2026-08-17 23:07:20 info: Consume lister started -2026-08-17 23:07:20 info: Get room started -2026-08-17 23:07:20 info: Get room executed successfully -2026-08-17 23:07:20 info: Get room started -2026-08-17 23:07:20 info: Get room executed successfully -2026-08-17 23:07:20 info: Get room started -2026-08-17 23:07:20 info: Get room executed successfully -2026-08-17 23:07:20 info: Viewer media consume successfully executed -2026-08-17 23:07:20 info: Consume lister executed successfully -2026-08-17 23:07:20 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a48c735512699d8407ab848" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 23:07:20 info: Connect consumer listner started -2026-08-17 23:07:20 info: Get room started -2026-08-17 23:07:20 info: Get room executed successfully -2026-08-17 23:07:20 info: Consumer transport connected successfully -2026-08-17 23:07:20 info: Connect consumer listner executed successfully -2026-08-17 23:07:20 info: Transport ICE state changed -2026-08-17 23:07:20 info: Transport DTLS state changed -2026-08-17 23:07:20 info: Transport DTLS state changed -2026-08-17 23:07:20 info: Get room started -2026-08-17 23:07:20 info: Get room executed successfully -2026-08-17 23:07:20 info: Viewer consumer resumed -2026-08-17 23:07:20 info: Resume consumer listener executed successfully -2026-08-17 23:07:20 info: Get room started -2026-08-17 23:07:20 info: Get room executed successfully -2026-08-17 23:07:20 info: Viewer consumer resumed -2026-08-17 23:07:20 info: Resume consumer listener executed successfully -2026-08-17 23:07:38 info: Get room started -2026-08-17 23:07:38 info: Get room executed successfully -2026-08-17 23:07:38 info: Get room started -2026-08-17 23:07:38 info: Get room executed successfully -2026-08-17 23:07:38 info: Get room started -2026-08-17 23:07:38 info: Get room executed successfully -2026-08-17 23:07:38 info: Get room started -2026-08-17 23:07:38 info: Get room executed successfully -2026-08-17 23:07:38 info: Get room started -2026-08-17 23:07:38 info: Get room executed successfully -2026-08-17 23:07:38 info: Get room started -2026-08-17 23:07:38 info: Get room executed successfully -2026-08-17 23:07:41 info: Get room started -2026-08-17 23:07:41 info: Get room executed successfully -2026-08-17 23:07:48 info: Get room started -2026-08-17 23:07:48 info: Get room executed successfully -2026-08-17 23:07:48 error: Recording not found error Invalid recording id -2026-08-17 23:07:58 info: User disconnected wIHbyrlD7XrMC29MAAAD beacuse of transport close -2026-08-17 23:07:58 info: Handle disconnect started -2026-08-17 23:07:58 info: Get room started -2026-08-17 23:07:58 info: Get room executed successfully -2026-08-17 23:07:58 info: Get room started -2026-08-17 23:07:58 info: Get room executed successfully -2026-08-17 23:07:58 info: Get room started -2026-08-17 23:07:58 info: Get room executed successfully -2026-08-17 23:07:58 info: Get room started -2026-08-17 23:07:58 info: Get room executed successfully -2026-08-17 23:07:58 info: Get room started -2026-08-17 23:07:58 info: Get room executed successfully -2026-08-17 23:07:58 warn: No active recording for room wIHbyrlD7XrMC29MAAAD -2026-08-17 23:07:58 info: Remove broadcaster success -2026-08-17 23:07:58 info: Handle disconnect succesfully -2026-08-17 23:07:58 info: room:e4c5963f-3f03-4abb-aa6b-a8a27c8072ba room deleted successfully -2026-08-17 23:07:58 info: [node-1] Client connected: c3djpJEFywq47on5AAAH -2026-08-17 23:07:58 info: User disconnected yWNTTrysz7sm0zdmAAAF beacuse of transport close -2026-08-17 23:07:58 info: Handle disconnect started -2026-08-17 23:07:58 warn: No active recording for room yWNTTrysz7sm0zdmAAAF -2026-08-17 23:07:59 info: [node-1] Client connected: O8s-M6ye--SyKLxVAAAJ -2026-08-17 23:09:05 info: Redis subscribers initialized -2026-08-17 23:09:06 info: MongoDB connected -2026-08-17 23:09:06 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 23:09:06 info: Creating worker started -2026-08-17 23:09:06 info: Creating worker started -2026-08-17 23:09:06 info: Creating worker started -2026-08-17 23:09:06 info: Worker created successfully -2026-08-17 23:09:06 info: Worker created successfully -2026-08-17 23:09:06 info: Worker created successfully -2026-08-17 23:09:06 info: Worker pool initialized -2026-08-17 23:09:11 info: [node-1] Client connected: 2rq53vspJ8Hgv5nKAAAB -2026-08-17 23:09:11 info: [node-1] Client connected: i7Bted1MUiRQ3aL2AAAD -2026-08-17 23:09:17 info: User disconnected i7Bted1MUiRQ3aL2AAAD beacuse of transport close -2026-08-17 23:09:17 info: Handle disconnect started -2026-08-17 23:09:17 error: RoomId not found -2026-08-17 23:09:17 warn: No active recording for room i7Bted1MUiRQ3aL2AAAD -2026-08-17 23:09:17 warn: IDK -2026-08-17 23:09:18 info: [node-1] Client connected: 9wx_qCHHWujFhr64AAAF -2026-08-17 23:09:18 info: User disconnected 2rq53vspJ8Hgv5nKAAAB beacuse of transport close -2026-08-17 23:09:18 info: Handle disconnect started -2026-08-17 23:09:18 error: RoomId not found -2026-08-17 23:09:18 warn: No active recording for room 2rq53vspJ8Hgv5nKAAAB -2026-08-17 23:09:18 warn: IDK -2026-08-17 23:09:19 info: [node-1] Client connected: qLZcY3-B-aSILe72AAAH -2026-08-17 23:09:22 info: Create room started -2026-08-17 23:09:22 info: Woker loads loaded successfully -2026-08-17 23:09:22 info: Woker assigned succesfully -2026-08-17 23:09:22 info: Creation of router started -2026-08-17 23:09:22 info: Router created -2026-08-17 23:09:22 info: Creation of room successfully executed -2026-08-17 23:09:22 info: Get room started -2026-08-17 23:09:22 info: Get room executed successfully -2026-08-17 23:09:22 info: Broadcaster added to the room -2026-08-17 23:09:22 info: Room created successfully -2026-08-17 23:09:22 info: Get getRouterRtpCapabilities started -2026-08-17 23:09:22 info: Fetching of router started -2026-08-17 23:09:22 info: Fetching of router executed successfully -2026-08-17 23:09:22 info: Rtp capabilities fetched successfully -2026-08-17 23:09:22 info: Get room started -2026-08-17 23:09:22 info: Get room executed successfully -2026-08-17 23:09:22 info: Transport created : 9415300e-c073-4b29-ab0c-fe31fdf88d61 -2026-08-17 23:09:22 info: Get room started -2026-08-17 23:09:22 info: Get room executed successfully -2026-08-17 23:09:22 info: Connect broadcaster transport listener started -2026-08-17 23:09:22 info: Get room started -2026-08-17 23:09:22 info: Get room executed successfully -2026-08-17 23:09:22 info: Connect broadcaster transport executed successfully -2026-08-17 23:09:22 info: Transport ICE state changed -2026-08-17 23:09:22 info: Transport DTLS state changed -2026-08-17 23:09:22 info: Producer listener started -2026-08-17 23:09:22 info: Get room started -2026-08-17 23:09:22 info: Get room executed successfully -2026-08-17 23:09:22 info: Producer listener executed successfully: -2026-08-17 23:09:22 info: Transport DTLS state changed -2026-08-17 23:09:22 info: Producer listener started -2026-08-17 23:09:22 info: Get room started -2026-08-17 23:09:22 info: Get room executed successfully -2026-08-17 23:09:22 info: Producer listener executed successfully: -2026-08-17 23:09:30 info: Join as viewer listner started -2026-08-17 23:09:30 info: Rate limiting -2026-08-17 23:09:30 info: Rate limiting -2026-08-17 23:09:30 info: Get room started -2026-08-17 23:09:30 info: Get room executed successfully -2026-08-17 23:09:30 info: Fetching of router started -2026-08-17 23:09:30 info: Fetching of router executed successfully -2026-08-17 23:09:30 info: Get room started -2026-08-17 23:09:30 info: Get room executed successfully -2026-08-17 23:09:30 info: Viewer joined the room -2026-08-17 23:09:30 info: Join viewer listner successfully executed -2026-08-17 23:09:30 info: Create viewer transport listner started -2026-08-17 23:09:30 info: Get room started -2026-08-17 23:09:30 info: Get room executed successfully -2026-08-17 23:09:30 info: Get room started -2026-08-17 23:09:30 info: Get room executed successfully -2026-08-17 23:09:30 info: Transport created : bc606482-bb68-4e4c-830f-ef5c13d14e50 -2026-08-17 23:09:30 info: Viewer transport successfully created -2026-08-17 23:09:30 info: Create viewer transport listner successfully executed -2026-08-17 23:09:30 info: Consume lister started -2026-08-17 23:09:30 info: Get room started -2026-08-17 23:09:30 info: Get room executed successfully -2026-08-17 23:09:30 info: Get room started -2026-08-17 23:09:30 info: Get room executed successfully -2026-08-17 23:09:30 info: Get room started -2026-08-17 23:09:30 info: Get room executed successfully -2026-08-17 23:09:30 info: Viewer media consume successfully executed -2026-08-17 23:09:30 info: Consume lister executed successfully -2026-08-17 23:09:30 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a48c735512699d8407ab848" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 23:09:30 info: Connect consumer listner started -2026-08-17 23:09:30 info: Get room started -2026-08-17 23:09:30 info: Get room executed successfully -2026-08-17 23:09:30 info: Consumer transport connected successfully -2026-08-17 23:09:30 info: Connect consumer listner executed successfully -2026-08-17 23:09:30 info: Transport ICE state changed -2026-08-17 23:09:30 info: Transport DTLS state changed -2026-08-17 23:09:30 info: Transport DTLS state changed -2026-08-17 23:09:30 info: Get room started -2026-08-17 23:09:30 info: Get room executed successfully -2026-08-17 23:09:30 info: Viewer consumer resumed -2026-08-17 23:09:30 info: Resume consumer listener executed successfully -2026-08-17 23:09:30 info: Get room started -2026-08-17 23:09:30 info: Get room executed successfully -2026-08-17 23:09:30 info: Viewer consumer resumed -2026-08-17 23:09:30 info: Resume consumer listener executed successfully -2026-08-17 23:09:31 info: Get room started -2026-08-17 23:09:31 info: Get room executed successfully -2026-08-17 23:09:31 info: Get room started -2026-08-17 23:09:31 info: Get room executed successfully -2026-08-17 23:09:31 info: Get room started -2026-08-17 23:09:31 info: Get room executed successfully -2026-08-17 23:09:31 info: Get room started -2026-08-17 23:09:31 info: Get room executed successfully -2026-08-17 23:09:31 info: Get room started -2026-08-17 23:09:31 info: Get room executed successfully -2026-08-17 23:09:31 info: Get room started -2026-08-17 23:09:31 info: Get room executed successfully -2026-08-17 23:09:36 info: Get room started -2026-08-17 23:09:36 info: Get room executed successfully -2026-08-17 23:09:37 error: Recording not found error Invalid recording id -2026-08-17 23:09:50 info: Get room started -2026-08-17 23:09:50 info: Get room executed successfully -2026-08-17 23:10:02 info: User disconnected 9wx_qCHHWujFhr64AAAF beacuse of transport close -2026-08-17 23:10:02 info: Handle disconnect started -2026-08-17 23:10:02 info: Get room started -2026-08-17 23:10:02 info: Get room executed successfully -2026-08-17 23:10:02 info: Get room started -2026-08-17 23:10:02 info: Get room executed successfully -2026-08-17 23:10:02 info: Get room started -2026-08-17 23:10:02 info: Get room executed successfully -2026-08-17 23:10:02 info: Get room started -2026-08-17 23:10:02 info: Get room executed successfully -2026-08-17 23:10:02 info: Get room started -2026-08-17 23:10:02 info: Get room executed successfully -2026-08-17 23:10:02 warn: No active recording for room 9wx_qCHHWujFhr64AAAF -2026-08-17 23:10:02 info: Remove broadcaster success -2026-08-17 23:10:02 info: Handle disconnect succesfully -2026-08-17 23:10:02 info: room:d9336ad0-3606-4f31-87ec-5474addc0ff6 room deleted successfully -2026-08-17 23:10:03 info: [node-1] Client connected: cuAd9CzOPfpk9LhmAAAJ -2026-08-17 23:10:03 info: User disconnected qLZcY3-B-aSILe72AAAH beacuse of transport close -2026-08-17 23:10:03 info: Handle disconnect started -2026-08-17 23:10:03 warn: No active recording for room qLZcY3-B-aSILe72AAAH -2026-08-17 23:10:04 info: [node-1] Client connected: 8NoET4Ymfg_2f8gwAAAL -2026-08-17 23:11:28 info: Redis subscribers initialized -2026-08-17 23:11:29 info: MongoDB connected -2026-08-17 23:11:29 info: Database connected successfully to ac-v00shv2-shard-00-00.eplgdfn.mongodb.net -2026-08-17 23:11:29 info: Creating worker started -2026-08-17 23:11:29 info: Creating worker started -2026-08-17 23:11:29 info: Creating worker started -2026-08-17 23:11:29 info: Worker created successfully -2026-08-17 23:11:29 info: Worker created successfully -2026-08-17 23:11:29 info: Worker created successfully -2026-08-17 23:11:29 info: Worker pool initialized -2026-08-17 23:11:33 info: [node-1] Client connected: 1iIt11Y4KH4CVL-FAAAB -2026-08-17 23:11:38 info: [node-1] Client connected: 18XdLg8tGQ-gD1PTAAAD -2026-08-17 23:11:45 info: User disconnected 18XdLg8tGQ-gD1PTAAAD beacuse of transport close -2026-08-17 23:11:45 info: Handle disconnect started -2026-08-17 23:11:45 error: RoomId not found -2026-08-17 23:11:45 warn: No active recording for room 18XdLg8tGQ-gD1PTAAAD -2026-08-17 23:11:46 warn: IDK -2026-08-17 23:11:46 info: [node-1] Client connected: mcIZKH44yGWdlvCsAAAF -2026-08-17 23:11:46 info: User disconnected 1iIt11Y4KH4CVL-FAAAB beacuse of transport close -2026-08-17 23:11:46 info: Handle disconnect started -2026-08-17 23:11:46 error: RoomId not found -2026-08-17 23:11:46 warn: No active recording for room 1iIt11Y4KH4CVL-FAAAB -2026-08-17 23:11:46 warn: IDK -2026-08-17 23:11:47 info: [node-1] Client connected: -gvhZ2j5PA9aaI2TAAAH -2026-08-17 23:11:49 info: Create room started -2026-08-17 23:11:49 info: Woker loads loaded successfully -2026-08-17 23:11:49 info: Woker assigned succesfully -2026-08-17 23:11:49 info: Creation of router started -2026-08-17 23:11:49 info: Router created -2026-08-17 23:11:49 info: Creation of room successfully executed -2026-08-17 23:11:49 info: Get room started -2026-08-17 23:11:49 info: Get room executed successfully -2026-08-17 23:11:49 info: Broadcaster added to the room -2026-08-17 23:11:49 info: Room created successfully -2026-08-17 23:11:49 info: Get getRouterRtpCapabilities started -2026-08-17 23:11:49 info: Fetching of router started -2026-08-17 23:11:49 info: Fetching of router executed successfully -2026-08-17 23:11:49 info: Rtp capabilities fetched successfully -2026-08-17 23:11:49 info: Get room started -2026-08-17 23:11:49 info: Get room executed successfully -2026-08-17 23:11:49 info: Transport created : d710f307-20a3-4795-93aa-087fbd4e93be -2026-08-17 23:11:49 info: Get room started -2026-08-17 23:11:49 info: Get room executed successfully -2026-08-17 23:11:49 info: Connect broadcaster transport listener started -2026-08-17 23:11:49 info: Get room started -2026-08-17 23:11:49 info: Get room executed successfully -2026-08-17 23:11:49 info: Connect broadcaster transport executed successfully -2026-08-17 23:11:49 info: Transport ICE state changed -2026-08-17 23:11:49 info: Transport DTLS state changed -2026-08-17 23:11:49 info: Producer listener started -2026-08-17 23:11:49 info: Get room started -2026-08-17 23:11:49 info: Get room executed successfully -2026-08-17 23:11:49 info: Producer listener executed successfully: -2026-08-17 23:11:49 info: Transport DTLS state changed -2026-08-17 23:11:49 info: Producer listener started -2026-08-17 23:11:49 info: Get room started -2026-08-17 23:11:49 info: Get room executed successfully -2026-08-17 23:11:49 info: Producer listener executed successfully: -2026-08-17 23:11:59 info: Join as viewer listner started -2026-08-17 23:11:59 info: Rate limiting -2026-08-17 23:11:59 info: Rate limiting -2026-08-17 23:11:59 info: Get room started -2026-08-17 23:11:59 info: Get room executed successfully -2026-08-17 23:11:59 info: Fetching of router started -2026-08-17 23:11:59 info: Fetching of router executed successfully -2026-08-17 23:11:59 info: Get room started -2026-08-17 23:11:59 info: Get room executed successfully -2026-08-17 23:11:59 info: Viewer joined the room -2026-08-17 23:11:59 info: Join viewer listner successfully executed -2026-08-17 23:11:59 info: Create viewer transport listner started -2026-08-17 23:11:59 info: Get room started -2026-08-17 23:11:59 info: Get room executed successfully -2026-08-17 23:11:59 info: Get room started -2026-08-17 23:11:59 info: Get room executed successfully -2026-08-17 23:11:59 info: Transport created : 9417e8ce-007e-4948-bf21-887fb647cd24 -2026-08-17 23:11:59 info: Viewer transport successfully created -2026-08-17 23:11:59 info: Create viewer transport listner successfully executed -2026-08-17 23:11:59 info: Consume lister started -2026-08-17 23:11:59 info: Get room started -2026-08-17 23:11:59 info: Get room executed successfully -2026-08-17 23:11:59 info: Get room started -2026-08-17 23:11:59 info: Get room executed successfully -2026-08-17 23:11:59 info: Get room started -2026-08-17 23:11:59 info: Get room executed successfully -2026-08-17 23:11:59 info: Viewer media consume successfully executed -2026-08-17 23:11:59 info: Consume lister executed successfully -2026-08-17 23:11:59 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a48c735512699d8407ab848" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 23:11:59 info: Connect consumer listner started -2026-08-17 23:11:59 info: Get room started -2026-08-17 23:11:59 info: Get room executed successfully -2026-08-17 23:11:59 info: Consumer transport connected successfully -2026-08-17 23:11:59 info: Connect consumer listner executed successfully -2026-08-17 23:11:59 info: Transport ICE state changed -2026-08-17 23:11:59 info: Transport DTLS state changed -2026-08-17 23:11:59 info: Transport DTLS state changed -2026-08-17 23:11:59 info: Get room started -2026-08-17 23:11:59 info: Get room executed successfully -2026-08-17 23:11:59 info: Viewer consumer resumed -2026-08-17 23:11:59 info: Resume consumer listener executed successfully -2026-08-17 23:11:59 info: Get room started -2026-08-17 23:11:59 info: Get room executed successfully -2026-08-17 23:11:59 info: Viewer consumer resumed -2026-08-17 23:11:59 info: Resume consumer listener executed successfully -2026-08-17 23:12:00 info: Get room started -2026-08-17 23:12:00 info: Get room executed successfully -2026-08-17 23:12:00 info: Get room started -2026-08-17 23:12:00 info: Get room executed successfully -2026-08-17 23:12:00 info: Get room started -2026-08-17 23:12:00 info: Get room executed successfully -2026-08-17 23:12:00 info: Get room started -2026-08-17 23:12:00 info: Get room executed successfully -2026-08-17 23:12:00 info: Get room started -2026-08-17 23:12:00 info: Get room executed successfully -2026-08-17 23:12:00 info: Get room started -2026-08-17 23:12:00 info: Get room executed successfully -2026-08-17 23:12:02 info: Get room started -2026-08-17 23:12:02 info: Get room executed successfully -2026-08-17 23:12:14 info: Get room started -2026-08-17 23:12:14 info: Get room executed successfully -2026-08-17 23:12:14 info: Get room started -2026-08-17 23:12:14 info: Get room executed successfully -2026-08-17 23:12:14 info: Get room started -2026-08-17 23:12:14 info: Get room executed successfully -2026-08-17 23:12:14 info: Get room started -2026-08-17 23:12:14 info: Get room executed successfully -2026-08-17 23:12:14 info: Get room started -2026-08-17 23:12:14 info: Get room executed successfully -2026-08-17 23:12:14 info: Get room started -2026-08-17 23:12:14 info: Get room executed successfully -2026-08-17 23:12:19 info: Get room started -2026-08-17 23:12:19 info: Get room executed successfully -2026-08-17 23:12:21 info: Get room started -2026-08-17 23:12:21 info: Get room executed successfully -2026-08-17 23:12:29 info: Transport DTLS state changed -2026-08-17 23:12:29 info: User disconnected -gvhZ2j5PA9aaI2TAAAH beacuse of transport close -2026-08-17 23:12:29 info: Handle disconnect started -2026-08-17 23:12:29 info: Get room started -2026-08-17 23:12:29 info: Get room executed successfully -2026-08-17 23:12:29 info: Get room started -2026-08-17 23:12:29 info: Get room executed successfully -2026-08-17 23:12:29 info: Remove viewer started -2026-08-17 23:12:29 info: Handle disconnect succesfully -2026-08-17 23:12:29 warn: No active recording for room -gvhZ2j5PA9aaI2TAAAH -2026-08-17 23:12:29 info: Viewer removed from room -2026-08-17 23:12:30 info: User disconnected mcIZKH44yGWdlvCsAAAF beacuse of transport close -2026-08-17 23:12:30 info: Handle disconnect started -2026-08-17 23:12:30 info: Get room started -2026-08-17 23:12:30 info: Get room executed successfully -2026-08-17 23:12:30 info: Get room started -2026-08-17 23:12:30 info: Get room executed successfully -2026-08-17 23:12:30 info: Get room started -2026-08-17 23:12:30 info: Get room executed successfully -2026-08-17 23:12:30 warn: No active recording for room mcIZKH44yGWdlvCsAAAF -2026-08-17 23:12:30 info: Remove broadcaster success -2026-08-17 23:12:30 info: Handle disconnect succesfully -2026-08-17 23:12:30 info: room:3dd69ae3-c0d2-4189-aa02-2ab1152e5228 room deleted successfully diff --git a/backend/logs/error.log b/backend/logs/error.log deleted file mode 100644 index 444ad2d..0000000 --- a/backend/logs/error.log +++ /dev/null @@ -1,2133 +0,0 @@ -2025-08-03 23:01:47 error: TypeError: Cannot read properties of undefined (reading 'createWorker') - at initWorker (D:\Web-Development\Projects\Croudly\live\backend\src\mediasoup\worker.ts:11:20) - at setup (D:\Web-Development\Projects\Croudly\live\backend\src\mediasoup\transport.ts:17:28) - at Object. (D:\Web-Development\Projects\Croudly\live\backend\src\mediasoup\transport.ts:37:1) - at Module._compile (node:internal/modules/cjs/loader:1358:14) - at Module.m._compile (D:\Web-Development\Projects\Croudly\live\backend\node_modules\ts-node\src\index.ts:1618:23) - at Module._extensions..js (node:internal/modules/cjs/loader:1416:10) - at Object.require.extensions. [as .ts] (D:\Web-Development\Projects\Croudly\live\backend\node_modules\ts-node\src\index.ts:1621:12) - at Module.load (node:internal/modules/cjs/loader:1208:32) - at Function.Module._load (node:internal/modules/cjs/loader:1024:12) - at Module.require (node:internal/modules/cjs/loader:1233:19) -2025-08-03 23:01:49 error: TypeError: Cannot read properties of undefined (reading 'createWorker') - at initWorker (D:\Web-Development\Projects\Croudly\live\backend\src\mediasoup\worker.ts:11:20) - at createRouter (D:\Web-Development\Projects\Croudly\live\backend\src\mediasoup\router.ts:81:34) - at D:\Web-Development\Projects\Croudly\live\backend\src\index.ts:24:23 - at processTicksAndRejections (node:internal/process/task_queues:95:5) -2025-08-03 23:03:14 error: UnsupportedError: media codec not supported [mimeType:video/H265] - at Object.generateRouterRtpCapabilities (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\ortc.js:167:19) - at WorkerImpl.createRouter (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Worker.js:336:38) - at createRouter (D:\Web-Development\Projects\Croudly\live\backend\src\mediasoup\router.ts:82:31) - at async D:\Web-Development\Projects\Croudly\live\backend\src\index.ts:24:5 -2025-08-10 11:02:51 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:51:20) - at joinAsViewer (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewer.handler.ts:14:23) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewerSocket.handler.ts:15:49) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-10 11:06:38 error: SocketId did not come through -2025-08-10 11:06:38 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:51:20) - at joinAsViewer (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewer.handler.ts:14:23) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewerSocket.handler.ts:15:49) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-10 11:06:38 error: SocketId did not come through -2025-08-10 11:06:38 error: SocketId did not come through -2025-08-10 11:06:38 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:51:20) - at joinAsViewer (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewer.handler.ts:14:23) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewerSocket.handler.ts:15:49) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-10 11:06:38 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:51:20) - at joinAsViewer (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewer.handler.ts:14:23) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewerSocket.handler.ts:15:49) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-12 18:11:09 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:54:20) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:24:35) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-12 18:11:11 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:54:20) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:24:35) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-12 18:13:30 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:54:20) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:24:35) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-12 18:15:09 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:54:20) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:24:35) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-12 18:16:02 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:54:20) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:25:35) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-12 18:16:34 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:54:20) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:25:35) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-12 18:17:09 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:251:33) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:76:34) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:191:23) -2025-08-12 18:18:10 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:251:33) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:76:34) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:191:23) -2025-08-12 18:24:00 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:251:33) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:76:34) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:191:23) -2025-08-12 18:27:56 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:251:33) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:76:34) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:191:23) -2025-08-12 18:30:54 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:251:33) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:76:34) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:191:23) -2025-08-18 20:39:46 error: ValidationError: Transport validation failed: transportId: Path `transportId` is required. - at model.Document.invalidate (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mongoose\lib\document.js:3358:32) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\mongoose\lib\document.js:3119:17 - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\mongoose\lib\schemaType.js:1410:9 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-24 16:39:55 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:251:33) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:76:34) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:191:23) -2025-08-24 18:51:26 error: Viewer does not exist with socketId : SJi8ihm2jnYd-uqZAAAD -2025-08-24 18:52:08 error: Viewer does not exist with socketId : HQb1SNpzcP2yJz8tAAAF -2025-08-24 18:54:36 error: Viewer does not exist with socketId : wod_KzIBm_Ej67auAAAE -2025-08-25 15:23:24 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:251:33) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:76:34) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:191:23) -2025-08-25 15:28:56 error: TypeError: missing webRtcServer, listenInfos and listenIps (one of them is mandatory) - at RouterImpl.createWebRtcTransport (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Router.js:157:19) - at createWebRtcTransport (D:\Web-Development\Projects\Croudly\live\backend\src\mediasoup\transport.ts:29:34) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\registerViewer.handler.ts:65:58) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-25 19:03:47 error: Error: querySrv ETIMEOUT _mongodb._tcp.cluster0.kez1ma6.mongodb.net - at QueryReqWrap.onresolve [as oncomplete] (node:internal/dns/promises:291:17) -2025-08-25 19:04:28 error: Error: querySrv ETIMEOUT _mongodb._tcp.cluster0.kez1ma6.mongodb.net - at QueryReqWrap.onresolve [as oncomplete] (node:internal/dns/promises:291:17) -2025-08-25 19:05:09 error: Error: querySrv ETIMEOUT _mongodb._tcp.cluster0.kez1ma6.mongodb.net - at QueryReqWrap.onresolve [as oncomplete] (node:internal/dns/promises:291:17) -2025-08-26 18:10:15 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:80:20) - at joinAsViewer (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewer.handler.ts:19:23) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\registerViewer.handler.ts:20:25) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-26 18:39:13 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:80:20) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:36:27) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-26 18:45:18 error: RTC Failed Error: Room not found -2025-08-26 18:49:10 error: RTC Failed Error: Room not found -2025-08-26 19:01:12 error: RTC Failed Error: Room not found -2025-08-26 22:34:24 error: TypeError: transport.produce is not a function - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:207:40) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-26 22:39:48 error: TypeError: transport.produce is not a function - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:207:40) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-26 22:42:56 error: TypeError: Cannot read properties of undefined (reading 'id') - at D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:200:28 - at Array.find () - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:199:48) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-08-28 13:40:14 error: Viewer does not exist with socketId : undefined -2025-08-28 13:40:14 error: Viewer does not exist with socketId : undefined -2025-08-28 13:43:46 error: Viewer consumer does not exist -2025-08-28 13:43:46 error: Viewer consumer does not exist -2025-08-28 13:48:00 error: Viewer consumer does not exist -2025-08-28 13:48:01 error: Viewer consumer does not exist -2025-08-28 13:48:44 error: Viewer consumer does not exist -2025-08-28 13:48:44 error: Viewer consumer does not exist -2025-08-28 13:51:30 error: Viewer consumer does not exist -2025-08-28 13:51:30 error: Viewer consumer does not exist -2025-08-28 13:54:58 error: Viewer consumer does not exist -2025-08-28 13:54:58 error: Viewer consumer does not exist -2025-08-28 13:56:05 error: Viewer consumer does not exist -2025-08-28 13:56:05 error: Viewer consumer does not exist -2025-08-28 13:59:48 error: Viewer consumer does not exist -2025-08-28 13:59:48 error: Viewer consumer does not exist -2025-08-28 14:30:17 error: Error connecting transport -2025-08-28 14:30:18 error: Error: MID already exists in RTP listener [mid:0] [method:transport.produce] - at Channel.processResponse (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:251:33) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mediasoup\node\lib\Channel.js:76:34) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:191:23) -2025-09-02 13:42:07 error: TypeError: Cannot read properties of undefined (reading 'readyState') - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:250:64) - at processTicksAndRejections (node:internal/process/task_queues:95:5) -2025-09-03 16:06:20 error: MongoNetworkError: read ECONNRESET - at Connection.onSocketError (D:\Web-Development\Projects\Croudly\live\backend\node_modules\mongodb\src\cmap\connection.ts:308:18) - at TLSSocket.emit (node:events:531:35) - at TLSSocket.emit (node:domain:488:12) - at emitErrorNT (node:internal/streams/destroy:169:8) - at emitErrorCloseNT (node:internal/streams/destroy:128:3) - at processTicksAndRejections (node:internal/process/task_queues:82:21) -2025-09-03 17:24:50 error: Viewer consumer does not exist -2025-09-03 17:24:50 error: Viewer already exists in the database -2025-09-03 17:38:18 error: Viewer already exists in the database -2025-09-05 11:26:03 error: ReferenceError: window is not defined - at requestToBecomeCoHost (D:\Web-Development\Projects\Croudly\live\backend\src\utils\coHost.utils.ts:25:26) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\broadcaster.handler.ts:283:50) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-09-07 10:01:24 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:83:20) - at joinAsViewer (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewer.handler.ts:19:23) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\registerViewer.handler.ts:18:25) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-09-08 11:55:45 error: Viewer already exists in the database -2025-09-15 13:26:13 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:83:20) - at joinAsViewer (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewer.handler.ts:19:23) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\registerViewer.handler.ts:17:25) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - at D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:77:11) -2025-09-15 13:26:15 error: Error: Room not found - at getRoom (D:\Web-Development\Projects\Croudly\live\backend\src\rooms\room.store.ts:83:20) - at joinAsViewer (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\viewer.handler.ts:19:23) - at Socket. (D:\Web-Development\Projects\Croudly\live\backend\src\handlers\registerViewer.handler.ts:17:25) - at Socket.emit (node:events:519:28) - at Socket.emit (node:domain:488:12) - at Socket.emitUntyped (D:\Web-Development\Projects\Croudly\live\backend\node_modules\socket.io\dist\typed-events.js:69:22) - -2026-01-07 11:15:26 error: Error: Room not found - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:83:20) - at joinAsViewer (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/viewer.handler.ts:19:23) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:17:25) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-07 11:17:32 error: Error creating transport -2026-01-07 11:17:40 error: MongooseError: Operation `viewers.findOne()` buffering timed out after 10000ms - at Timeout. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mongoose/lib/drivers/node-mongodb-native/collection.js:187:23) - at listOnTimeout (node:internal/timers:605:17) - at processTimers (node:internal/timers:541:7) -2026-01-07 11:19:08 error: Error creating transport -2026-01-07 11:19:14 error: MongooseError: Operation `viewers.findOne()` buffering timed out after 10000ms - at Timeout. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mongoose/lib/drivers/node-mongodb-native/collection.js:187:23) - at listOnTimeout (node:internal/timers:605:17) - at processTimers (node:internal/timers:541:7) -2026-01-07 11:21:11 error: Error creating transport -2026-01-07 12:07:17 error: Error creating transport -2026-01-09 14:36:24 error: Room not found -2026-01-09 14:36:24 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:135:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:156:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:36:24 error: Room not found -2026-01-09 14:36:24 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:160:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:36:24 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:36:24 error: Broadcaster not found -2026-01-09 14:36:24 error: Error - at saveBroadcasterTransport (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:198:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:142:31) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:36:57 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:37:47 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:38:48 error: Room not found -2026-01-09 14:38:48 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:135:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:156:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:38:48 error: Room not found -2026-01-09 14:38:48 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:160:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:38:49 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:38:49 error: Broadcaster not found -2026-01-09 14:38:49 error: Error - at saveBroadcasterTransport (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:198:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:142:31) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:39:15 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:41:00 error: Room not found -2026-01-09 14:41:00 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:135:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:156:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:41:00 error: Room not found -2026-01-09 14:41:00 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:160:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:41:01 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:41:01 error: Broadcaster not found -2026-01-09 14:41:01 error: Error - at saveBroadcasterTransport (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:198:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:142:31) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:41:04 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:42:15 error: Room not found -2026-01-09 14:42:15 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:135:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:156:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:42:15 error: Room not found -2026-01-09 14:42:15 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:160:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:42:16 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:42:16 error: Broadcaster not found -2026-01-09 14:42:16 error: Error - at saveBroadcasterTransport (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:198:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:142:31) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:42:19 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:42:51 error: Room not found -2026-01-09 14:42:51 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:135:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:156:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:42:51 error: Room not found -2026-01-09 14:42:51 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:160:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:42:52 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:42:52 error: Broadcaster not found -2026-01-09 14:42:52 error: Error - at saveBroadcasterTransport (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:198:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:142:31) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:43:05 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:44:31 error: Room not found -2026-01-09 14:44:31 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:135:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:156:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:44:31 error: Room not found -2026-01-09 14:44:31 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:160:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:44:32 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:44:32 error: Broadcaster not found -2026-01-09 14:44:32 error: Error - at saveBroadcasterTransport (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:198:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:142:31) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:45:12 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:47:18 error: Room not found -2026-01-09 14:47:18 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:135:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:156:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:47:18 error: Room not found -2026-01-09 14:47:18 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:160:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:32:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:47:19 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:47:19 error: Broadcaster not found -2026-01-09 14:47:19 error: Error - at saveBroadcasterTransport (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:200:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:142:31) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:49:38 error: Room not found -2026-01-09 14:49:38 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:135:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:156:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:29:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:49:38 error: Room not found -2026-01-09 14:49:38 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:160:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:29:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:49:38 error: Room not found -2026-01-09 14:49:38 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:135:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:31:29) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:49:39 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:49:39 error: Broadcaster not found -2026-01-09 14:49:39 error: Error - at saveBroadcasterTransport (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:200:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:141:31) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:50:42 error: Room not found -2026-01-09 14:50:42 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:136:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:157:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:29:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:50:42 error: Room not found -2026-01-09 14:50:42 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:161:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:29:21) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:50:42 error: Room not found -2026-01-09 14:50:42 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:136:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:31:29) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:50:43 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:50:43 error: Broadcaster not found -2026-01-09 14:50:43 error: Error - at saveBroadcasterTransport (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:201:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:141:31) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:52:25 error: Room not found -2026-01-09 14:52:25 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:136:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:157:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:29:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:52:25 error: Room not found -2026-01-09 14:52:25 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:161:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:29:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:52:25 error: Room not found -2026-01-09 14:52:25 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:136:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:31:29) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:52:26 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:52:26 error: Broadcaster not found -2026-01-09 14:52:26 error: Error - at saveBroadcasterTransport (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:201:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:141:31) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:54:30 error: Room not found -2026-01-09 14:54:30 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:136:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:157:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:29:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:54:30 error: Room not found -2026-01-09 14:54:30 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:161:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:29:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:54:30 error: Room not found -2026-01-09 14:54:30 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:136:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:31:29) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:54:30 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 14:54:30 error: Broadcaster not found -2026-01-09 14:54:30 error: Error - at saveBroadcasterTransport (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:201:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:141:31) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 14:58:11 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 15:00:18 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 15:04:00 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 15:05:20 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 15:05:38 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 15:13:43 error: TypeError: logging_1.default.alert is not a function - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:17:14) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-09 15:14:15 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 15:34:48 error: Error finding transport with 35da2f99-deb6-433a-8f25-b7786281cc73 -2026-01-09 15:35:33 error: Error finding transport with ecfb9469-c1cd-492e-9110-40b4d19b8ea4 -2026-01-09 15:38:23 error: Error: wrong webRtcServerId (no associated WebRtcServer found) [method:router.createWebRtcTransportWithServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-09 16:48:47 error: TypeError: caps is not an object - at Object.validateRtpCapabilities (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/ortc.js:34:15) - at WebRtcTransportImpl.consume (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Transport.js:337:14) - at consume (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/viewer.handler.ts:169:43) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:117:38) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-09 16:50:55 error: TypeError: Cannot read properties of undefined (reading 'resume') - at resumeConsumer (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/consumer/consumer.handler.ts:69:20) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:139:19) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-09 16:51:05 error: TypeError: Cannot read properties of undefined (reading 'resume') - at resumeConsumer (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/consumer/consumer.handler.ts:69:20) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:139:19) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-09 17:06:50 error: Room not found -2026-01-09 17:06:50 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at joinAsViewer (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/viewer.handler.ts:18:25) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:20:25) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-09 17:06:50 error: Room does not exist with let remoteVideoEl; let remoteAudioEl; socket.on("consumerCreated", async (consumers) => { if (!consumerTransport) return; if (!Array.isArray(consumers)) return; for (const params of consumers) { const consumer = await consumerTransport.consume({ id: params.id, producerId: params.producerId, kind: params.kind, rtpParameters: params.rtpParameters, paused: true }); await consumer.resume(); socket.emit("resumeConsumer", { consumerId: consumer.id }); if (consumer.kind === "video") { if (!remoteVideoEl) { remoteVideoEl = document.createElement("video"); remoteVideoEl.autoplay = true; remoteVideoEl.muted = true; remoteVideoEl.playsInline = true; remoteVideoEl.style.width = "100%"; remoteVideoEl.style.height = "100%"; document .getElementById("remoteVideoContainer") .appendChild(remoteVideoEl); } const stream = new MediaStream(); stream.addTrack(consumer.track); remoteVideoEl.srcObject = stream; consumer.track.onunmute = async () => { try { await remoteVideoEl.play(); } catch {} }; } if (consumer.kind === "audio") { if (!remoteAudioEl) { remoteAudioEl = document.createElement("audio"); remoteAudioEl.autoplay = true; remoteAudioEl.controls = true; document.body.appendChild(remoteAudioEl); } const stream = new MediaStream(); stream.addTrack(consumer.track); remoteAudioEl.srcObject = stream; } } }); -2026-01-09 17:06:50 error: Room not found -2026-01-09 17:06:50 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:23:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-09 17:06:50 error: Room router not found -2026-01-13 18:58:24 error: Room not found -2026-01-13 18:58:24 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at joinAsViewer (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/viewer.handler.ts:18:25) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:20:25) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-13 18:58:24 error: Room does not exist with b4c7894f-eaa8-4d19-8347-751dec87b10f -2026-01-13 18:58:24 error: Room not found -2026-01-13 18:58:24 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:23:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-13 18:58:24 error: Room router not found -2026-01-14 11:39:46 error: Room not found -2026-01-14 11:39:46 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at joinAsViewer (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/viewer.handler.ts:18:25) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:20:25) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-14 11:39:46 error: Room does not exist with async renderMedia(roomId:string, viewerVideo:any){ const room = frontendMemoryRoom.get(roomId); if(!room) throw new Error('Room not found'); const mediaStream = new MediaStream() const consumers = room.consumers; consumers.forEach((c) => { const track = c.track console.log('Consumers track', track) mediaStream.addTrack(track) }) viewerVideo.current.srcObject = mediaStream if(viewerVideo.current){ await viewerVideo.current.play() }else{ console.error('Video play error') } } -2026-01-14 11:39:46 error: Room not found -2026-01-14 11:39:46 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:23:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 11:39:46 error: Room router not found -2026-01-14 21:03:19 error: Room not found -2026-01-14 21:03:19 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at joinAsViewer (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/viewer.handler.ts:18:25) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:20:25) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-14 21:03:19 error: Room does not exist with cs -2026-01-14 21:03:19 error: Room not found -2026-01-14 21:03:19 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:23:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:03:19 error: Room router not found -2026-01-14 21:03:25 error: Room not found -2026-01-14 21:03:25 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at joinAsViewer (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/viewer.handler.ts:18:25) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:20:25) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-14 21:03:25 error: Room does not exist with cs -2026-01-14 21:03:25 error: Room not found -2026-01-14 21:03:25 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:23:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:03:25 error: Room router not found -2026-01-14 21:58:05 error: Error: port bind failed due to address not available [protocol:udp, ip:'172.31.15.89', port:41490, attempt:1/10000] [method:worker.createWebRtcServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-14 21:58:05 error: Error creating web rtc server -2026-01-14 21:58:05 error: Error - at createRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:94:13) - at processTicksAndRejections (node:internal/process/task_queues:103:5) - at async Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:22:20) -2026-01-14 21:58:05 error: Room not found -2026-01-14 21:58:05 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:151:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:28:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:58:05 error: Room not found -2026-01-14 21:58:05 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:155:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:28:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:58:05 error: Room not found -2026-01-14 21:58:05 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:55:27) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-14 21:58:05 error: Error in room router -2026-01-14 21:58:15 error: Error: port bind failed due to address not available [protocol:udp, ip:'172.31.15.89', port:44466, attempt:1/10000] [method:worker.createWebRtcServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-14 21:58:15 error: Error creating web rtc server -2026-01-14 21:58:15 error: Error - at createRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:94:13) - at processTicksAndRejections (node:internal/process/task_queues:103:5) - at async Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:22:20) -2026-01-14 21:58:15 error: Room not found -2026-01-14 21:58:15 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:151:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:28:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:58:15 error: Room not found -2026-01-14 21:58:15 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:155:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:28:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:58:16 error: Room not found -2026-01-14 21:58:16 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:55:27) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-14 21:58:16 error: Error in room router -2026-01-14 21:58:29 error: Error: port bind failed due to address not available [protocol:udp, ip:'172.31.15.89', port:47906, attempt:1/10000] [method:worker.createWebRtcServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-14 21:58:29 error: Error creating web rtc server -2026-01-14 21:58:29 error: Error - at createRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:94:13) - at processTicksAndRejections (node:internal/process/task_queues:103:5) - at async Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:22:20) -2026-01-14 21:58:29 error: Room not found -2026-01-14 21:58:29 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:151:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:28:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:58:29 error: Room not found -2026-01-14 21:58:29 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:155:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:28:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:58:29 error: Room not found -2026-01-14 21:58:29 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:55:27) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-14 21:58:29 error: Error in room router -2026-01-14 21:58:35 error: Error: port bind failed due to address not available [protocol:udp, ip:'172.31.15.89', port:43602, attempt:1/10000] [method:worker.createWebRtcServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-14 21:58:35 error: Error creating web rtc server -2026-01-14 21:58:35 error: Error - at createRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:94:13) - at processTicksAndRejections (node:internal/process/task_queues:103:5) - at async Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:22:20) -2026-01-14 21:58:35 error: Room not found -2026-01-14 21:58:35 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:151:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:28:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:58:35 error: Room not found -2026-01-14 21:58:35 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:155:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:28:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:58:35 error: Room not found -2026-01-14 21:58:35 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:55:27) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-14 21:58:35 error: Error in room router -2026-01-14 21:59:10 error: Error: port bind failed due to address not available [protocol:udp, ip:'172.31.15.89', port:48034, attempt:1/10000] [method:worker.createWebRtcServer] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-14 21:59:10 error: Error creating web rtc server -2026-01-14 21:59:10 error: Error - at createRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:94:13) - at processTicksAndRejections (node:internal/process/task_queues:103:5) - at async Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:22:20) -2026-01-14 21:59:10 error: Room not found -2026-01-14 21:59:10 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:151:18) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:28:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:59:10 error: Room not found -2026-01-14 21:59:10 error: Error - at addBroadcaster (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:155:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:28:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-14 21:59:10 error: Room not found -2026-01-14 21:59:10 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:130:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/broadcaster.handler.ts:55:27) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-14 21:59:10 error: Error in room router -2026-01-15 14:58:41 error: Error: uv_udp_bind() failed [protocol:udp, ip:'127.0.0.1', port:3478]: address already in use [method:router.createWebRtcTransport] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-15 14:58:52 error: Error: uv_udp_bind() failed [protocol:udp, ip:'127.0.0.1', port:3478]: address already in use [method:router.createWebRtcTransport] - at Channel.processResponse (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:251:33) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/mediasoup/node/lib/Channel.js:76:34) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at addChunk (node:internal/streams/readable:559:12) - at readableAddChunkPushByteMode (node:internal/streams/readable:510:3) - at Socket.Readable.push (node:internal/streams/readable:390:5) - at Pipe.onStreamRead (node:internal/stream_base_commons:189:23) -2026-01-15 18:41:57 error: Error finding transport with b428fcf1-4bd4-4a9c-905a-aea56c1208f0 -2026-01-15 18:47:20 error: Error finding transport with 212c79f4-973d-4314-a20f-23cd669dca68 -2026-01-15 18:50:26 error: Error finding transport with a4484574-c84e-4b1a-9822-b946278cd4f0 -2026-01-15 18:50:29 error: Error finding transport with 6dbd58fe-3923-4bec-a982-e2ce84c73213 -2026-01-15 20:09:42 error: Room not found -2026-01-15 20:09:42 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:118:13) - at joinAsViewer (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/viewer.handler.ts:17:25) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:19:25) - at Socket.emit (node:events:508:28) - at Socket.emit (node:domain:489:12) - at Socket.emitUntyped (/home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/Web-Development/Projects/Croudly/live/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:84:11) -2026-01-15 20:09:42 error: Room does not exist with http://localhost:5173/, {"iceServers":[{"urls":["stun:stun.l.google.com:19302"]}],"bundlePolicy":"max-bundle"}, ICE connection state: new => "checking" => "checking" => "checking" => "checking" Connection state: new => "connecting" => "connecting" => "connecting" => "connecting" Signaling state: new => "stable" => "stable" => "stable" => "stable" ICE Candidate pair: ICE candidate grid Time Event 15/01/2026, 20:08:03 setRemoteDescription (type: "offer", 4 sections) 15/01/2026, 20:08:03 setLocalDescription (type: "answer", 4 sections) 15/01/2026, 20:08:03 onsignalingstatechange 15/01/2026, 20:08:03 oniceconnectionstatechange 15/01/2026, 20:08:03 onconnectionstatechange 15/01/2026, 20:08:11 setRemoteDescription (type: "offer", 4 sections) 15/01/2026, 20:08:11 setLocalDescription (type: "answer", 4 sections) 15/01/2026, 20:08:11 onsignalingstatechange 15/01/2026, 20:08:11 oniceconnectionstatechange 15/01/2026, 20:08:11 onconnectionstatechange 15/01/2026, 20:08:13 setRemoteDescription (type: "offer", 4 sections) 15/01/2026, 20:08:13 setLocalDescription (type: "answer", 4 sections) 15/01/2026, 20:08:13 onsignalingstatechange 15/01/2026, 20:08:13 oniceconnectionstatechange 15/01/2026, 20:08:13 onconnectionstatechange 15/01/2026, 20:08:16 setRemoteDescription (type: "offer", 4 sections) 15/01/2026, 20:08:16 setLocalDescription (type: "answer", 4 sections) 15/01/2026, 20:08:16 onsignalingstatechange 15/01/2026, 20:08:16 oniceconnectionstatechange 15/01/2026, 20:08:16 onconnectionstatechange "connecting" Stats Tables Filter statistics by type including separate multiple values by `,` media-playout (kind=audio, id=AP) certificate (id=CF77:6F:A1:89:0D:1C:BB:23:3F:8C:8F:0D:AC:CA:5E:0B:3C:79:48:0C:F4:6C:F5:46:A6:2C:9E:14:DD:EE:D3:BD) candidate-pair (state=waiting, id=CPU+xaswUZ_iRlzaCCz) local-candidate (candidateType=host, tcpType=active, id=I22My44Q9) local-candidate (candidateType=srflx, id=I3a/hIda6) local-candidate (candidateType=host, id=IPOMDMn1o) local-candidate (candidateType=host, tcpType=active, id=IU+xaswUZ) local-candidate (candidateType=host, id=Ih6nMiuxt) remote-candidate (candidateType=host, tcpType=passive, id=IiRlzaCCz) peer-connection (id=P) transport (iceState=checking, dtlsState=new, id=T01) Filter statistics graphs by type including separate multiple values by `,` Stats graphs for media-playout (kind=audio, id=AP) Stats graphs for candidate-pair (state=waiting, id=CPU+xaswUZ_iRlzaCCz) Stats graphs for peer-connection (id=P) -2026-01-15 20:09:42 error: Room not found -2026-01-15 20:09:42 error: Error - at getRoom (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/rooms/room.store.ts:118:13) - at Socket. (/home/harshit/Web-Development/Projects/Croudly/live/backend/src/handlers/registerViewer.handler.ts:22:27) - at processTicksAndRejections (node:internal/process/task_queues:103:5) -2026-01-15 20:09:42 error: Room router not found -2026-06-22 10:46:44 error: Error: spawn /home/harshit/CrowdStream/backend/node_modules/mediasoup/worker/out/Release/mediasoup-worker ENOENT - at ChildProcess. (/home/harshit/CrowdStream/backend/node_modules/mediasoup/node/lib/Worker.js:157:39) - at ChildProcess.emit (node:events:509:20) - at Process.ChildProcess._handle.onexit (node:internal/child_process:292:12) - at onErrorNT (node:internal/child_process:507:16) - at processTicksAndRejections (node:internal/process/task_queues:90:21) -2026-06-22 10:54:04 error: TypeError: ack is not a function - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:35:7) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-06-22 10:56:40 error: TypeError: ack is not a function - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:36:7) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-06-22 10:58:07 error: Error founding the router -2026-06-22 10:58:07 error: Error: Router not found - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:86:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:65:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 10:58:07 error: TypeError: error is not a constructor - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:103:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:65:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 10:58:56 error: Error founding the router -2026-06-22 10:58:56 error: Error: Router not found - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:86:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:65:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 10:58:56 error: TypeError: error is not a constructor - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:103:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:65:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 11:01:43 error: Error founding the router -2026-06-22 11:01:43 error: Error: Router not found - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:86:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:63:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 11:01:43 error: TypeError: error is not a constructor - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:103:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:63:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 11:02:16 error: Error founding the router -2026-06-22 11:02:16 error: Error: Router not found - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:86:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:64:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 11:02:16 error: TypeError: error is not a constructor - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:103:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:64:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 11:03:36 error: Error founding the router -2026-06-22 11:03:36 error: Error: Router not found - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:86:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:64:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 11:03:36 error: TypeError: error is not a constructor - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:103:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:64:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 11:04:51 error: Error founding the router -2026-06-22 11:04:52 error: Error: Router not found - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:86:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:65:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-22 11:04:52 error: TypeError: error is not a constructor - at getRouter (/home/harshit/CrowdStream/backend/src/mediasoup/router.ts:103:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerBroadcaster.handler.ts:65:31) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-06-25 23:24:49 error: Router not found -2026-06-25 23:24:49 error: Error: Router not found - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:30:15) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-06-25 23:28:21 error: Router not found -2026-06-25 23:28:21 error: Error: Router not found - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:32:15) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-06-25 23:59:32 error: Consumer not found -2026-06-26 00:01:09 error: Consumer not found -2026-06-26 00:14:55 error: Consumer not found -2026-06-26 00:17:14 error: Consumer not found -2026-07-04 13:27:44 error: MongoParseError: Invalid scheme, expected connection string to start with "mongodb://" or "mongodb+srv://" - at new ConnectionString (/home/harshit/CrowdStream/backend/node_modules/mongodb-connection-string-url/src/index.ts:133:13) - at parseOptions (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/connection_string.ts:255:15) - at new MongoClient (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:443:32) - at NativeConnection.createClient (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/drivers/node-mongodb-native/connection.js:343:14) - at NativeConnection.openUri (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/connection.js:1075:34) - at Mongoose.connect (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/mongoose.js:450:15) - at connectToDataBase (/home/harshit/CrowdStream/backend/src/database/index.ts:15:39) - at Object. (/home/harshit/CrowdStream/backend/src/index.ts:37:18) - at Module._compile (node:internal/modules/cjs/loader:1873:14) - at Module.m._compile (/home/harshit/CrowdStream/backend/node_modules/ts-node/src/index.ts:1618:23) -2026-07-04 13:29:40 error: MongooseServerSelectionError: Could not connect to any servers in your MongoDB Atlas cluster. One common reason is that you're trying to access the database from an IP that isn't whitelisted. Make sure your current IP address is on your Atlas cluster's IP whitelist: https://www.mongodb.com/docs/atlas/security-whitelist/ - at _handleConnectionErrors (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/connection.js:1169:11) - at NativeConnection.openUri (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/connection.js:1100:11) - at async connectToDataBase (/home/harshit/CrowdStream/backend/src/database/index.ts:15:24) -2026-07-04 13:37:55 error: JsonWebTokenError: jwt must be provided - at Object.module.exports [as verify] (/home/harshit/CrowdStream/backend/node_modules/jsonwebtoken/verify.js:60:17) - at verifyAccessToken (/home/harshit/CrowdStream/backend/src/utils/verifyJwt.ts:10:16) - at Array.socketAuth (/home/harshit/CrowdStream/backend/src/middlewares/authentication.middleware.ts:44:38) - at run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:133:19) - at Namespace.run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:144:9) - at Namespace._add (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:221:14) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-07-04 13:37:55 error: Error: Unauthorized - at verifyAccessToken (/home/harshit/CrowdStream/backend/src/utils/verifyJwt.ts:19:11) - at Array.socketAuth (/home/harshit/CrowdStream/backend/src/middlewares/authentication.middleware.ts:44:38) - at run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:133:19) - at Namespace.run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:144:9) - at Namespace._add (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:221:14) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-07-04 14:11:16 error: Validation error "password" length must be at least 8 characters long -2026-07-04 14:37:20 error: JsonWebTokenError: jwt must be provided - at Object.module.exports [as verify] (/home/harshit/CrowdStream/backend/node_modules/jsonwebtoken/verify.js:60:17) - at verifyAccessToken (/home/harshit/CrowdStream/backend/src/utils/verifyJwt.ts:10:16) - at Array.socketAuth (/home/harshit/CrowdStream/backend/src/middlewares/authentication.middleware.ts:44:38) - at run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:133:19) - at Namespace.run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:144:9) - at Namespace._add (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:221:14) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-07-04 14:37:20 error: Error: Unauthorized - at verifyAccessToken (/home/harshit/CrowdStream/backend/src/utils/verifyJwt.ts:19:11) - at Array.socketAuth (/home/harshit/CrowdStream/backend/src/middlewares/authentication.middleware.ts:44:38) - at run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:133:19) - at Namespace.run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:144:9) - at Namespace._add (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:221:14) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-07-04 14:41:34 error: JsonWebTokenError: jwt must be provided - at Object.module.exports [as verify] (/home/harshit/CrowdStream/backend/node_modules/jsonwebtoken/verify.js:60:17) - at verifyAccessToken (/home/harshit/CrowdStream/backend/src/utils/verifyJwt.ts:10:16) - at Array.socketAuth (/home/harshit/CrowdStream/backend/src/middlewares/authentication.middleware.ts:46:38) - at run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:133:19) - at Namespace.run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:144:9) - at Namespace._add (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:221:14) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-07-04 14:41:34 error: Error: Unauthorized - at verifyAccessToken (/home/harshit/CrowdStream/backend/src/utils/verifyJwt.ts:19:11) - at Array.socketAuth (/home/harshit/CrowdStream/backend/src/middlewares/authentication.middleware.ts:46:38) - at run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:133:19) - at Namespace.run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:144:9) - at Namespace._add (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:221:14) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-07-04 17:24:23 error: User does not exist -2026-07-04 17:34:58 error: JsonWebTokenError: jwt must be provided - at Object.module.exports [as verify] (/home/harshit/CrowdStream/backend/node_modules/jsonwebtoken/verify.js:60:17) - at verifyAccessToken (/home/harshit/CrowdStream/backend/src/utils/verifyJwt.ts:10:16) - at Array.socketAuth (/home/harshit/CrowdStream/backend/src/middlewares/authentication.middleware.ts:40:38) - at run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:133:19) - at Namespace.run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:144:9) - at Namespace._add (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:221:14) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-07-04 17:34:58 error: Error: Unauthorized - at verifyAccessToken (/home/harshit/CrowdStream/backend/src/utils/verifyJwt.ts:19:11) - at Array.socketAuth (/home/harshit/CrowdStream/backend/src/middlewares/authentication.middleware.ts:40:38) - at run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:133:19) - at Namespace.run (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:144:9) - at Namespace._add (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/namespace.js:221:14) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-07-20 12:56:17 error: Validation error "roomId" must only contain alpha-numeric characters -2026-07-20 12:56:17 error: Error: Validation error - at validateMessage (/home/harshit/CrowdStream/backend/src/utils/chat.util.ts:36:15) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:50:40) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 12:57:38 error: Validation error "roomId" must only contain alpha-numeric characters -2026-07-20 12:57:38 error: Error: Validation error - at validateMessage (/home/harshit/CrowdStream/backend/src/utils/chat.util.ts:36:15) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:50:40) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 12:58:57 error: RoomId not found -2026-07-20 12:59:22 error: Validation error "roomId" must only contain alpha-numeric characters -2026-07-20 12:59:22 error: Error: Validation error - at validateMessage (/home/harshit/CrowdStream/backend/src/utils/chat.util.ts:36:15) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:51:40) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 13:00:28 error: Validation error "roomId" must only contain alpha-numeric characters -2026-07-20 13:00:28 error: Error: Validation error - at validateMessage (/home/harshit/CrowdStream/backend/src/utils/chat.util.ts:36:15) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:52:40) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 13:01:46 error: RoomId not found -2026-07-20 13:02:06 error: Validation error "roomId" length must be less than or equal to 30 characters long -2026-07-20 13:02:06 error: Error: Validation error - at validateMessage (/home/harshit/CrowdStream/backend/src/utils/chat.util.ts:36:15) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:52:40) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 13:07:50 error: Validation error "message" length must be less than or equal to 10 characters long -2026-07-20 13:07:50 error: Error: Validation error - at validateMessage (/home/harshit/CrowdStream/backend/src/utils/chat.util.ts:36:15) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:52:40) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 17:33:42 error: RoomId not found -2026-07-20 17:36:41 error: Database connection is not open -2026-07-20 17:36:43 error: Database connection is not open -2026-07-20 17:36:45 error: Database connection is not open -2026-07-20 17:36:47 error: Database connection is not open -2026-07-20 17:40:37 error: Room not found -2026-07-20 17:40:37 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:98:13) - at authenticateUser (/home/harshit/CrowdStream/backend/src/utils/chat.util.ts:18:25) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:44:42) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 17:40:37 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:110:11) - at authenticateUser (/home/harshit/CrowdStream/backend/src/utils/chat.util.ts:18:25) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:44:42) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 17:40:44 error: RoomId not found -2026-07-20 17:59:52 error: RoomId not found -2026-07-20 18:08:04 error: MongoNetworkError: read ECONNRESET - at Connection.onSocketError (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection.ts:308:18) - at TLSSocket.emit (node:events:521:24) - at emitErrorNT (node:internal/streams/destroy:170:8) - at emitErrorCloseNT (node:internal/streams/destroy:129:3) - at processTicksAndRejections (node:internal/process/task_queues:90:21) -2026-07-20 18:08:06 error: Database connection is not open -2026-07-20 18:08:08 error: Database connection is not open -2026-07-20 18:08:10 error: Database connection is not open -2026-07-20 18:08:12 error: Database connection is not open -2026-07-20 18:08:14 error: Database connection is not open -2026-07-20 18:08:16 error: Database connection is not open -2026-07-20 18:08:18 error: Database connection is not open -2026-07-20 18:08:20 error: Database connection is not open -2026-07-20 18:08:22 error: Database connection is not open -2026-07-20 18:08:24 error: Database connection is not open -2026-07-20 18:08:26 error: Database connection is not open -2026-07-20 18:08:28 error: Database connection is not open -2026-07-20 18:11:41 error: Validation error "password" length must be at least 8 characters long -2026-07-20 18:11:54 error: RoomId not found -2026-07-20 18:16:18 error: PoolClearedOnNetworkError: Connection to ac-v00shv2-shard-00-02.eplgdfn.mongodb.net:27017 interrupted due to server monitor timeout - at ConnectionPool.interruptInUseConnections (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:487:28) - at /home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:473:35 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 18:16:20 error: Database connection is not open -2026-07-20 18:16:22 error: Database connection is not open -2026-07-20 18:16:24 error: Database connection is not open -2026-07-20 18:16:26 error: Database connection is not open -2026-07-20 18:16:28 error: Database connection is not open -2026-07-20 18:16:38 error: Password validation failed -2026-07-20 18:16:49 error: Room not found -2026-07-20 18:16:49 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:98:13) - at joinAsViewer (/home/harshit/CrowdStream/backend/src/handlers/viewer.handler.ts:13:25) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:23:25) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 18:16:49 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:110:11) - at joinAsViewer (/home/harshit/CrowdStream/backend/src/handlers/viewer.handler.ts:13:25) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:23:25) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 18:16:49 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:110:11) - at joinAsViewer (/home/harshit/CrowdStream/backend/src/handlers/viewer.handler.ts:13:25) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:23:25) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 18:17:04 error: Validation error "roomId" must be a valid GUID -2026-07-20 18:17:04 error: Error: Validation error - at validateMessage (/home/harshit/CrowdStream/backend/src/utils/chat.util.ts:35:15) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:42:40) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 18:17:15 error: Room not found -2026-07-20 18:17:15 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:98:13) - at joinAsViewer (/home/harshit/CrowdStream/backend/src/handlers/viewer.handler.ts:13:25) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:23:25) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 18:17:15 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:110:11) - at joinAsViewer (/home/harshit/CrowdStream/backend/src/handlers/viewer.handler.ts:13:25) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:23:25) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 18:17:15 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:110:11) - at joinAsViewer (/home/harshit/CrowdStream/backend/src/handlers/viewer.handler.ts:13:25) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:23:25) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 18:17:24 error: Validation error "roomId" must be a valid GUID -2026-07-20 18:17:24 error: Error: Validation error - at validateMessage (/home/harshit/CrowdStream/backend/src/utils/chat.util.ts:35:15) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:42:40) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-07-20 22:46:52 error: RoomId not found -2026-07-20 22:49:22 error: RoomId not found -2026-07-20 23:39:39 error: User already exists -2026-07-20 23:41:11 error: RoomId not found -2026-07-20 23:41:12 error: RoomId not found -2026-07-20 23:41:13 error: RoomId not found -2026-07-20 23:41:13 error: RoomId not found -2026-07-20 23:41:13 error: RoomId not found -2026-07-20 23:41:17 error: RoomId not found -2026-07-20 23:41:18 error: RoomId not found -2026-07-20 23:41:19 error: RoomId not found -2026-07-20 23:41:20 error: RoomId not found -2026-07-20 23:41:26 error: RoomId not found -2026-07-20 23:41:30 error: RoomId not found -2026-08-07 13:42:44 error: Password validation failed -2026-08-07 13:51:09 error: Room not found -2026-08-07 13:53:19 error: Room not found -2026-08-07 13:53:41 error: Room not found -2026-08-07 13:54:13 error: Room not found -2026-08-07 13:56:13 error: Validation error "username" must only contain alpha-numeric characters -2026-08-09 00:03:25 error: Validation error "username" must only contain alpha-numeric characters -2026-08-09 00:03:29 error: User already exists -2026-08-09 00:03:32 error: User already exists -2026-08-09 00:03:41 error: User already exists -2026-08-09 00:03:51 error: User already exists -2026-08-12 17:47:20 error: RoomId not found -2026-08-12 17:47:24 error: RoomId not found -2026-08-12 17:47:52 error: RoomId not found -2026-08-12 17:48:43 error: RoomId not found -2026-08-12 17:48:45 error: RoomId not found -2026-08-12 17:48:58 error: RoomId not found -2026-08-12 17:49:24 error: RoomId not found -2026-08-12 17:50:56 error: MongoNetworkError: read ECONNRESET - at Connection.onSocketError (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection.ts:308:18) - at TLSSocket.emit (node:events:521:24) - at emitErrorNT (node:internal/streams/destroy:170:8) - at emitErrorCloseNT (node:internal/streams/destroy:129:3) - at processTicksAndRejections (node:internal/process/task_queues:90:21) -2026-08-12 17:50:58 error: Database connection is not open -2026-08-12 17:51:00 error: Database connection is not open -2026-08-12 17:51:00 error: RoomId not found -2026-08-12 17:51:02 error: Database connection is not open -2026-08-12 17:51:04 error: Database connection is not open -2026-08-12 17:51:06 error: Database connection is not open -2026-08-12 17:51:17 error: MongoPoolClearedError: Connection pool for ac-v00shv2-shard-00-01.eplgdfn.mongodb.net:27017 was cleared because another operation failed with: "read ECONNRESET" - at ConnectionPool.processWaitQueue (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:753:65) - at ConnectionPool.clear (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:476:10) - at updateServers (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:875:21) - at Topology.serverUpdateHandler (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:733:5) - at Server. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:851:66) - at Server.emit (node:events:509:20) - at markServerUnknown (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/server.ts:530:10) - at Server.handleError (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/server.ts:410:9) - at /home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:677:21 - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-12 17:51:17 error: MongoPoolClearedError: Connection pool for ac-v00shv2-shard-00-01.eplgdfn.mongodb.net:27017 was cleared because another operation failed with: "read ECONNRESET" - at ConnectionPool.processWaitQueue (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:753:65) - at ConnectionPool.clear (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:476:10) - at updateServers (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:875:21) - at Topology.serverUpdateHandler (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:733:5) - at Server. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:851:66) - at Server.emit (node:events:509:20) - at markServerUnknown (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/server.ts:530:10) - at Server.handleError (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/server.ts:410:9) - at /home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:677:21 - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-12 17:51:17 error: MongoPoolClearedError: Connection pool for ac-v00shv2-shard-00-01.eplgdfn.mongodb.net:27017 was cleared because another operation failed with: "read ECONNRESET" - at ConnectionPool.processWaitQueue (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:753:65) - at ConnectionPool.clear (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:476:10) - at updateServers (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:875:21) - at Topology.serverUpdateHandler (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:733:5) - at Server. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:851:66) - at Server.emit (node:events:509:20) - at markServerUnknown (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/server.ts:530:10) - at Server.handleError (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/server.ts:410:9) - at /home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:677:21 - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-12 17:51:19 error: Database connection is not open -2026-08-12 17:51:21 error: Database connection is not open -2026-08-12 17:51:23 error: Database connection is not open -2026-08-12 17:51:25 error: Database connection is not open -2026-08-12 17:51:27 error: Database connection is not open -2026-08-12 17:51:29 error: Database connection is not open -2026-08-12 17:51:31 error: Database connection is not open -2026-08-12 17:51:33 error: Database connection is not open -2026-08-12 17:51:35 error: Database connection is not open -2026-08-12 17:52:03 error: Database connection is not open -2026-08-12 17:52:05 error: Database connection is not open -2026-08-12 17:52:07 error: Database connection is not open -2026-08-12 17:52:09 error: Database connection is not open -2026-08-12 17:52:10 error: MongoNetworkTimeoutError: Socket 'secureConnect' timed out after 30456ms (connectTimeoutMS: 30000) - at TLSSocket. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connect.ts:399:11) - at Object.onceWrapper (node:events:630:28) - at TLSSocket.emit (node:events:509:20) - at TLSSocket.Socket._onTimeout (node:net:610:8) - at listOnTimeout (node:internal/timers:605:17) - at processTimers (node:internal/timers:541:7) -2026-08-12 17:52:11 error: Database connection is not open -2026-08-12 17:52:13 error: Database connection is not open -2026-08-12 17:52:15 error: Database connection is not open -2026-08-12 17:52:17 error: Database connection is not open -2026-08-12 17:52:19 error: Database connection is not open -2026-08-12 17:52:20 error: MongoPoolClearedError: Connection pool for ac-v00shv2-shard-00-01.eplgdfn.mongodb.net:27017 was cleared because another operation failed with: "connection to 159.41.206.112:27017 timed out" - at ConnectionPool.processWaitQueue (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:753:65) - at ConnectionPool.clear (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connection_pool.ts:476:10) - at updateServers (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:875:21) - at Topology.serverUpdateHandler (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:733:5) - at Server. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:851:66) - at Server.emit (node:events:509:20) - at markServerUnknown (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/server.ts:530:10) - at Monitor. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/server.ts:185:65) - at Monitor.emit (node:events:509:20) - at onHeartbeatFailed (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/monitor.ts:291:13) -2026-08-12 17:52:21 error: Database connection is not open -2026-08-12 17:52:23 error: Database connection is not open -2026-08-12 17:52:25 error: Database connection is not open -2026-08-12 17:52:27 error: Database connection is not open -2026-08-12 17:52:29 error: Database connection is not open -2026-08-12 17:52:30 error: MongoNetworkError: getaddrinfo EAI_AGAIN ac-v00shv2-shard-00-01.eplgdfn.mongodb.net - at TLSSocket. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connect.ts:395:16) - at Object.onceWrapper (node:events:631:12) - at TLSSocket.emit (node:events:509:20) - at emitErrorNT (node:internal/streams/destroy:170:8) - at emitErrorCloseNT (node:internal/streams/destroy:129:3) - at processTicksAndRejections (node:internal/process/task_queues:90:21) -2026-08-12 17:52:30 error: MongoNetworkError: getaddrinfo EAI_AGAIN ac-v00shv2-shard-00-01.eplgdfn.mongodb.net - at TLSSocket. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connect.ts:395:16) - at Object.onceWrapper (node:events:631:12) - at TLSSocket.emit (node:events:509:20) - at emitErrorNT (node:internal/streams/destroy:170:8) - at emitErrorCloseNT (node:internal/streams/destroy:129:3) - at processTicksAndRejections (node:internal/process/task_queues:90:21) -2026-08-12 17:52:31 error: Database connection is not open -2026-08-12 17:52:33 error: Database connection is not open -2026-08-12 17:52:35 error: Database connection is not open -2026-08-12 17:52:37 error: Database connection is not open -2026-08-12 17:52:39 error: Database connection is not open -2026-08-12 17:52:41 error: Database connection is not open -2026-08-12 17:52:43 error: Database connection is not open -2026-08-12 17:52:45 error: Database connection is not open -2026-08-12 17:52:47 error: Database connection is not open -2026-08-12 17:52:49 error: Database connection is not open -2026-08-12 17:52:51 error: Database connection is not open -2026-08-12 17:52:53 error: Database connection is not open -2026-08-12 17:52:55 error: Database connection is not open -2026-08-12 17:52:57 error: Database connection is not open -2026-08-12 17:52:59 error: Database connection is not open -2026-08-12 17:53:01 error: Database connection is not open -2026-08-12 17:53:03 error: Database connection is not open -2026-08-12 17:53:05 error: Database connection is not open -2026-08-12 17:53:07 error: Database connection is not open -2026-08-12 17:53:09 error: Database connection is not open -2026-08-12 17:53:11 error: Database connection is not open -2026-08-12 17:53:13 error: Database connection is not open -2026-08-12 17:53:15 error: Database connection is not open -2026-08-12 17:53:17 error: Database connection is not open -2026-08-12 17:53:19 error: Database connection is not open -2026-08-12 17:53:21 error: Database connection is not open -2026-08-12 17:53:23 error: Database connection is not open -2026-08-12 17:53:25 error: Database connection is not open -2026-08-12 17:53:27 error: Database connection is not open -2026-08-12 17:53:29 error: Database connection is not open -2026-08-12 17:53:31 error: Database connection is not open -2026-08-12 17:53:33 error: Database connection is not open -2026-08-12 17:53:35 error: Database connection is not open -2026-08-12 17:53:37 error: Database connection is not open -2026-08-12 17:53:39 error: Database connection is not open -2026-08-12 17:53:41 error: Database connection is not open -2026-08-12 17:53:43 error: Database connection is not open -2026-08-12 17:53:45 error: Database connection is not open -2026-08-12 17:53:47 error: Database connection is not open -2026-08-12 17:53:49 error: Database connection is not open -2026-08-12 17:53:51 error: Database connection is not open -2026-08-12 17:53:53 error: Database connection is not open -2026-08-12 17:53:55 error: Database connection is not open -2026-08-12 17:53:57 error: Database connection is not open -2026-08-12 17:53:59 error: Database connection is not open -2026-08-15 14:59:27 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:03:15 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:04:17 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:06:17 error: Room not found -2026-08-15 15:16:08 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:16:10 error: Viewer transport not found -2026-08-15 15:16:10 error: Error: Viewer transport not found - at consume (/home/harshit/CrowdStream/backend/src/handlers/viewer.handler.ts:192:13) - at consumePlainTransportMedia (/home/harshit/CrowdStream/backend/src/recording/recording.ts:33:42) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:163:78) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-08-15 15:16:10 error: Error: Viewer transport not found - at consume (/home/harshit/CrowdStream/backend/src/handlers/viewer.handler.ts:192:13) - at consumePlainTransportMedia (/home/harshit/CrowdStream/backend/src/recording/recording.ts:33:42) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:163:78) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-08-15 15:16:10 error: Error: Viewer transport not found - at consume (/home/harshit/CrowdStream/backend/src/handlers/viewer.handler.ts:192:13) - at consumePlainTransportMedia (/home/harshit/CrowdStream/backend/src/recording/recording.ts:33:42) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:163:78) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-08-15 15:19:01 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:19:03 error: Error: ENOENT: no such file or directory, open '../recording/recording.sdp' - at Object.writeFileSync (node:fs:2406:20) - at generateRecordingSdp (/home/harshit/CrowdStream/backend/src/recording/sdp.ts:83:8) - at consumePlainTransportMedia (/home/harshit/CrowdStream/backend/src/recording/recording.ts:36:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) - at async Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:166:46) -2026-08-15 15:19:03 error: Error: ENOENT: no such file or directory, open '../recording/recording.sdp' - at Object.writeFileSync (node:fs:2406:20) - at generateRecordingSdp (/home/harshit/CrowdStream/backend/src/recording/sdp.ts:83:8) - at consumePlainTransportMedia (/home/harshit/CrowdStream/backend/src/recording/recording.ts:36:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) - at async Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:166:46) -2026-08-15 15:19:03 error: Error: ENOENT: no such file or directory, open '../recording/recording.sdp' - at Object.writeFileSync (node:fs:2406:20) - at generateRecordingSdp (/home/harshit/CrowdStream/backend/src/recording/sdp.ts:83:8) - at consumePlainTransportMedia (/home/harshit/CrowdStream/backend/src/recording/recording.ts:36:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) - at async Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:166:46) -2026-08-15 15:21:47 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:24:15 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:31:55 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:33:55 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:35:49 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:39:25 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:07 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:22 error: Room not found -2026-08-15 15:40:22 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:101:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:22 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:113:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:24 error: Room not found -2026-08-15 15:40:24 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:101:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:24 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:113:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:32 error: Room not found -2026-08-15 15:40:32 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:101:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:32 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:113:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:32 error: Room not found -2026-08-15 15:40:32 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:101:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:32 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:113:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:33 error: Room not found -2026-08-15 15:40:33 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:101:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:33 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:113:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:40:39 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:42:14 error: RoomId not found -2026-08-15 15:42:26 error: Room not found -2026-08-15 15:42:26 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:101:13) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:42:26 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:113:11) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:42:29) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 15:42:33 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 16:39:28 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 16:39:46 error: TypeError: Cannot read properties of undefined (reading 'audioPort') - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:229:39) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 16:44:14 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 16:55:28 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 16:56:08 error: Room not found -2026-08-15 17:01:44 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 17:07:03 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 17:09:47 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 17:12:46 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 17:15:16 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-15 17:24:11 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 21:36:45 error: RoomId not found -2026-08-17 21:37:44 error: MongoServerSelectionError: Server selection timed out after 30000 ms - at Topology.selectServer (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:635:30) - at async Topology._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:467:22) - at async Topology.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:404:7) - at async topologyConnect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:695:9) - at async MongoClient._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:707:7) - at async MongoClient.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:619:7) - at async NativeConnection.createClient (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/drivers/node-mongodb-native/connection.js:351:3) - at async NativeConnection.openUri (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/connection.js:1098:5) - at async connectToDataBase (/home/harshit/CrowdStream/backend/src/database/index.ts:37:28) -2026-08-17 21:38:32 error: MongoServerSelectionError: Server selection timed out after 30000 ms - at Topology.selectServer (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:635:30) - at async Topology._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:467:22) - at async Topology.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:404:7) - at async topologyConnect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:695:9) - at async MongoClient._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:707:7) - at async MongoClient.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:619:7) - at async NativeConnection.createClient (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/drivers/node-mongodb-native/connection.js:351:3) - at async NativeConnection.openUri (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/connection.js:1098:5) - at async connectToDataBase (/home/harshit/CrowdStream/backend/src/database/index.ts:37:28) -2026-08-17 21:39:40 error: RoomId not found -2026-08-17 21:40:39 error: RoomId not found -2026-08-17 21:46:53 error: RoomId not found -2026-08-17 21:48:25 error: MongoServerSelectionError: Server selection timed out after 30000 ms - at Topology.selectServer (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:635:30) - at async Topology._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:467:22) - at async Topology.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:404:7) - at async topologyConnect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:695:9) - at async MongoClient._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:707:7) - at async MongoClient.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:619:7) - at async NativeConnection.createClient (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/drivers/node-mongodb-native/connection.js:351:3) - at async NativeConnection.openUri (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/connection.js:1098:5) - at async connectToDataBase (/home/harshit/CrowdStream/backend/src/database/index.ts:37:28) -2026-08-17 21:48:59 error: MongoNetworkTimeoutError: Socket 'secureConnect' timed out after 32150ms (connectTimeoutMS: 30000) - at TLSSocket. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connect.ts:399:11) - at Object.onceWrapper (node:events:630:28) - at TLSSocket.emit (node:events:509:20) - at TLSSocket.Socket._onTimeout (node:net:610:8) - at listOnTimeout (node:internal/timers:605:17) - at processTimers (node:internal/timers:541:7) -2026-08-17 21:49:59 error: RoomId not found -2026-08-17 21:51:05 error: RoomId not found -2026-08-17 21:51:19 error: RoomId not found -2026-08-17 21:51:39 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a48c735512699d8407ab848" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 21:55:59 error: MongoServerSelectionError: Server selection timed out after 30000 ms - at Topology.selectServer (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:635:30) - at async Topology._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:467:22) - at async Topology.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:404:7) - at async topologyConnect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:695:9) - at async MongoClient._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:707:7) - at async MongoClient.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:619:7) - at async NativeConnection.createClient (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/drivers/node-mongodb-native/connection.js:351:3) - at async NativeConnection.openUri (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/connection.js:1098:5) - at async connectToDataBase (/home/harshit/CrowdStream/backend/src/database/index.ts:37:28) -2026-08-17 21:56:37 error: MongoNetworkTimeoutError: Socket 'secureConnect' timed out after 30083ms (connectTimeoutMS: 30000) - at TLSSocket. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connect.ts:399:11) - at Object.onceWrapper (node:events:630:28) - at TLSSocket.emit (node:events:509:20) - at TLSSocket.Socket._onTimeout (node:net:610:8) - at listOnTimeout (node:internal/timers:605:17) - at processTimers (node:internal/timers:541:7) -2026-08-17 21:57:10 error: MongoNetworkTimeoutError: Socket 'secureConnect' timed out after 30363ms (connectTimeoutMS: 30000) - at TLSSocket. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connect.ts:399:11) - at Object.onceWrapper (node:events:630:28) - at TLSSocket.emit (node:events:509:20) - at TLSSocket.Socket._onTimeout (node:net:610:8) - at listOnTimeout (node:internal/timers:605:17) - at processTimers (node:internal/timers:541:7) -2026-08-17 21:57:46 error: MongoNetworkTimeoutError: Socket 'secureConnect' timed out after 32190ms (connectTimeoutMS: 30000) - at TLSSocket. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connect.ts:399:11) - at Object.onceWrapper (node:events:630:28) - at TLSSocket.emit (node:events:509:20) - at TLSSocket.Socket._onTimeout (node:net:610:8) - at listOnTimeout (node:internal/timers:605:17) - at processTimers (node:internal/timers:541:7) -2026-08-17 22:02:25 error: MongoNetworkTimeoutError: Socket 'secureConnect' timed out after 31608ms (connectTimeoutMS: 30000) - at TLSSocket. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connect.ts:399:11) - at Object.onceWrapper (node:events:630:28) - at TLSSocket.emit (node:events:509:20) - at TLSSocket.Socket._onTimeout (node:net:610:8) - at listOnTimeout (node:internal/timers:605:17) - at processTimers (node:internal/timers:541:7) -2026-08-17 22:02:56 error: MongoServerSelectionError: Server selection timed out after 30000 ms - at Topology.selectServer (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:635:30) - at async Topology._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:467:22) - at async Topology.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:404:7) - at async topologyConnect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:695:9) - at async MongoClient._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:707:7) - at async MongoClient.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:619:7) - at async NativeConnection.createClient (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/drivers/node-mongodb-native/connection.js:351:3) - at async NativeConnection.openUri (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/connection.js:1098:5) - at async connectToDataBase (/home/harshit/CrowdStream/backend/src/database/index.ts:37:28) -2026-08-17 22:03:33 error: MongoNetworkTimeoutError: Socket 'secureConnect' timed out after 32100ms (connectTimeoutMS: 30000) - at TLSSocket. (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/cmap/connect.ts:399:11) - at Object.onceWrapper (node:events:630:28) - at TLSSocket.emit (node:events:509:20) - at TLSSocket.Socket._onTimeout (node:net:610:8) - at listOnTimeout (node:internal/timers:605:17) - at processTimers (node:internal/timers:541:7) -2026-08-17 22:04:28 error: MongoServerSelectionError: Server selection timed out after 30000 ms - at Topology.selectServer (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:635:30) - at async Topology._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:467:22) - at async Topology.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:404:7) - at async topologyConnect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:695:9) - at async MongoClient._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:707:7) - at async MongoClient.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:619:7) - at async NativeConnection.createClient (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/drivers/node-mongodb-native/connection.js:351:3) - at async NativeConnection.openUri (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/connection.js:1098:5) - at async connectToDataBase (/home/harshit/CrowdStream/backend/src/database/index.ts:37:28) -2026-08-17 22:05:06 error: MongoServerSelectionError: Server selection timed out after 30000 ms - at Topology.selectServer (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:635:30) - at async Topology._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:467:22) - at async Topology.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/sdam/topology.ts:404:7) - at async topologyConnect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:695:9) - at async MongoClient._connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:707:7) - at async MongoClient.connect (/home/harshit/CrowdStream/backend/node_modules/mongodb/src/mongo_client.ts:619:7) - at async NativeConnection.createClient (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/drivers/node-mongodb-native/connection.js:351:3) - at async NativeConnection.openUri (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/connection.js:1098:5) - at async connectToDataBase (/home/harshit/CrowdStream/backend/src/database/index.ts:37:28) -2026-08-17 22:09:55 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a48c735512699d8407ab848" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 22:10:23 error: RoomId not found -2026-08-17 22:14:45 error: RoomId not found -2026-08-17 22:15:14 error: RoomId not found -2026-08-17 22:15:15 error: RoomId not found -2026-08-17 22:15:29 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a48c735512699d8407ab848" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 22:15:40 error: Room not found -2026-08-17 22:15:40 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:101:13) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:207:27) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-08-17 22:15:40 error: Error: Room not found - at getRoom (/home/harshit/CrowdStream/backend/src/rooms/room.store.ts:113:11) - at Socket. (/home/harshit/CrowdStream/backend/src/utils/socket.util.ts:207:27) - at Socket.emit (node:events:509:20) - at Socket.emitUntyped (/home/harshit/CrowdStream/backend/node_modules/socket.io/dist/typed-events.js:69:22) - at /home/harshit/CrowdStream/backend/node_modules/socket.io/dist/socket.js:697:39 - at processTicksAndRejections (node:internal/process/task_queues:85:11) -2026-08-17 22:15:49 error: Room not found -2026-08-17 22:46:29 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 22:47:29 error: Room not found -2026-08-17 22:48:30 error: Room not found -2026-08-17 22:54:35 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a48c735512699d8407ab848" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 22:57:28 error: Room not found -2026-08-17 22:57:49 error: Room not found -2026-08-17 22:58:22 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 22:58:27 error: Validation error Invalid recording id -2026-08-17 22:58:40 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 22:58:47 error: Validation error Invalid recording id -2026-08-17 22:59:56 error: RoomId not found -2026-08-17 22:59:57 error: Room not found -2026-08-17 23:00:16 error: Room not found -2026-08-17 23:00:56 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 23:01:06 error: Validation error Invalid recording id -2026-08-17 23:04:26 error: Room not found -2026-08-17 23:04:41 error: Room not found -2026-08-17 23:05:19 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a80314bbf43a568592e69db" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 23:05:24 error: Recording not found error Invalid recording id -2026-08-17 23:06:41 error: Room not found -2026-08-17 23:07:03 error: RoomId not found -2026-08-17 23:07:20 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a48c735512699d8407ab848" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 23:07:48 error: Recording not found error Invalid recording id -2026-08-17 23:09:17 error: RoomId not found -2026-08-17 23:09:18 error: RoomId not found -2026-08-17 23:09:30 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a48c735512699d8407ab848" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) -2026-08-17 23:09:37 error: Recording not found error Invalid recording id -2026-08-17 23:11:45 error: RoomId not found -2026-08-17 23:11:46 error: RoomId not found -2026-08-17 23:11:59 error: ObjectParameterError: Parameter "filter" to updateOne() must be an object, got "6a48c735512699d8407ab848" (type string) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4405:17) - at model.Query.Query.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/query.js:4308:10) - at _update (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4173:16) - at model.updateOne (/home/harshit/CrowdStream/backend/node_modules/mongoose/lib/model.js:4104:10) - at Socket. (/home/harshit/CrowdStream/backend/src/handlers/registerViewer.handler.ts:234:19) - at processTicksAndRejections (node:internal/process/task_queues:104:5) diff --git a/backend/src/controllers/auth.controller.ts b/backend/src/controllers/auth.controller.ts index 33402f0..1d78598 100644 --- a/backend/src/controllers/auth.controller.ts +++ b/backend/src/controllers/auth.controller.ts @@ -20,6 +20,8 @@ export const me = async (request: Request, response: Response) => { message: "User not found" }); } + + logger.info('[USER]', user) return response.status(200).json({ success: true, diff --git a/backend/src/mediasoup/transport.ts b/backend/src/mediasoup/transport.ts index 45d5b10..4dcb685 100644 --- a/backend/src/mediasoup/transport.ts +++ b/backend/src/mediasoup/transport.ts @@ -64,7 +64,7 @@ const createWebRtcTransport = async ( transport.on("icestatechange", (iceState) => { const info = transportRegistry.get(transport.id); - logger.info("Transport ICE state changed", { + logger.info(`Transport ICE state changed: ${iceState}`, { event: "TRANSPORT_ICE_STATE_CHANGE", transportId: transport.id, roomId: info?.roomId, diff --git a/backend/src/utils/disconnect.util.ts b/backend/src/utils/disconnect.util.ts index 78845d9..227a56d 100644 --- a/backend/src/utils/disconnect.util.ts +++ b/backend/src/utils/disconnect.util.ts @@ -33,7 +33,7 @@ export const handleDisconnect = async(socket: Socket) => { removeViewer(roomId,socket.id) await dbCleanUp(socket.id) }else if(!broadcaster || !viewer){ - logger.warn('IDK') + logger.warn('Not a broadcaster not a viewer') } } diff --git a/backend/src/utils/roomCordinator.ts b/backend/src/utils/roomCordinator.ts index 900ecdc..b70ff7c 100644 --- a/backend/src/utils/roomCordinator.ts +++ b/backend/src/utils/roomCordinator.ts @@ -1,4 +1,3 @@ -import { Server } from "socket.io"; import { RedisRoom } from "../types/mediasoup"; import logger from "./logging"; import { redis } from "./redis.util"; diff --git a/backend/src/utils/socket.util.ts b/backend/src/utils/socket.util.ts index 6277d07..43532a4 100644 --- a/backend/src/utils/socket.util.ts +++ b/backend/src/utils/socket.util.ts @@ -141,6 +141,7 @@ io.on("connection", (socket) => { }) socket.on("disconnect", async (reason) => { + logger.info('[REASON]', reason) logger.info(`User disconnected ${socket.id} beacuse of ${reason}`) handleDisconnect(socket) await stopFfmpegRecording(socket.id) diff --git a/frontend/src/components/viewer/ViewerVideo.tsx b/frontend/src/components/viewer/ViewerVideo.tsx index 7fddf87..fbacd5e 100644 --- a/frontend/src/components/viewer/ViewerVideo.tsx +++ b/frontend/src/components/viewer/ViewerVideo.tsx @@ -32,6 +32,12 @@ export default function ViewerVideo({ playsInline controls={false} className="h-full w-full object-cover" + onPlaying={() => { + if (!window.__csFirstFrameAt) { + window.__csFirstFrameAt = Date.now(); + console.log("[LOAD TEST] First video frame playing"); + } + }} /> {!connected && ( diff --git a/frontend/src/pages/Broadcaster.tsx b/frontend/src/pages/Broadcaster.tsx index 2558300..c7e9dfb 100644 --- a/frontend/src/pages/Broadcaster.tsx +++ b/frontend/src/pages/Broadcaster.tsx @@ -19,6 +19,13 @@ import SystemLogs from "../components/broadcaster/SystemLogs"; import LiveChat from "../components/broadcaster/LiveChat"; import ReactionOverlay from "../components/reactions/ReactionOverlay"; +declare global { + interface Window { + __csRoomId?: string; + __csLiveAt?: number; + } +} + interface Log { message: string; timestamp: Date; @@ -58,6 +65,7 @@ export default function BroadcasterPage() { const room = await broadcaster.createRoom(); setRoomId(room.id); + window.__csRoomId = room.id log("Fetching RTP capabilities..."); @@ -84,6 +92,7 @@ export default function BroadcasterPage() { await broadcaster.startProducing(stream); setIsLive(true); + window.__csLiveAt = Date.now(); log("Broadcast started successfully."); } catch (err: any) { @@ -258,6 +267,7 @@ export default function BroadcasterPage() { {!isLive ? (