Skip to content

Commit

Permalink
remove accidental debug
Browse files Browse the repository at this point in the history
Signed-off-by: Tonis Tiigi <[email protected]>
  • Loading branch information
tonistiigi committed Feb 20, 2025
1 parent accfbf6 commit 6272ae1
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions util/buildflags/entitlements.go
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
package buildflags

import (
"log"

"github.com/moby/buildkit/util/entitlements"
)

func ParseEntitlements(in []string) ([]string, error) {
out := make([]string, 0, len(in))
log.Printf("in: %#v", in)
for _, v := range in {
if v == "" {
continue
Expand All @@ -19,6 +16,5 @@ func ParseEntitlements(in []string) ([]string, error) {
}
out = append(out, v)
}
log.Printf("Parsed entitlements: %v", out)
return out, nil
}

0 comments on commit 6272ae1

Please sign in to comment.