Turn init-sync FSM logs to trace level (#7670)

* trace

* go fmt

Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com>
This commit is contained in:
Victor Farazdagi 2020-10-29 07:55:07 +03:00 committed by GitHub
parent c1c0b53c25
commit 4fc0a50569
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -190,11 +190,10 @@ func (q *blocksQueue) loop() {
}
log.WithFields(logrus.Fields{
"highestExpectedSlot": q.highestExpectedSlot,
"noRequiredPeersErrRetries": q.exitConditions.noRequiredPeersErrRetries,
"headSlot": q.headFetcher.HeadSlot(),
"state": q.smm,
}).Debug("tick")
"highestExpectedSlot": q.highestExpectedSlot,
"headSlot": q.headFetcher.HeadSlot(),
"state": q.smm.String(),
}).Trace("tick")
select {
case <-ticker.C: