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:
Johan T. Halseth 2018-10-10 15:00:50 +02:00
parent b00e43eec1
commit d8863bea8c
No known key found for this signature in database
GPG Key ID: 15BAADA29DA20D26
3 changed files with 3 additions and 3 deletions

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