fix: newline at start of log

This commit is contained in:
Jeidnx 2024-11-24 15:08:53 +01:00
parent 6f984fe7fd
commit 0a6af8d412
No known key found for this signature in database
GPG key ID: 0E9E697B7E99DF39

View file

@ -29,7 +29,7 @@ func main() {
if os.Getenv("DEV") != "true" { if os.Getenv("DEV") != "true" {
gin.SetMode(gin.ReleaseMode) gin.SetMode(gin.ReleaseMode)
fmt.Printf("Running in production mode. Listening on %s:%s.", host, port) fmt.Printf("Running in production mode. Listening on %s:%s.\n", host, port)
} }
r := gin.Default() r := gin.Default()