gin/debug.go

31 lines
730 B
Go
Raw Normal View History

2015-03-23 08:03:12 +03:00
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
package gin
2015-04-08 03:58:35 +03:00
import (
"log"
"os"
)
var debugLogger = log.New(os.Stdout, "[GIN-debug] ", 0)
2015-03-23 08:03:12 +03:00
func IsDebugging() bool {
2015-04-07 13:27:23 +03:00
return ginMode == debugCode
2015-03-23 08:03:12 +03:00
}
func debugRoute(httpMethod, absolutePath string, handlers []HandlerFunc) {
if IsDebugging() {
nuHandlers := len(handlers)
handlerName := nameOfFunction(handlers[nuHandlers-1])
debugPrint("%-5s %-25s --> %s (%d handlers)\n", httpMethod, absolutePath, handlerName, nuHandlers)
}
}
func debugPrint(format string, values ...interface{}) {
if IsDebugging() {
2015-04-08 03:58:35 +03:00
debugLogger.Printf(format, values...)
2015-03-23 08:03:12 +03:00
}
}