white on bright yellow is pretty hard to read for me. Is there a way to disable color output?
Fix by #770
example:
package main
import (
"github.com/gin-gonic/gin"
)
func main() {
// Disable Console Color
gin.DisableConsoleColor()
r := gin.Default()
// Ping test
r.GET("/ping", func(c *gin.Context) {
c.String(200, "pong")
})
}
Most helpful comment
Fix by #770
example: