summaryrefslogtreecommitdiffstats
path: root/sonar-server
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2014-06-12 11:07:38 +0200
committerJulien Lancelot <julien.lancelot@sonarsource.com>2014-06-12 11:07:38 +0200
commit0ebe203200cd2ff3778a61887e5e552c4d542854 (patch)
tree561b0bbc4ba67710882d32b379b8cbf08f97e72a /sonar-server
parent6c2ff87a06a55f50208329454f3ad41f26b4faf5 (diff)
downloadsonarqube-0ebe203200cd2ff3778a61887e5e552c4d542854.tar.gz
sonarqube-0ebe203200cd2ff3778a61887e5e552c4d542854.zip
SONAR-5392 Update log message
Diffstat (limited to 'sonar-server')
-rw-r--r--sonar-server/src/main/java/org/sonar/server/startup/CopyRequirementsFromCharacteristicsToRules.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-server/src/main/java/org/sonar/server/startup/CopyRequirementsFromCharacteristicsToRules.java b/sonar-server/src/main/java/org/sonar/server/startup/CopyRequirementsFromCharacteristicsToRules.java
index 2cf02ae839e..e40a54ba10e 100644
--- a/sonar-server/src/main/java/org/sonar/server/startup/CopyRequirementsFromCharacteristicsToRules.java
+++ b/sonar-server/src/main/java/org/sonar/server/startup/CopyRequirementsFromCharacteristicsToRules.java
@@ -94,7 +94,7 @@ public class CopyRequirementsFromCharacteristicsToRules implements ServerCompone
try {
List<RequirementMigrationDto> requirementDtos = dbSession.getMapper(CharacteristicMapper.class).selectDeprecatedRequirements();
if (requirementDtos.isEmpty()) {
- LOGGER.info("No requirement will be copied", requirementDtos);
+ LOGGER.info("No requirement need to be copied", requirementDtos);
} else {
int requirementCopied = 0;
@@ -114,7 +114,7 @@ public class CopyRequirementsFromCharacteristicsToRules implements ServerCompone
}
dbSession.commit();
- LOGGER.info("{} requirements have been found, {} have be copied", requirementDtos.size(), requirementCopied);
+ LOGGER.info("{} requirements have been found, {} have been copied", requirementDtos.size(), requirementCopied);
}
} finally {
MyBatis.closeQuietly(dbSession);