Mercurial > dive4elements > river
diff flys-aft/src/main/java/de/intevation/aft/DischargeTable.java @ 4110:06891562e633
Extracted and documented the error messages of the process.
flys-aft/trunk@4054 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Thu, 16 Feb 2012 11:26:56 +0000 |
parents | 309d4ca09816 |
children | 9c78264109ad |
line wrap: on
line diff
--- a/flys-aft/src/main/java/de/intevation/aft/DischargeTable.java Wed Feb 08 09:43:12 2012 +0000 +++ b/flys-aft/src/main/java/de/intevation/aft/DischargeTable.java Thu Feb 16 11:26:56 2012 +0000 @@ -103,7 +103,7 @@ double w = rs.getDouble("w"); double q = rs.getDouble("q"); if (!values.add(new WQ(id, w, q))) { - log.warn("Value duplication w="+w+" q="+q+". -> ignore."); + log.warn("FLYS/AFT: Value duplication w="+w+" q="+q+". -> ignore."); } } rs.close(); @@ -229,7 +229,7 @@ Date to = rs.getDate("GUELTIG_BIS"); if (from != null && to != null && from.compareTo(to) > 0) { - log.warn("AFT: ABFLUSSTAFEL_NR = " + log.warn("AFT: ABFLUSSTAFEL_NR = " + dtId + ": " + from + " > " + to + ". -> swap"); Date temp = from; from = to;