Browse Source

Add missing value in FileIndexer debug log

tags/7.7
Benoit 5 years ago
parent
commit
548477c99b

+ 1
- 1
sonar-scanner-engine/src/main/java/org/sonar/scanner/scan/filesystem/FileIndexer.java View File

@@ -125,7 +125,7 @@ public class FileIndexer {
}

if (ignoreCommand != null && ignoreCommand.isIgnored(realAbsoluteFile)) {
LOG.debug("File '{}' is excluded by the scm ignore settings.");
LOG.debug("File '{}' is excluded by the scm ignore settings.", realAbsoluteFile);
exclusionCounter.increaseByScmCount();
return;
}

Loading…
Cancel
Save