Commit 4e8b72ed authored by Dave Cunningham's avatar Dave Cunningham

Fix bug in logging message

parent 901c2276
......@@ -40,6 +40,6 @@ func main() {
backend := expander.NewExpander(*expansionBinary)
service := expansion.NewService(*address, *port, backend)
log.Printf("Version: %s", version.Version)
log.Printf("Listening on http://%s:%s/expand", *address, port)
log.Printf("Listening on http://%s:%d/expand", *address, *port)
log.Fatal(service.ListenAndServe())
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment