diff --git a/pkg/fileutils/fileutils.go b/pkg/fileutils/fileutils.go index 34f1c726fb..fd4fb7f08f 100644 --- a/pkg/fileutils/fileutils.go +++ b/pkg/fileutils/fileutils.go @@ -9,8 +9,6 @@ import ( "regexp" "strings" "text/scanner" - - "github.com/sirupsen/logrus" ) // PatternMatcher allows checking paths against a list of patterns @@ -89,10 +87,6 @@ func (pm *PatternMatcher) Matches(file string) (bool, error) { } } - if matched { - logrus.Debugf("Skipping excluded path: %s", file) - } - return matched, nil }