format last pong timestamp in log msg
This commit is contained in:
parent
994526a30d
commit
8b7e8350a0
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ func RemoveStaleClients() {
|
|||
if isStale(client) {
|
||||
client.Conn.Close()
|
||||
delete(Clients, client.Conn.LocalAddr())
|
||||
helper.Logger.Info("Removed stale client", "host", client.RealIP, "lastPong", client.LastPong)
|
||||
helper.Logger.Info("Removed stale client", "host", client.RealIP, "lastPong", client.LastPong.Format(time.RFC3339))
|
||||
}
|
||||
}
|
||||
mu.Unlock()
|
||||
|
|
Loading…
Reference in a new issue