فهرست منبع

Merge pull request #42492 from thaJeztah/remove_fsutil_debug_log

pkg/fileutils: PatternMatcher.Matches(): remove debug logging
Sebastiaan van Stijn 4 سال پیش
والد
کامیت
86b4d88e55
1فایلهای تغییر یافته به همراه0 افزوده شده و 6 حذف شده
  1. 0 6
      pkg/fileutils/fileutils.go

+ 0 - 6
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
 }