comparison flys-backend/src/main/java/de/intevation/flys/importer/ImportRiver.java @ 3327:bf8d9a4f4cd4

Cleared some irritating debug messages. flys-backend/trunk@4645 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Tue, 12 Jun 2012 13:50:29 +0000
parents 8f905390c10d
children a41f279a66e2
comparison
equal deleted inserted replaced
3326:ff70ff6c0629 3327:bf8d9a4f4cd4
300 } 300 }
301 } 301 }
302 302
303 303
304 protected void parseSedimentDensity() throws IOException { 304 protected void parseSedimentDensity() throws IOException {
305 log.debug("Parse sediment density");
306
307 if (Config.INSTANCE.skipSedimentDensity()) { 305 if (Config.INSTANCE.skipSedimentDensity()) {
308 log.info("skip parsing sediment density."); 306 log.info("skip parsing sediment density.");
309 return; 307 return;
310 } 308 }
311 309
310 log.debug("Parse sediment density");
311
312 File minfoDir = getMinfoDir(); 312 File minfoDir = getMinfoDir();
313 File sediment = new File(minfoDir, SEDIMENT_DENSITY_DIR); 313 File sediment = new File(minfoDir, SEDIMENT_DENSITY_DIR);
314 314
315 File[] files = sediment.listFiles(); 315 File[] files = sediment.listFiles();
316 316
330 log.info("Parsed " + sedimentDensities.size() + " sediment densities."); 330 log.info("Parsed " + sedimentDensities.size() + " sediment densities.");
331 } 331 }
332 332
333 333
334 protected void parseMorphologicalWidth() throws IOException { 334 protected void parseMorphologicalWidth() throws IOException {
335 log.debug("Parse morphological width");
336
337 if (Config.INSTANCE.skipMorphologicalWidth()) { 335 if (Config.INSTANCE.skipMorphologicalWidth()) {
338 log.info("skip parsing morphological width."); 336 log.info("skip parsing morphological width.");
339 return; 337 return;
340 } 338 }
339
340 log.debug("Parse morphological width");
341 341
342 File minfoDir = getMinfoDir(); 342 File minfoDir = getMinfoDir();
343 File morphDir = new File(minfoDir, MORPHOLOGICAL_WIDTH_DIR); 343 File morphDir = new File(minfoDir, MORPHOLOGICAL_WIDTH_DIR);
344 344
345 File[] files = morphDir.listFiles(); 345 File[] files = morphDir.listFiles();
407 } 407 }
408 } 408 }
409 409
410 410
411 protected void parseSedimentYield() throws IOException { 411 protected void parseSedimentYield() throws IOException {
412 log.debug("Parse sediment yield data");
413
414 if (Config.INSTANCE.skipSedimentYield()) { 412 if (Config.INSTANCE.skipSedimentYield()) {
415 log.info("skip parsing sediment yield data"); 413 log.info("skip parsing sediment yield data");
416 return; 414 return;
417 } 415 }
416
417 log.debug("Parse sediment yield data");
418 418
419 File minfoDir = getMinfoDir(); 419 File minfoDir = getMinfoDir();
420 File sedimentYieldDir = new File(minfoDir, SEDIMENT_YIELD_DIR); 420 File sedimentYieldDir = new File(minfoDir, SEDIMENT_YIELD_DIR);
421 421
422 File singleDir = new File(sedimentYieldDir, SEDIMENT_YIELD_SINGLE_DIR); 422 File singleDir = new File(sedimentYieldDir, SEDIMENT_YIELD_SINGLE_DIR);

http://dive4elements.wald.intevation.org