]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-5642 Log cleanup
authorJulien HENRY <julien.henry@sonarsource.com>
Thu, 2 Oct 2014 16:04:37 +0000 (18:04 +0200)
committerJulien HENRY <julien.henry@sonarsource.com>
Thu, 2 Oct 2014 19:25:33 +0000 (21:25 +0200)
plugins/sonar-git-plugin/src/main/java/org/sonar/plugins/scm/git/GitBlameCommand.java

index 9e9bb3cb8e7bd974434ad7413fcaee49ecb2b742..5e5b0370ccae3d1ca42b45156b3bb8b805176358 100644 (file)
@@ -48,7 +48,7 @@ public class GitBlameCommand implements BlameCommand, BatchComponent {
 
   @Override
   public void blame(FileSystem fs, Iterable<InputFile> files, BlameResult result) {
-    LOG.info("Working directory: " + fs.baseDir().getAbsolutePath());
+    LOG.debug("Working directory: " + fs.baseDir().getAbsolutePath());
     for (InputFile inputFile : files) {
       String filename = inputFile.relativePath();
       Command cl = createCommandLine(fs.baseDir(), filename);
@@ -64,7 +64,7 @@ public class GitBlameCommand implements BlameCommand, BatchComponent {
   }
 
   public int execute(Command cl, StreamConsumer consumer, StreamConsumer stderr) {
-    LOG.info("Executing: " + cl);
+    LOG.debug("Executing: " + cl);
     return commandExecutor.execute(cl, consumer, stderr, 0);
   }