File tree Expand file tree Collapse file tree 2 files changed +0
-2
lines changed
backend/communication-service/src/handlers Expand file tree Collapse file tree 2 files changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ export const handleWebsocketCommunicationEvents = (socket: Socket) => {
9
9
CommunicationEvents . JOIN ,
10
10
async ( { roomId, username } : { roomId : string ; username : string } ) => {
11
11
connectUser ( username ) ;
12
- console . log ( username , roomId ) ;
13
12
const room = io . sockets . adapter . rooms . get ( roomId ) ;
14
13
if ( room ?. has ( socket . id ) ) {
15
14
socket . emit ( CommunicationEvents . ALREADY_JOINED ) ;
Original file line number Diff line number Diff line change @@ -260,7 +260,6 @@ const CollabProvider: React.FC<{ children?: React.ReactNode }> = (props) => {
260
260
261
261
if ( ! collabSocket . hasListeners ( CollabEvents . SOCKET_DISCONNECT ) ) {
262
262
collabSocket . on ( CollabEvents . SOCKET_DISCONNECT , ( reason ) => {
263
- console . log ( reason ) ;
264
263
if (
265
264
reason !== CollabEvents . SOCKET_CLIENT_DISCONNECT &&
266
265
reason !== CollabEvents . SOCKET_SERVER_DISCONNECT
You can’t perform that action at this time.
0 commit comments