From 99c1ef6210c1485398f478ac5444a25099b5b065 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Sat, 14 Jan 2017 18:18:08 -0800 Subject: [PATCH] lnd: add additional logging statement on payment recv --- invoiceregistry.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/invoiceregistry.go b/invoiceregistry.go index 89dfbdae..0bd956bc 100644 --- a/invoiceregistry.go +++ b/invoiceregistry.go @@ -151,6 +151,8 @@ func (i *invoiceRegistry) SettleInvoice(rHash chainhash.Hash) error { return } + ltndLog.Infof("Payment received: %v", spew.Sdump(invoice)) + i.notifyClients(invoice, true) }()