diff --git a/cmd/server.go b/cmd/server.go index 1e449b6..2ded49f 100644 --- a/cmd/server.go +++ b/cmd/server.go @@ -30,7 +30,6 @@ package cmd import ( "encoding/csv" "errors" - "fmt" "io" "log/syslog" "os" @@ -358,5 +357,5 @@ func makeCSVReader(path string) (*csv.Reader, *os.File) { func sayStarted() { <-time.After(1 * time.Second) - fmt.Println("server started") + info("server started") }