diff options
| author | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2022-06-23 15:35:45 -0700 |
|---|---|---|
| committer | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2022-06-23 15:35:45 -0700 |
| commit | 0da28a1fe47ffc60e40aeca9dddd7ab37e52a999 (patch) | |
| tree | 2e7f29ce2a78632ba263d9ea351d9750a31be622 /hotline/client.go | |
| parent | c6a3fa2cdbf7eb78964a5df7622482cdd8782d74 (diff) | |
Improve logging readability
Diffstat (limited to 'hotline/client.go')
| -rw-r--r-- | hotline/client.go | 5 |
1 files changed, 1 insertions, 4 deletions
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) |