From 119e7374e167c6ac092b6729aac7d57e925d75bf Mon Sep 17 00:00:00 2001 From: Svarog Date: Tue, 5 Jan 2021 12:51:48 +0200 Subject: [PATCH] Move common log message to trace (#1348) --- .../processes/consensusstatemanager/pick_virtual_parents.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/domain/consensus/processes/consensusstatemanager/pick_virtual_parents.go b/domain/consensus/processes/consensusstatemanager/pick_virtual_parents.go index 85e9ba96f..459c313dd 100644 --- a/domain/consensus/processes/consensusstatemanager/pick_virtual_parents.go +++ b/domain/consensus/processes/consensusstatemanager/pick_virtual_parents.go @@ -166,7 +166,7 @@ func (csm *consensusStateManager) mergeSetIncrease( for queue.Len() > 0 { current := queue.Pop() - log.Debugf("Attempting to increment the merge set size increase for block %s", current) + log.Tracef("Attempting to increment the merge set size increase for block %s", current) isInPastOfSelectedVirtualParents, err := csm.dagTopologyManager.IsAncestorOfAny( current, selectedVirtualParents.ToSlice()) @@ -174,7 +174,7 @@ func (csm *consensusStateManager) mergeSetIncrease( return 0, err } if isInPastOfSelectedVirtualParents { - log.Debugf("Skipping block %s because it's in the past of one "+ + log.Tracef("Skipping block %s because it's in the past of one "+ "(or more) of the selected virtual parents", current) continue }