]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-10061 Log the value of project baseDir at the beginning of scanner execution
authorDuarte Meneses <duarte.meneses@sonarsource.com>
Tue, 3 Apr 2018 09:12:57 +0000 (11:12 +0200)
committerJanos Gyerik <janos.gyerik@sonarsource.com>
Wed, 4 Apr 2018 12:40:50 +0000 (14:40 +0200)
sonar-scanner-engine/src/main/java/org/sonar/scanner/scan/ProjectScanContainer.java

index 3dd06bbab782a28b334be1e1447879dcf61982d8..528e1a27ec26f7f48fc70ad753b4edf553cf5340 100644 (file)
@@ -243,6 +243,7 @@ public class ProjectScanContainer extends ComponentContainer {
     InputModuleHierarchy tree = getComponentByType(InputModuleHierarchy.class);
 
     LOG.info("Project key: {}", tree.root().key());
+    LOG.info("Project base dir: {}", tree.root().getBaseDir());
     String organization = props.property("sonar.organization");
     if (StringUtils.isNotEmpty(organization)) {
       LOG.info("Organization key: {}", organization);