From 469bc4ea2620d63a473f920c70f82c4853b4575b Mon Sep 17 00:00:00 2001 From: Ingo Oppermann Date: Mon, 20 Feb 2023 17:19:12 +0100 Subject: [PATCH] Remove fmt.Printf --- iam/access.go | 1 - 1 file changed, 1 deletion(-) diff --git a/iam/access.go b/iam/access.go index 00e66f1b..fb4e264f 100644 --- a/iam/access.go +++ b/iam/access.go @@ -99,7 +99,6 @@ func (am *access) ListPolicies(username, domain, resource, actions string) [][]s func (am *access) HasGroup(name string) bool { groups := am.adapter.getAllGroups() - fmt.Printf("groups: %+v\n", groups) for _, g := range groups { if g == name {