diff --git a/CityDoctorParent/CityDoctorModel/src/main/java/de/hft/stuttgart/citydoctor2/parser/CityGmlParser.java b/CityDoctorParent/CityDoctorModel/src/main/java/de/hft/stuttgart/citydoctor2/parser/CityGmlParser.java index a209fa4226a88d84ced8f8c0ec2514a93bebec2f..03e0544050e3687525159a1b1a5eb4c20f1b91c9 100644 --- a/CityDoctorParent/CityDoctorModel/src/main/java/de/hft/stuttgart/citydoctor2/parser/CityGmlParser.java +++ b/CityDoctorParent/CityDoctorModel/src/main/java/de/hft/stuttgart/citydoctor2/parser/CityGmlParser.java @@ -547,8 +547,8 @@ public class CityGmlParser { } catch (Exception e) { logEpsgParseError(e); } - if (handler.getEpsg() == null && logger.isWarnEnabled()) { - logger.warn(Localization.getText("CityGmlParser.missingEPSGCode")); + if (handler.getEpsg() == null && logger.isInfoEnabled()) { + logger.info(Localization.getText("CityGmlParser.missingEPSGCode")); } } @@ -575,8 +575,8 @@ public class CityGmlParser { } catch (Exception e) { logEpsgParseError(e); } - if (handler.getEpsg() == null && logger.isWarnEnabled()) { - logger.warn(Localization.getText("CityGmlParser.missingEPSGCode")); + if (handler.getEpsg() == null && logger.isInfoEnabled()) { + logger.info(Localization.getText("CityGmlParser.missingEPSGCode")); } } @@ -595,8 +595,8 @@ public class CityGmlParser { if (crs == null) { // could not find a coordinate system for srsName // assuming metric system - if (logger.isWarnEnabled()) { - logger.warn(Localization.getText("CityGmlParser.missingEPSGCode")); + if (logger.isInfoEnabled()) { + logger.info(Localization.getText("CityGmlParser.missingEPSGCode")); } return; }