diff --git a/auth_utility.go b/auth_utility.go index e0d161b..59ccdc2 100644 --- a/auth_utility.go +++ b/auth_utility.go @@ -10,7 +10,6 @@ import ( "net/http" "github.com/dgrijalva/jwt-go" - "fmt" ) const OneDay = time.Hour*24 @@ -193,7 +192,6 @@ func roleAuthorized(authorizedRoles []string, userClaims *TokenClaims) bool { return false } for _, r := range authorizedRoles { - fmt.Printf("comparing %s with %s\n", userClaims.Role, r) if userClaims.Role == r || r == "*" { return true }