]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-5119 Add a warning log when a rule is linked on a removed characteristic
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Fri, 7 Mar 2014 14:59:54 +0000 (15:59 +0100)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Fri, 7 Mar 2014 14:59:54 +0000 (15:59 +0100)
sonar-server/src/main/java/org/sonar/server/rule/RuleRegistration.java

index 4a60de8146472ba2132245e5eb667bf68ad6ec66..711f7e8a9c40ad16d33dc07ebb11da09cb9ad309 100644 (file)
@@ -553,7 +553,7 @@ public class RuleRegistration implements Startable {
     }, null);
 
     if (characteristicDto == null) {
-      LOG.warn(String.format("Characteristic '%s' has not been found, Technical debt definitions on rule '%s:%s' will be ignored",
+      LOG.warn(String.format("Characteristic '%s' has not been found, technical debt definitions on rule '%s:%s' will be ignored",
         key, ruleDef.repository().name(), ruleDef.key()));
     } else if (characteristicDto.getParentId() == null) {
       throw MessageException.of(String.format("Rule '%s:%s' cannot be linked on the root characteristic '%s'",