turn off debug msg

This commit is contained in:
C. Fuhrman 2025-01-26 13:25:29 -05:00
parent bc0d2b1f14
commit e51551ec9b

View file

@ -21,7 +21,7 @@ class WebSocketService {
private socket: Socket | null = null; private socket: Socket | null = null;
connect(backendUrl: string): Socket { connect(backendUrl: string): Socket {
console.log(`WebSocketService.connect('${backendUrl}')`); // console.log(`WebSocketService.connect('${backendUrl}')`);
// // Ensure the URL uses wss: if the URL starts with https: // // Ensure the URL uses wss: if the URL starts with https:
// const protocol = backendUrl.startsWith('https:') ? 'wss:' : 'ws:'; // const protocol = backendUrl.startsWith('https:') ? 'wss:' : 'ws:';