Commit 86642ac8 authored by Riegel's avatar Riegel
Browse files

Refactor: Reduce "Missing EPSG" log message level to INFO

2 merge requests!28Version 3.17.0 Release,!26Add ZIP-archive support
Showing with 6 additions and 6 deletions
+6 -6
...@@ -547,8 +547,8 @@ public class CityGmlParser { ...@@ -547,8 +547,8 @@ public class CityGmlParser {
} catch (Exception e) { } catch (Exception e) {
logEpsgParseError(e); logEpsgParseError(e);
} }
if (handler.getEpsg() == null && logger.isWarnEnabled()) { if (handler.getEpsg() == null && logger.isInfoEnabled()) {
logger.warn(Localization.getText("CityGmlParser.missingEPSGCode")); logger.info(Localization.getText("CityGmlParser.missingEPSGCode"));
} }
} }
...@@ -575,8 +575,8 @@ public class CityGmlParser { ...@@ -575,8 +575,8 @@ public class CityGmlParser {
} catch (Exception e) { } catch (Exception e) {
logEpsgParseError(e); logEpsgParseError(e);
} }
if (handler.getEpsg() == null && logger.isWarnEnabled()) { if (handler.getEpsg() == null && logger.isInfoEnabled()) {
logger.warn(Localization.getText("CityGmlParser.missingEPSGCode")); logger.info(Localization.getText("CityGmlParser.missingEPSGCode"));
} }
} }
...@@ -595,8 +595,8 @@ public class CityGmlParser { ...@@ -595,8 +595,8 @@ public class CityGmlParser {
if (crs == null) { if (crs == null) {
// could not find a coordinate system for srsName // could not find a coordinate system for srsName
// assuming metric system // assuming metric system
if (logger.isWarnEnabled()) { if (logger.isInfoEnabled()) {
logger.warn(Localization.getText("CityGmlParser.missingEPSGCode")); logger.info(Localization.getText("CityGmlParser.missingEPSGCode"));
} }
return; return;
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment