diff --git a/mode.go b/mode.go index 8ecab3d5..0495b830 100644 --- a/mode.go +++ b/mode.go @@ -58,6 +58,6 @@ func IsDebugging() bool { func debugPrint(format string, values ...interface{}) { if IsDebugging() { - fmt.Printf("[GIN-debug] "+format, values) + fmt.Printf("[GIN-debug] "+format, values...) } }