@@ 8,6 8,7 @@ import (
"io"
"log"
"os"
+ "strings"
"sync"
"time"
@@ 225,7 226,7 @@ func main() {
writer.Write([]string{
fmt.Sprint(o.Start.Unix()),
o.URL,
- e,
+ strings.Split(e, ": ")[0],
fmt.Sprint(o.Duration.Nanoseconds() / int64(time.Millisecond)),
})
writer.Flush()