feat: add number of connected clients to log output

This commit is contained in:
Sebastian Mark 2024-10-24 22:48:45 +02:00
parent 26ca4d8b93
commit 13d7cd0919
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ func HandleConnections(w http.ResponseWriter, r *http.Request) {
}
defer ws.Close()
log.Printf("Client connected from %v", ws.NetConn().RemoteAddr())
log.Printf("Client connected from %v (total: %d)", ws.NetConn().RemoteAddr(), len(Clients)+1)
// Register the new client
mu.Lock()