Browse Source

Display startup message for Gin (Go) (#8062)

* Update main.go

* Update main.go
Sébastien Ros 2 years ago
parent
commit
608fd4c118
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frameworks/Go/gin/gin-std/main.go

+ 1 - 1
frameworks/Go/gin/gin-std/main.go

@@ -153,7 +153,7 @@ func main() {
 	r.GET("/fortunes", fortunes)
 	r.GET("/update", update)
 	r.GET("/plaintext", plaintext)
-	log.Print("Listening and serving HTTP\n")
+	fmt.Println("Listening and serving HTTP")
 	r.Run(":8080")
 }