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 {
} 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;
}
......
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