forked from mirror/gin
Better debug warning message
This commit is contained in:
parent
e2adae9003
commit
eb91af753d
6
debug.go
6
debug.go
|
@ -28,7 +28,11 @@ func debugPrint(format string, values ...interface{}) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func debugPrintWARNING() {
|
func debugPrintWARNING() {
|
||||||
debugPrint("[WARNING] Running in DEBUG mode! Disable it before going production\n")
|
debugPrint(`[WARNING] Running in "debug" mode. Switch to "release" mode in production.
|
||||||
|
- using env: export GIN_MODE=release
|
||||||
|
- using code: gin.SetMode(gin.ReleaseMode)
|
||||||
|
|
||||||
|
`)
|
||||||
}
|
}
|
||||||
|
|
||||||
func debugPrintError(err error) {
|
func debugPrintError(err error) {
|
||||||
|
|
Loading…
Reference in New Issue