Mercurial > dive4elements > river
changeset 7343:d93bb557a94f double-precision
Do not log trace of WST-Parser parse exception and document it.
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Tue, 15 Oct 2013 19:49:25 +0200 |
parents | c9b9176b0530 |
children | 6c003cbb27f1 |
files | backend/doc/documentation/de/importer-hydr-morph.tex backend/src/main/java/org/dive4elements/river/importer/ImportRiver.java |
diffstat | 2 files changed, 10 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/backend/doc/documentation/de/importer-hydr-morph.tex Tue Oct 15 19:19:45 2013 +0200 +++ b/backend/doc/documentation/de/importer-hydr-morph.tex Tue Oct 15 19:49:25 2013 +0200 @@ -393,6 +393,10 @@ obwohl sich das Gewässer noch nicht in der Datenbank befindet (siehe Kapitel \ref{import_data}). +\textbf{Stations in 'XYZ' near line \# not ordered. File rejected.} +\\Die Stationen in einer WST-Datei sind nicht konsequent auf- oder +absteigend geordnet. Die Datei wird verworfen. + \textbf{File 'XYZ' is broken!} \\Die Datei XYZ ist inkonsistent und führt zu Fehlern.
--- a/backend/src/main/java/org/dive4elements/river/importer/ImportRiver.java Tue Oct 15 19:19:45 2013 +0200 +++ b/backend/src/main/java/org/dive4elements/river/importer/ImportRiver.java Tue Oct 15 19:49:25 2013 +0200 @@ -365,7 +365,7 @@ floodProtection.add(iw); } catch (WstParser.ParseException e) { - log.error(e); + log.error(e.getMessage()); } } } @@ -782,7 +782,7 @@ floodWater.add(iw); } catch (WstParser.ParseException e) { - log.error(e); + log.error(e.getMessage()); } } } @@ -819,7 +819,7 @@ wstParser.parse(file); } catch (WstParser.ParseException e) { - log.error(e); + log.error(e.getMessage()); continue; } @@ -904,7 +904,7 @@ fixations.add(iw); } catch (WstParser.ParseException e) { - log.error(e); + log.error(e.getMessage()); } } } @@ -953,7 +953,7 @@ extraWsts.add(iw); } catch (WstParser.ParseException e) { - log.error(e); + log.error(e.getMessage()); } } @@ -972,7 +972,7 @@ wst.setKmUp(wst.guessWaterLevelIncreasing()); } catch (WstParser.ParseException e) { - log.error(e); + log.error(e.getMessage()); } }