diff --git a/debug.go b/debug.go index 7ac72d2c..a0b99f43 100644 --- a/debug.go +++ b/debug.go @@ -28,7 +28,11 @@ func debugPrint(format string, values ...interface{}) { } 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) {