diff artifacts/src/main/java/org/dive4elements/river/exports/FlowVelocityExporter.java @ 8202:e4606eae8ea5

sed src/**/*.java 's/logger/log/g'
author Sascha L. Teichmann <teichmann@intevation.de>
date Fri, 05 Sep 2014 12:58:17 +0200
parents bccc08a46bab
children e7a2234e7c3f
line wrap: on
line diff
--- a/artifacts/src/main/java/org/dive4elements/river/exports/FlowVelocityExporter.java	Fri Sep 05 12:54:58 2014 +0200
+++ b/artifacts/src/main/java/org/dive4elements/river/exports/FlowVelocityExporter.java	Fri Sep 05 12:58:17 2014 +0200
@@ -29,7 +29,7 @@
  */
 public class FlowVelocityExporter extends AbstractExporter {
 
-    private static final Logger logger =
+    private static final Logger log =
         Logger.getLogger(FlowVelocityExporter.class);
 
 
@@ -64,7 +64,7 @@
             d = ((CalculationResult) d).getData();
 
             if (d instanceof FlowVelocityData[]) {
-                logger.debug("Add new data of type FlowVelocityData");
+                log.debug("Add new data of type FlowVelocityData");
                 data.add((FlowVelocityData[]) d);
             }
         }
@@ -73,8 +73,8 @@
 
     @Override
     protected void writeCSVData(CSVWriter writer) {
-        logger.info("FlowVelocityExporter.writeCSVData");
-        logger.debug("CSV gets " + data.size() + " FlowVelocityData objects.");
+        log.info("FlowVelocityExporter.writeCSVData");
+        log.debug("CSV gets " + data.size() + " FlowVelocityData objects.");
 
         writeCSVHeader(writer);
 
@@ -97,7 +97,7 @@
 
 
     protected void data2CSV(CSVWriter writer, FlowVelocityData[] fData) {
-        logger.debug("Add next FlowVelocityData to CSV");
+        log.debug("Add next FlowVelocityData to CSV");
 
         D4EArtifact flys = (D4EArtifact) master;
 
@@ -122,7 +122,7 @@
 
     @Override
     protected void writePDF(OutputStream out) {
-        logger.error("TODO: Implement FlowVelocityExporter.writePDF");
+        log.error("TODO: Implement FlowVelocityExporter.writePDF");
     }
 }
 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :

http://dive4elements.wald.intevation.org