diff --git a/CHANGES_NEXT_RELEASE b/CHANGES_NEXT_RELEASE index 8b1378917..6a685c1a7 100644 --- a/CHANGES_NEXT_RELEASE +++ b/CHANGES_NEXT_RELEASE @@ -1 +1 @@ - +- [cygnus-ngsi][arcgis] fix log warn to debug level in arcgis feature when no object id is found (#2430) diff --git a/cygnus-common/src/main/java/com/telefonica/iot/cygnus/backends/arcgis/model/Feature.java b/cygnus-common/src/main/java/com/telefonica/iot/cygnus/backends/arcgis/model/Feature.java index c2a9fb7b8..3a5374b8b 100644 --- a/cygnus-common/src/main/java/com/telefonica/iot/cygnus/backends/arcgis/model/Feature.java +++ b/cygnus-common/src/main/java/com/telefonica/iot/cygnus/backends/arcgis/model/Feature.java @@ -277,7 +277,7 @@ public Integer getObjectId() throws ArcgisException { } } if (objectId.equals(-1)) { - LOGGER.warn("Cant find " + GisAttributeType.OID + " in Feature Object."); + LOGGER.debug("Cant find " + GisAttributeType.OID + " in Feature Object."); } if ("".equals(objectId)) { throw new ArcgisException("Cant find " + GisAttributeType.OID + " in Feature Object.");