From 0da28a1fe47ffc60e40aeca9dddd7ab37e52a999 Mon Sep 17 00:00:00 2001 From: Jeff Halter <868228+jhalter@users.noreply.github.com> Date: Thu, 23 Jun 2022 15:35:45 -0700 Subject: Improve logging readability --- hotline/client.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'hotline/client.go') diff --git a/hotline/client.go b/hotline/client.go index 3a6584a..e5b396b 100644 --- a/hotline/client.go +++ b/hotline/client.go @@ -674,10 +674,7 @@ func (c *Client) HandleTransaction(t *Transaction) error { } requestNum := binary.BigEndian.Uint16(t.Type) - c.Logger.Infow( - "Received Transaction", - "RequestType", requestNum, - ) + c.Logger.Debugw("Received Transaction", "RequestType", requestNum) if handler, ok := c.Handlers[requestNum]; ok { outT, _ := handler.Handle(c, t) -- cgit