Skip to content

Commit

Permalink
Cosmetic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
manucorporat committed Mar 23, 2015
1 parent 3e3ced7 commit 48fec06
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 20 deletions.
2 changes: 1 addition & 1 deletion auth_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func TestBasicAuth401WithCustomRealm(t *testing.T) {
r.ServeHTTP(w, req)

if w.Code != 401 {
t.Errorf("Response code should be Not autorized, was: %s", w.Code)
t.Errorf("Response code should be Not autorized, was: %d", w.Code)
}

if w.HeaderMap.Get("WWW-Authenticate") != "Basic realm=\"My Custom Realm\"" {
Expand Down
2 changes: 1 addition & 1 deletion context.go
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ func (c *Context) Redirect(code int, location string) {
if code >= 300 && code <= 308 {
c.Render(code, render.Redirect, location)
} else {
panic(fmt.Sprintf("Cannot send a redirect with status code %d", code))
log.Panicf("Cannot send a redirect with status code %d", code)
}
}

Expand Down
25 changes: 25 additions & 0 deletions debug.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// 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

import "log"

func IsDebugging() bool {
return gin_mode == debugCode
}

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() {
log.Printf("[GIN-debug] "+format, values...)
}
}
3 changes: 2 additions & 1 deletion deprecated.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
package gin

import (
"github.com/gin-gonic/gin/binding"
"net/http"

"github.com/gin-gonic/gin/binding"
)

// DEPRECATED, use Bind() instead.
Expand Down
3 changes: 2 additions & 1 deletion logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
package gin

import (
"github.com/mattn/go-colorable"
"log"
"time"

"github.com/mattn/go-colorable"
)

var (
Expand Down
10 changes: 0 additions & 10 deletions mode.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,3 @@ func SetMode(value string) {
func Mode() string {
return mode_name
}

func IsDebugging() bool {
return gin_mode == debugCode
}

func debugPrint(format string, values ...interface{}) {
if IsDebugging() {
log.Printf("[GIN-debug] "+format, values...)
}
}
9 changes: 3 additions & 6 deletions routergroup.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
package gin

import (
"github.com/julienschmidt/httprouter"
"net/http"
"path"

"github.com/julienschmidt/httprouter"
)

// Used internally to configure router, a RouterGroup is associated with a prefix
Expand Down Expand Up @@ -46,11 +47,7 @@ func (group *RouterGroup) Group(relativePath string, handlers ...HandlerFunc) *R
func (group *RouterGroup) Handle(httpMethod, relativePath string, handlers []HandlerFunc) {
absolutePath := group.calculateAbsolutePath(relativePath)
handlers = group.combineHandlers(handlers)
if IsDebugging() {
nuHandlers := len(handlers)
handlerName := nameOfFunction(handlers[nuHandlers-1])
debugPrint("%-5s %-25s --> %s (%d handlers)\n", httpMethod, absolutePath, handlerName, nuHandlers)
}
debugRoute(httpMethod, absolutePath, handlers)

group.engine.router.Handle(httpMethod, absolutePath, func(w http.ResponseWriter, req *http.Request, params httprouter.Params) {
context := group.engine.createContext(w, req, params, handlers)
Expand Down

0 comments on commit 48fec06

Please sign in to comment.