Skip to content

Commit 189d4a0

Browse files
committed
Changed .worker.ts console.log to console.debug
1 parent c01a0fc commit 189d4a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/web/src/worker/sync/SharedSyncImplementation.worker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ _self.onconnect = function (event: MessageEvent<string>) {
2020
port.addEventListener('message', (event) => {
2121
const payload = event.data as ManualSharedSyncPayload;
2222
if (payload?.event == SharedSyncClientEvent.CLOSE_CLIENT) {
23-
console.log('closing shared for port', port);
23+
console.debug('closing shared for port', port);
2424
sharedSyncImplementation.removePort(port);
2525
}
2626
});

0 commit comments

Comments
 (0)