diff --git a/auth/auth.go b/auth/auth.go index d8ef6c4..897c5c6 100644 --- a/auth/auth.go +++ b/auth/auth.go @@ -12,7 +12,6 @@ import ( "io/ioutil" "bytes" - "github.com/davecgh/go-spew/spew" "io" "log" ) @@ -99,7 +98,6 @@ func (a *Auth) authenticate(username, password string) error { } userAttrs := authboss.Unbind(userInter) - spew.Dump(userAttrs) if pwd, ok := userAttrs["Password"]; !ok { return errAuthFailed @@ -107,8 +105,6 @@ func (a *Auth) authenticate(username, password string) error { return errAuthFailed } - log.Println("I have all the power") - return nil }