Merge pull request #3017 from tonistiigi/remove-debug

remove accidental debug
This commit is contained in:
Shaun Thompson 2025-02-20 20:08:16 -05:00 committed by GitHub
commit 62f5cc7c80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
@ -19,6 +16,5 @@ func ParseEntitlements(in []string) ([]string, error) {
}
out = append(out, v)
}
log.Printf("Parsed entitlements: %v", out)
return out, nil
}