mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-28 06:32:18 +02:00
multi: improve logging
This commit is contained in:
@@ -2824,7 +2824,8 @@ func (c *ChannelArbitrator) channelAttendant(bestHeight int32,
|
|||||||
case beat := <-c.BlockbeatChan:
|
case beat := <-c.BlockbeatChan:
|
||||||
bestHeight = beat.Height()
|
bestHeight = beat.Height()
|
||||||
|
|
||||||
log.Debugf("ChannelArbitrator(%v): new block height=%v",
|
log.Debugf("ChannelArbitrator(%v): received new "+
|
||||||
|
"block: height=%v, processing...",
|
||||||
c.cfg.ChanPoint, bestHeight)
|
c.cfg.ChanPoint, bestHeight)
|
||||||
|
|
||||||
err := c.handleBlockbeat(beat)
|
err := c.handleBlockbeat(beat)
|
||||||
|
@@ -2052,6 +2052,9 @@ func (l *channelLink) cleanupSpuriousResponse(pkt *htlcPacket) {
|
|||||||
func (l *channelLink) handleUpstreamMsg(ctx context.Context,
|
func (l *channelLink) handleUpstreamMsg(ctx context.Context,
|
||||||
msg lnwire.Message) {
|
msg lnwire.Message) {
|
||||||
|
|
||||||
|
l.log.Tracef("receive upstream msg %v, handling now... ", msg.MsgType())
|
||||||
|
defer l.log.Tracef("handled upstream msg %v", msg.MsgType())
|
||||||
|
|
||||||
// First check if the message is an update and we are capable of
|
// First check if the message is an update and we are capable of
|
||||||
// receiving updates right now.
|
// receiving updates right now.
|
||||||
if msg.MsgType().IsChannelUpdate() && !l.quiescer.CanRecvUpdates() {
|
if msg.MsgType().IsChannelUpdate() && !l.quiescer.CanRecvUpdates() {
|
||||||
|
@@ -2243,6 +2243,9 @@ func (s *Switch) getLinkByMapping(pkt *htlcPacket) (ChannelLink, error) {
|
|||||||
chanID := pkt.outgoingChanID
|
chanID := pkt.outgoingChanID
|
||||||
aliasID := s.cfg.IsAlias(chanID)
|
aliasID := s.cfg.IsAlias(chanID)
|
||||||
|
|
||||||
|
log.Debugf("Querying outgoing link using chanID=%v, aliasID=%v", chanID,
|
||||||
|
aliasID)
|
||||||
|
|
||||||
// Set the originalOutgoingChanID so the proper channel_update can be
|
// Set the originalOutgoingChanID so the proper channel_update can be
|
||||||
// sent back if the option-scid-alias feature bit was negotiated.
|
// sent back if the option-scid-alias feature bit was negotiated.
|
||||||
pkt.originalOutgoingChanID = chanID
|
pkt.originalOutgoingChanID = chanID
|
||||||
@@ -2299,6 +2302,9 @@ func (s *Switch) getLinkByMapping(pkt *htlcPacket) (ChannelLink, error) {
|
|||||||
// forward over it and this is a channel where the option-scid-alias
|
// forward over it and this is a channel where the option-scid-alias
|
||||||
// feature bit was negotiated.
|
// feature bit was negotiated.
|
||||||
if link.IsUnadvertised() {
|
if link.IsUnadvertised() {
|
||||||
|
log.Debugf("Link is unadvertised, chanID=%v, baseScid=%v",
|
||||||
|
chanID, baseScid)
|
||||||
|
|
||||||
return nil, ErrChannelLinkNotFound
|
return nil, ErrChannelLinkNotFound
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1139,6 +1139,11 @@ func testSweepHTLCs(ht *lntest.HarnessTest) {
|
|||||||
// NOTE: We need to subtract 1 from the deadline as the budget must be
|
// NOTE: We need to subtract 1 from the deadline as the budget must be
|
||||||
// used up before the deadline.
|
// used up before the deadline.
|
||||||
blocksLeft := outgoingHTLCDeadline - outgoingFuncPosition - 1
|
blocksLeft := outgoingHTLCDeadline - outgoingFuncPosition - 1
|
||||||
|
|
||||||
|
ht.Logf("Bob has incoming sweep tx: %v, outgoing sweep tx: %v, "+
|
||||||
|
"blocksLeft=%v, entering fee bumping now...",
|
||||||
|
incomingSweep.TxHash(), outgoingSweep.TxHash(), blocksLeft)
|
||||||
|
|
||||||
for i := int32(0); i < blocksLeft; i++ {
|
for i := int32(0); i < blocksLeft; i++ {
|
||||||
// Mine an empty block.
|
// Mine an empty block.
|
||||||
ht.MineEmptyBlocks(1)
|
ht.MineEmptyBlocks(1)
|
||||||
|
@@ -2404,7 +2404,7 @@ func messageSummary(msg lnwire.Message) string {
|
|||||||
msg.ID, msg.Reason)
|
msg.ID, msg.Reason)
|
||||||
|
|
||||||
case *lnwire.UpdateFulfillHTLC:
|
case *lnwire.UpdateFulfillHTLC:
|
||||||
return fmt.Sprintf("chan_id=%v, id=%v, pre_image=%x, "+
|
return fmt.Sprintf("chan_id=%v, id=%v, preimage=%x, "+
|
||||||
"custom_records=%v", msg.ChanID, msg.ID,
|
"custom_records=%v", msg.ChanID, msg.ID,
|
||||||
msg.PaymentPreimage[:], msg.CustomRecords)
|
msg.PaymentPreimage[:], msg.CustomRecords)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user