Merge pull request #139 from mirzac/fixed-debugPrint

fixed debugPrint
This commit is contained in:
Manu Mtz.-Almeida 2014-10-28 14:34:55 +01:00
commit 1479952fbc
1 changed files with 1 additions and 1 deletions

View File

@ -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...)
}
}