invoices: fix log messages

This commit fixes incorrect log messages.
This commit is contained in:
Andras Banki-Horvath 2020-02-03 14:24:22 +01:00
parent ab59f47a0b
commit e6561ca86d
2 changed files with 4 additions and 3 deletions

View File

@ -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:

View File

@ -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
}