diff options
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) |