]> source.dussan.org Git - sonarqube.git/commitdiff
Log message about backward compatibility for XMLProfileParser
authorGodin <mandrikov@gmail.com>
Thu, 9 Dec 2010 10:43:30 +0000 (10:43 +0000)
committerGodin <mandrikov@gmail.com>
Thu, 9 Dec 2010 10:43:30 +0000 (10:43 +0000)
sonar-plugin-api/src/main/java/org/sonar/api/profiles/XMLProfileParser.java

index 819ee316b15affe7fd6cc5e4b300345232c97add..2ca74d70fdc9cdb9654b0345213924c1461d5be5 100644 (file)
@@ -33,6 +33,7 @@ import org.sonar.api.rules.ActiveRule;
 import org.sonar.api.rules.Rule;
 import org.sonar.api.rules.RuleFinder;
 import org.sonar.api.rules.RulePriority;
+import org.sonar.api.utils.Logs;
 import org.sonar.api.utils.ValidationMessages;
 
 import java.io.InputStreamReader;
@@ -203,6 +204,7 @@ public final class XMLProfileParser implements ServerComponent {
   private void processAlerts(SMInputCursor alertsCursor, RulesProfile profile, ValidationMessages messages) throws XMLStreamException {
     if (metricFinder == null) {
       // TODO remove when constructor without MetricFinder would be removed
+      Logs.INFO.error("Unable to parse alerts, because MetricFinder not available.");
       return;
     }
     while (alertsCursor.getNext() != null) {