]> source.dussan.org Git - sonarqube.git/commitdiff
Fix quality flaw
authorSimon Brandhof <simon.brandhof@gmail.com>
Wed, 4 Sep 2013 10:06:57 +0000 (12:06 +0200)
committerSimon Brandhof <simon.brandhof@gmail.com>
Wed, 4 Sep 2013 10:07:08 +0000 (12:07 +0200)
sonar-batch/src/main/java/org/sonar/batch/index/MemoryOptimizer.java

index 543028f30a8e841eb15d32a118a8d62ba78e99e9..df594b1305ccaae916de131b4d687266152ed498 100644 (file)
@@ -71,11 +71,11 @@ public class MemoryOptimizer implements SensorExecutionHandler, DecoratorExecuti
       Integer dataId = dataIdByMeasureId.get(measure.getId());
       MeasureData data = session.getSingleResult(MeasureData.class, "id", dataId);
       if (data == null) {
-        LoggerFactory.getLogger(getClass()).error("The MEASURE_DATA row with id " + dataId + " is lost");
+        LOG.error("The MEASURE_DATA row with id {} is lost", dataId);
 
       } else {
         if (LOG.isDebugEnabled()) {
-          LOG.debug("Reload the data measure: " + measure.getMetricKey() + ", id=" + measure.getId());
+          LOG.debug("Reload the data measure: {}, id={}", measure.getMetricKey(), measure.getId());
         }
         measure.setData(data.getText());
         loadedMeasures.add(measure);
@@ -86,7 +86,7 @@ public class MemoryOptimizer implements SensorExecutionHandler, DecoratorExecuti
 
   public void flushMemory() {
     if (LOG.isDebugEnabled() && !loadedMeasures.isEmpty()) {
-      LOG.debug("Flush " + loadedMeasures.size() + " data measures from memory: ");
+      LOG.debug("Flush {} data measures from memory: ", loadedMeasures.size());
     }
     for (Measure measure : loadedMeasures) {
       measure.unsetData();