Use fmt's Printf instead of Println function

This commit is contained in:
2018-05-07 07:03:16 +01:00
parent 48dd4d7e7d
commit 874fcfdfe5

View File

@@ -101,7 +101,7 @@ func startServer() {
}
address := *bindFlag + ":" + *portFlag
fmt.Println("Listening on " + address)
fmt.Printf("Listening on %s\n", address)
log.Fatal(http.ListenAndServe(address, nil))
}