1 files changed, 2 insertions(+), 1 deletions(-)

M main.go
M main.go +2 -1
@@ 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()