From 7417d7d5450cfc11b74bf6ea160b83d82195e617 Mon Sep 17 00:00:00 2001 From: ale <ale@incal.net> Date: Fri, 20 Dec 2019 10:48:47 +0000 Subject: [PATCH] Remove debugging printf --- server/http.go | 1 - 1 file changed, 1 deletion(-) diff --git a/server/http.go b/server/http.go index 6af7504..83e253f 100644 --- a/server/http.go +++ b/server/http.go @@ -277,7 +277,6 @@ func (h *Server) handleGrantTicket(w http.ResponseWriter, req *http.Request) { if len(reqGroups) > 0 { if auth.UserInfo != nil { groups = intersectGroups(reqGroups, auth.UserInfo.Groups) - log.Printf("intersectGroups(%+v, %+v) -> %+v", reqGroups, auth.UserInfo.Groups, groups) } // We only make this check here as a convenience to // the user (we may be able to show a nicer UI): the -- GitLab