From 49b5a20fbf95defae04c617b237b67322bfd115e Mon Sep 17 00:00:00 2001 From: kiwiidb Date: Mon, 11 Sep 2023 16:13:51 +0200 Subject: [PATCH] remove spurious log line --- service.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/service.go b/service.go index 4732dc9..c0f786d 100644 --- a/service.go +++ b/service.go @@ -352,11 +352,6 @@ func (svc *Service) ProcessInvoice(ctx context.Context, invoice *lnrpc.Invoice) }).Info("published invoice") return svc.AddLastPublishedInvoice(ctx, invoice) } - logrus. - WithField("payment_hash", hex.EncodeToString(invoice.RHash)). - WithField("state", invoice.State). - WithField("keysend", invoice.IsKeysend). - Info("not publishing invoice") return nil }