diff options
| author | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2023-04-19 16:55:16 -0700 |
|---|---|---|
| committer | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2023-04-19 16:55:16 -0700 |
| commit | 22c5767f56b55b0327d9ea75a964abf95c684794 (patch) | |
| tree | 8c3da5a089b0cee9c194f5973d75d79c0bf2ca36 /hotline | |
| parent | f85c2d086919ca24cea8608538594a2f8cc25fd8 (diff) | |
Demote keepalive ping log level
Diffstat (limited to 'hotline')
| -rw-r--r-- | hotline/client.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hotline/client.go b/hotline/client.go index 12e3167..fa204e2 100644 --- a/hotline/client.go +++ b/hotline/client.go @@ -549,7 +549,7 @@ func (c *Client) keepalive() error { for { time.Sleep(keepaliveInterval) _ = c.Send(*NewTransaction(TranKeepAlive, nil)) - c.Logger.Infow("Sent keepalive ping") + c.Logger.Debugw("Sent keepalive ping") } } |