@@ -189,9 +189,9 @@ export class CanvasEngine {
189
189
this . sendCursorMove ( x , y ) ;
190
190
} ) ;
191
191
if ( ! this . isStandalone && this . token && this . roomId ) {
192
- console . log ( "✅Connecting to WebSocket…" ) ;
192
+ // console.log("✅Connecting to WebSocket…");
193
193
this . connectWebSocket ( ) ;
194
- console . log ( "✅Connected to WebSocket…" ) ;
194
+ // console.log("✅Connected to WebSocket…");
195
195
}
196
196
}
197
197
@@ -201,7 +201,7 @@ export class CanvasEngine {
201
201
( this . socket . readyState === WebSocket . CONNECTING ||
202
202
this . socket . readyState === WebSocket . OPEN )
203
203
) {
204
- console . log ( "Connection already exists, not creating a new one" ) ;
204
+ // console.log("Connection already exists, not creating a new one");
205
205
return ;
206
206
}
207
207
@@ -226,7 +226,7 @@ export class CanvasEngine {
226
226
const data : WebSocketMessage = JSON . parse ( event . data ) ;
227
227
if ( data . type === WsDataType . CONNECTION_READY ) {
228
228
this . connectionId = data . connectionId ;
229
- console . log ( `Assigned connection ID: ${ this . connectionId } ` ) ;
229
+ // console.log(`Assigned connection ID: ${this.connectionId}`);
230
230
}
231
231
232
232
switch ( data . type ) {
@@ -239,7 +239,7 @@ export class CanvasEngine {
239
239
connectionId : data . connectionId ,
240
240
connected : true ,
241
241
} ) ;
242
- console . log ( `🔁 Another tab detected: ${ data . connectionId } ` ) ;
242
+ // console.log(`🔁 Another tab detected: ${data.connectionId}`);
243
243
}
244
244
if ( data . participants && Array . isArray ( data . participants ) ) {
245
245
this . participants = data . participants ;
0 commit comments