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:
Olaoluwa Osuntokun
2018-10-12 14:12:40 -07:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -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()

View File

@@ -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()

View File

@@ -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.