Merge pull request #2029 from halseth/new-utxos-trace-logging
[trivial] routing/chainview: demote logging of new utxos for filter to Trace
This commit is contained in:
commit
e5b84cfada
@ -302,7 +302,7 @@ func (b *BitcoindFilteredChainView) chainFilterer() {
|
||||
// First, we'll add all the new UTXO's to the set of
|
||||
// watched UTXO's, eliminating any duplicates in the
|
||||
// process.
|
||||
log.Debugf("Updating chain filter with new UTXO's: %v",
|
||||
log.Tracef("Updating chain filter with new UTXO's: %v",
|
||||
update.newUtxos)
|
||||
|
||||
b.filterMtx.Lock()
|
||||
|
@ -322,7 +322,7 @@ func (b *BtcdFilteredChainView) chainFilterer() {
|
||||
// First, we'll add all the new UTXO's to the set of
|
||||
// watched UTXO's, eliminating any duplicates in the
|
||||
// process.
|
||||
log.Debugf("Updating chain filter with new UTXO's: %v",
|
||||
log.Tracef("Updating chain filter with new UTXO's: %v",
|
||||
update.newUtxos)
|
||||
|
||||
b.filterMtx.Lock()
|
||||
|
@ -318,7 +318,7 @@ func (c *CfFilteredChainView) FilterBlock(blockHash *chainhash.Hash) (*FilteredB
|
||||
func (c *CfFilteredChainView) UpdateFilter(ops []channeldb.EdgePoint,
|
||||
updateHeight uint32) error {
|
||||
|
||||
log.Debugf("Updating chain filter with new UTXO's: %v", ops)
|
||||
log.Tracef("Updating chain filter with new UTXO's: %v", ops)
|
||||
|
||||
// First, we'll update the current chain view, by adding any new
|
||||
// UTXO's, ignoring duplicates in the process.
|
||||
|
Loading…
Reference in New Issue
Block a user