fixed debugPrint

This commit is contained in:
Mirza Ceric 2014-10-21 16:48:21 +02:00
parent aa7b00a083
commit a57db1a355
1 changed files with 1 additions and 1 deletions

View File

@ -58,6 +58,6 @@ func IsDebugging() bool {
func debugPrint(format string, values ...interface{}) { func debugPrint(format string, values ...interface{}) {
if IsDebugging() { if IsDebugging() {
fmt.Printf("[GIN-debug] "+format, values) fmt.Printf("[GIN-debug] "+format, values...)
} }
} }