refactor: Remove unnecessary console.log statements in terminal.blade.php

This commit is contained in:
Andras Bacsai 2024-09-18 12:54:31 +02:00
parent 2e56edd939
commit 40e844fab4

View file

@ -74,10 +74,8 @@ function initializeWebSocket() {
connectionString.protocol = predefined.protocol
}
console.log(connectionString)
const url =
`${connectionString.protocol}://${connectionString.host}${connectionString.port}${connectionString.path}`
console.log(url)
socket = new WebSocket(url);
socket.onmessage = handleSocketMessage;