XXX add ping fail debug log

This commit is contained in:
Sebastian Mark 2024-11-21 19:38:13 +01:00
parent 55f7ecae6b
commit c91cb73e21

View file

@ -16,12 +16,10 @@ func RemoveStaleClients() {
for range ticker.C {
mu.Lock()
for _, client := range Clients {
ping := sendPing(client)
stale := isStale(client)
if !ping || stale {
if !sendPing(client) || isStale(client) {
client.Conn.Close()
delete(Clients, client.Conn.LocalAddr())
helper.Logger.Info("Removed stale client", "host", client.RealIP, "lastPong", client.LastPong.Format("RFC3339"))
helper.Logger.Info("Removed stale client", "host", client.RealIP, "lastPong", client.LastPong)
}
}
mu.Unlock()
@ -33,6 +31,7 @@ func sendPing(client *models.WebsocketClient) bool {
err := client.Conn.WriteMessage(websocket.PingMessage, nil)
if err != nil {
helper.Logger.Debug("ping failed", "host", client.RealIP)
return false
}