dev: remove extra logging in skip dirs processor

This commit is contained in:
Denis Isaev 2018-12-22 13:44:16 +03:00
parent 09c65fcf42
commit 99329fb637
No known key found for this signature in database
GPG Key ID: A36A0EC8E27A1A01

View File

@ -84,7 +84,6 @@ func (p *SkipDirs) shouldPassIssue(i *result.Issue) bool {
for _, absArgDir := range p.absArgsDirs {
if absArgDir == issueAbsDir {
p.log.Infof("Pass issue in file %s because it's dir was explicitly set in arg %s", i.FilePath(), absArgDir)
// we must not skip issues if they are from explicitly set dirs
// even if they match skip patterns
return true