aboutsummaryrefslogtreecommitdiff
path: root/hotline/client.go
diff options
context:
space:
mode:
authorJeff Halter <868228+jhalter@users.noreply.github.com>2023-04-19 16:55:16 -0700
committerJeff Halter <868228+jhalter@users.noreply.github.com>2023-04-19 16:55:16 -0700
commit22c5767f56b55b0327d9ea75a964abf95c684794 (patch)
tree8c3da5a089b0cee9c194f5973d75d79c0bf2ca36 /hotline/client.go
parentf85c2d086919ca24cea8608538594a2f8cc25fd8 (diff)
Demote keepalive ping log level
Diffstat (limited to 'hotline/client.go')
-rw-r--r--hotline/client.go2
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")
}
}