diff flys-artifacts/src/main/java/de/intevation/flys/artifacts/access/FixationArtifactAccess.java @ 3209:03fc05655258

SQ: Added artifact access stub. flys-artifacts/trunk@4828 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 28 Jun 2012 15:06:58 +0000
parents 90c4ce100ce1
children ae14f412ba10
line wrap: on
line diff
--- a/flys-artifacts/src/main/java/de/intevation/flys/artifacts/access/FixationArtifactAccess.java	Thu Jun 28 14:55:58 2012 +0000
+++ b/flys-artifacts/src/main/java/de/intevation/flys/artifacts/access/FixationArtifactAccess.java	Thu Jun 28 15:06:58 2012 +0000
@@ -140,6 +140,10 @@
             qSectorStart = getInteger("q1");
         }
 
+        if (log.isDebugEnabled()) {
+            log.debug("q1: '" + qSectorStart + "'");
+        }
+
         return qSectorStart;
     }
 
@@ -149,6 +153,10 @@
             qSectorEnd = getInteger("q2");
         }
 
+        if (log.isDebugEnabled()) {
+            log.debug("q2: '" + qSectorEnd + "'");
+        }
+
         return qSectorEnd;
     }
 
@@ -156,6 +164,9 @@
         if (events == null) {
             events = getIntArray("events");
         }
+        if (log.isDebugEnabled() && events != null) {
+            log.debug("events: " + Arrays.toString(events));
+        }
         return events;
     }
 
@@ -199,6 +210,9 @@
         if (preprocessing == null) {
             preprocessing = getBoolean("preprocessing");
         }
+        if (log.isDebugEnabled()) {
+            log.debug("preprocessing: " + preprocessing);
+        }
         return preprocessing;
     }
 

http://dive4elements.wald.intevation.org