Skip to content

Commit

Permalink
Update NGSIArcgisFeatureTableSink.java
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvaroVega authored Sep 12, 2024
1 parent 6147fa5 commit 1827377
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ protected void jsonElementToFeatureAttr(String attrName, String attrType, JsonEl
// Try to insert as Double
feature.addAttribute(attrName, Double.parseDouble(attrValue.toString()));
} catch (NumberFormatException e3) {
LOGGER.warn(
LOGGER.info(
"[NGSIArcgisAggregator] Unquoted String attribute: " + attrName + ":" + attrValue);
// If all fails, insert as String, except if null
if (attrValue != null &&
Expand Down

0 comments on commit 1827377

Please sign in to comment.