Remove some unneeded debugging code

This commit is contained in:
John Donaldson 2020-03-02 19:32:25 +00:00
parent d0ccdd2a72
commit 2d5e8d6f9f
1 changed files with 0 additions and 6 deletions

View File

@ -284,12 +284,6 @@ func (ctx *Instance) sortPoints() {
sort.SliceStable(points, func(i, j int) bool { return points[i].When.Before(points[j].When) })
fmt.Println("By time: \n")
for i := range points {
fmt.Println(points[i])
}
logf.Seek(0, io.SeekStart)
for i := range points {