diff --git a/main.go b/main.go index 26310cf..0458243 100644 --- a/main.go +++ b/main.go @@ -2,7 +2,6 @@ package main import ( "embed" - "log" "net/http" "os" @@ -17,8 +16,8 @@ func main() { port := os.Getenv("PORT") if port == "" { port = "8080" - log.Printf("Defaulting to port %s \n", port) } + logrus.WithField("port", port).Info("starting server") http.HandleFunc("/", handleRoot)