X-Git-Url: https://git.r.bdr.sh/rbdr/mobius/blobdiff_plain/ea2027a385e006ac5186e38f7f391dc20df338e7..382c53d3b8ea8db13a0bac08cfdbd12bfae62ab4:/hotline/client.go diff --git a/hotline/client.go b/hotline/client.go index e812d1d..3353095 100644 --- a/hotline/client.go +++ b/hotline/client.go @@ -625,7 +625,10 @@ func (c *Client) HandleTransaction(ctx context.Context, t *Transaction) error { "IsReply", t.IsReply, "type", binary.BigEndian.Uint16(t.Type), ) - outT, _ := handler(ctx, c, t) + outT, err := handler(ctx, c, t) + if err != nil { + c.Logger.Error("error handling transaction", "err", err) + } for _, t := range outT { if err := c.Send(t); err != nil { return err