contractcourt+sweep+watchtower: use lnutils.SpewLogClosure for debug logging

In this commit, we update the contractcourt, sweep, and watchtower
packages to use lnutils.SpewLogClosure instead of directly calling
spew.Sdump in logging statements.
This commit is contained in:
Olaoluwa Osuntokun
2025-09-01 16:26:39 -07:00
parent 6e21bc5764
commit 77f2d8a572
5 changed files with 10 additions and 13 deletions

View File

@@ -9,7 +9,6 @@ import (
"github.com/btcsuite/btcd/btcutil/txsort"
"github.com/btcsuite/btcd/txscript"
"github.com/btcsuite/btcd/wire"
"github.com/davecgh/go-spew/spew"
"github.com/lightningnetwork/lnd/input"
"github.com/lightningnetwork/lnd/lntypes"
"github.com/lightningnetwork/lnd/lnutils"
@@ -197,7 +196,7 @@ func (p *JusticeDescriptor) assembleJusticeTxn(txWeight lntypes.WeightUnit,
}
if err := vm.Execute(); err != nil {
log.Debugf("Failed to validate justice transaction: %s",
spew.Sdump(justiceTxn))
lnutils.SpewLogClosure(justiceTxn))
return nil, fmt.Errorf("error validating TX: %w", err)
}
}