# HG changeset patch # User Tom Gottfried # Date 1381859365 -7200 # Node ID d93bb557a94f20e4125fcca5c81929fa17e44e04 # Parent c9b9176b053038d4872c5b7243cf207ace4c442a Do not log trace of WST-Parser parse exception and document it. diff -r c9b9176b0530 -r d93bb557a94f backend/doc/documentation/de/importer-hydr-morph.tex --- 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. diff -r c9b9176b0530 -r d93bb557a94f backend/src/main/java/org/dive4elements/river/importer/ImportRiver.java --- 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()); } }