diff --git a/app.go b/app.go index 0da464f7..2ca3b5fa 100644 --- a/app.go +++ b/app.go @@ -378,7 +378,7 @@ func (app *App) Listen(address interface{}, tlsconfig ...*tls.Config) error { // Print listening message if !isChild() { fmt.Printf(" _______ __\n ____ / ____(_) /_ ___ _____\n_____ / /_ / / __ \\/ _ \\/ ___/\n __ / __/ / / /_/ / __/ /\n /_/ /_/_.___/\\___/_/ v%s\n", Version) - fmt.Printf("Started listening on %s\n", addr) + fmt.Printf("Started listening on %s\n", ln.Addr().String()) } return app.server.Serve(ln) }