]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-6345 Display list of all plugins + version in batch debug logs
authorDuarte Meneses <duarte.meneses@sonarsource.com>
Thu, 27 Aug 2015 15:00:20 +0000 (17:00 +0200)
committerDuarte Meneses <duarte.meneses@sonarsource.com>
Fri, 28 Aug 2015 13:54:30 +0000 (15:54 +0200)
sonar-batch/src/main/java/org/sonar/batch/bootstrap/BatchPluginRepository.java

index c97dd5fa912d9d0b951eff8570b1476ad8ce7ab2..2f9e04500a5f074d6f605d9f2387030609bcdd6d 100644 (file)
@@ -71,7 +71,7 @@ public class BatchPluginRepository implements PluginRepository, Startable {
     } else {
       LOG.debug("Plugins:");
       for (PluginInfo p : infosByKeys.values()) {
-        LOG.debug("  {}-{}", p.getName(), p.getVersion());
+        LOG.debug("  * {} {} ({})", p.getName(), p.getVersion(), p.getKey());
       }
     }
   }