routing/chainview: demote logging of new utxos for filter to Trace
It was previously Debug, which would spam the logs at startup, and not provide very useful (human-readable) information.
This commit is contained in:
parent
b00e43eec1
commit
d8863bea8c
@ -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