fixup! add log message when removing stale client
This commit is contained in:
parent
0b6b680cce
commit
d0c3f263c1
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ func RemoveStaleClients() {
|
||||||
if !sendPing(client) || isStale(client) {
|
if !sendPing(client) || isStale(client) {
|
||||||
client.Conn.Close()
|
client.Conn.Close()
|
||||||
delete(Clients, client.Conn.LocalAddr())
|
delete(Clients, client.Conn.LocalAddr())
|
||||||
helper.Logger.Info("Removed stale client", "host", client.RealIP, "clients", len(Clients))
|
helper.Logger.Info("Removed stale client", "host", client.RealIP)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
mu.Unlock()
|
mu.Unlock()
|
||||||
|
|
Loading…
Reference in a new issue