diff --git a/peer.go b/peer.go index 6986a640..e34a9c8d 100644 --- a/peer.go +++ b/peer.go @@ -892,6 +892,10 @@ func messageSummary(msg lnwire.Message) string { case *lnwire.UpdateFee: return fmt.Sprintf("chan_id=%v, fee_update_sat=%v", msg.ChanID, int64(msg.FeePerKw)) + + case *lnwire.ChannelReestablish: + return fmt.Sprintf("next_local_height=%v, remote_tail_height=%v", + msg.NextLocalCommitHeight, msg.RemoteCommitTailHeight) } return ""