Removed debug code.

This commit is contained in:
Nick Gerakines 2020-04-25 18:40:42 -04:00
parent f7664e52c0
commit cccc0f7f78
No known key found for this signature in database
GPG Key ID: 33D43D854F96B2E4
1 changed files with 0 additions and 2 deletions

View File

@ -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