Redirect validation window status to logrus instead of stdout

This commit is contained in:
Edvard
2019-01-31 15:55:28 +01:00
parent d7dde86942
commit 8eea1b00ed
3 changed files with 6 additions and 7 deletions
+4 -3
View File
@@ -1,8 +1,8 @@
package history
import (
"fmt"
"github.com/vulcanize/vulcanizedb/pkg/core"
"io"
"text/template"
)
@@ -36,6 +36,7 @@ func MakeRange(min, max int64) []int64 {
return a
}
func (window ValidationWindow) Log(out io.Writer) {
ParsedWindowTemplate.Execute(out, window)
func (window ValidationWindow) GetString() string {
return fmt.Sprintf("Validating Blocks |%v|-- Validation Window --|%v}|",
window.LowerBound, window.UpperBound)
}