forked from cerc-io/ipld-eth-server
Redirect validation window status to logrus instead of stdout
This commit is contained in:
parent
d7dde86942
commit
8eea1b00ed
@ -15,7 +15,6 @@
|
|||||||
package cmd
|
package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
@ -85,7 +84,7 @@ func lightSync() {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
log.Error("ValidateHeaders failed in lightSync: ", err)
|
log.Error("ValidateHeaders failed in lightSync: ", err)
|
||||||
}
|
}
|
||||||
window.Log(os.Stdout)
|
log.Info(window.GetString())
|
||||||
case n := <-missingBlocksPopulated:
|
case n := <-missingBlocksPopulated:
|
||||||
if n == 0 {
|
if n == 0 {
|
||||||
time.Sleep(3 * time.Second)
|
time.Sleep(3 * time.Second)
|
||||||
|
@ -15,7 +15,6 @@
|
|||||||
package cmd
|
package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
@ -85,7 +84,7 @@ func sync() {
|
|||||||
select {
|
select {
|
||||||
case <-ticker.C:
|
case <-ticker.C:
|
||||||
window := validator.ValidateBlocks()
|
window := validator.ValidateBlocks()
|
||||||
window.Log(os.Stdout)
|
log.Info(window.GetString())
|
||||||
case <-missingBlocksPopulated:
|
case <-missingBlocksPopulated:
|
||||||
go backFillAllBlocks(blockChain, blockRepository, missingBlocksPopulated, startingBlockNumber)
|
go backFillAllBlocks(blockChain, blockRepository, missingBlocksPopulated, startingBlockNumber)
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
package history
|
package history
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"github.com/vulcanize/vulcanizedb/pkg/core"
|
"github.com/vulcanize/vulcanizedb/pkg/core"
|
||||||
"io"
|
|
||||||
"text/template"
|
"text/template"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -36,6 +36,7 @@ func MakeRange(min, max int64) []int64 {
|
|||||||
return a
|
return a
|
||||||
}
|
}
|
||||||
|
|
||||||
func (window ValidationWindow) Log(out io.Writer) {
|
func (window ValidationWindow) GetString() string {
|
||||||
ParsedWindowTemplate.Execute(out, window)
|
return fmt.Sprintf("Validating Blocks |%v|-- Validation Window --|%v}|",
|
||||||
|
window.LowerBound, window.UpperBound)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user