diff --git a/common/allow.go b/common/allow.go index f67cc30..29d076f 100644 --- a/common/allow.go +++ b/common/allow.go @@ -1,7 +1,6 @@ package common import ( - "fmt" "strings" ) @@ -82,7 +81,6 @@ func (m AllowDenyMatcher) Match(test string) bool { func (s MatcherSet) Allow(tests ...string) bool { for _, test := range tests { - fmt.Println("testing", test) for _, matcher := range s.HighAllow { if matcher.Match(test) { return true