Merge pull request #3978 from bhandras/hotfix

invoices: fix log messages
This commit is contained in:
Johan T. Halseth 2020-02-04 12:56:18 +01:00 committed by GitHub
commit 80c5232d4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

@ -108,7 +108,7 @@ func (ew *InvoiceExpiryWatcher) prepareInvoice(
paymentHash lntypes.Hash, invoice *channeldb.Invoice) *invoiceExpiry {
if invoice.State != channeldb.ContractOpen {
log.Debugf("Invoice not added to expiry watcher: %v", invoice)
log.Debugf("Invoice not added to expiry watcher: %v", paymentHash)
return nil
}
@ -139,7 +139,7 @@ func (ew *InvoiceExpiryWatcher) AddInvoices(
}
if len(invoicesWithExpiry) > 0 {
log.Debugf("Added %v invoices to the expiry watcher: %v",
log.Debugf("Added %d invoices to the expiry watcher",
len(invoicesWithExpiry))
select {
case ew.newInvoices <- invoicesWithExpiry:

@ -198,7 +198,8 @@ func (i *InvoiceRegistry) populateExpiryWatcher() error {
return err
}
log.Debugf("Adding %v pending invoices to the expiry watcher")
log.Debugf("Adding %d pending invoices to the expiry watcher",
len(pendingInvoices))
i.expiryWatcher.AddInvoices(pendingInvoices)
return nil
}