We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb2519a commit cfef400Copy full SHA for cfef400
worker/worker-channel.js
@@ -59,9 +59,7 @@ async function setupWorkerChannel() {
59
workerInstallPromise = pingWorkerForClientId();
60
61
workerClientId = await workerInstallPromise;
62
-
63
- if (workerClientId) console.debug('[Client] Found client ID:', workerClientId);
64
+
65
workerInstallPromise = null;
66
67
@@ -71,9 +69,7 @@ async function setupWorkerChannel() {
71
69
72
70
// add worker channel listener
73
workerChannel.addEventListener('message', async (event) => {
74
75
- console.debug('[Client] Message from worker', event);
76
77
// if message is for current client
78
if (event.data.toClient === workerClientId) {
79
0 commit comments