removed console logs from frontend and a logs from locationService

This commit is contained in:
jackiettran
2025-11-26 15:01:00 -05:00
parent 8b10103ae4
commit fab79e64ee
6 changed files with 344 additions and 275 deletions

View File

@@ -52,12 +52,9 @@ class SocketService {
*/
connect(): Socket {
if (this.socket?.connected) {
console.log("[Socket] Already connected");
return this.socket;
}
console.log("[Socket] Connecting to server...");
this.socket = io(this.getSocketUrl(), {
withCredentials: true, // Send cookies for authentication
transports: ["websocket", "polling"], // Try WebSocket first, fallback to polling
@@ -71,23 +68,15 @@ class SocketService {
// Connection event handlers
this.socket.on("connect", () => {
console.log("[Socket] Connected successfully", {
socketId: this.socket?.id,
});
this.reconnectAttempts = 0;
this.notifyConnectionListeners(true);
});
this.socket.on("disconnect", (reason) => {
console.log("[Socket] Disconnected", { reason });
this.notifyConnectionListeners(false);
});
this.socket.on("connect_error", (error) => {
console.error("[Socket] Connection error", {
error: error.message,
attempt: this.reconnectAttempts + 1,
});
this.reconnectAttempts++;
if (this.reconnectAttempts >= this.maxReconnectAttempts) {
@@ -96,10 +85,6 @@ class SocketService {
}
});
this.socket.on("error", (error) => {
console.error("[Socket] Socket error", error);
});
return this.socket;
}
@@ -108,7 +93,6 @@ class SocketService {
*/
disconnect(): void {
if (this.socket) {
console.log("[Socket] Disconnecting...");
this.socket.disconnect();
this.socket = null;
this.notifyConnectionListeners(false);
@@ -138,7 +122,6 @@ class SocketService {
return;
}
console.log("[Socket] Joining conversation", { otherUserId });
this.socket.emit("join_conversation", { otherUserId });
}
@@ -150,7 +133,6 @@ class SocketService {
return;
}
console.log("[Socket] Leaving conversation", { otherUserId });
this.socket.emit("leave_conversation", { otherUserId });
}