routing: log preimage when it's failed to be saved to db

This commit is contained in:
yyforyongyu 2023-10-20 07:13:22 +08:00
parent 8f5c6e8367
commit 7ccb77269d
No known key found for this signature in database
GPG Key ID: 9BCD95C4FF296868

View File

@ -558,7 +558,9 @@ func (p *paymentLifecycle) collectResult(attempt *channeldb.HTLCAttempt) (
},
)
if err != nil {
log.Errorf("Unable to settle payment attempt: %v", err)
log.Errorf("Error settling attempt %v for payment %v with "+
"preimage %v: %v", attempt.AttemptID, p.identifier,
result.Preimage, err)
// We won't mark the attempt as failed since we already have
// the preimage.