I need to set gin mode to release mode. How should I do it?
Now when I run my API there is a hint like this:
[GIN-debug] [WARNING] Running in "debug" mode. Switch to "release" mode in production.
- using env: export GIN_MODE=release
- using code: gin.SetMode(gin.ReleaseMode)
I tried gin.SetMode(gin.ReleaseMode)
but it does not work. I initialize my router here:
gin.SetMode(gin.releaseMode)
router := gin.Default()
You have to call SetMode
method before you initialize the gin router. E.x:
gin.SetMode(gin.ReleaseMode)
router := gin.New()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With