File tree Expand file tree Collapse file tree 2 files changed +0
-2
lines changed
Expand file tree Collapse file tree 2 files changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,6 @@ if (typeof SharedWorkerGlobalScope !== 'undefined') {
9797 const _self : SharedWorkerGlobalScope = self as any ;
9898 _self . onconnect = function ( event : MessageEvent < string > ) {
9999 const port = event . ports [ 0 ] ;
100- console . debug ( 'Exposing shared db on port' , port ) ;
101100 Comlink . expose ( openDBShared , port ) ;
102101 } ;
103102} else {
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ _self.onconnect = function (event: MessageEvent<string>) {
2222 port . addEventListener ( 'message' , ( event ) => {
2323 const payload = event . data as ManualSharedSyncPayload ;
2424 if ( payload ?. event == SharedSyncClientEvent . CLOSE_CLIENT ) {
25- console . debug ( 'closing shared for port' , port ) ;
2625 sharedSyncImplementation . removePort ( port ) ;
2726 }
2827 } ) ;
You can’t perform that action at this time.
0 commit comments