diff --git a/cmd/expandybird/main.go b/cmd/expandybird/main.go index 7a54cabed..7160eb459 100644 --- a/cmd/expandybird/main.go +++ b/cmd/expandybird/main.go @@ -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()) }