From eb17c711052c9463b56e79a07e366a5c461edaef Mon Sep 17 00:00:00 2001 From: Alvaro Vega Date: Wed, 23 Oct 2024 08:05:01 +0200 Subject: [PATCH 1/3] change log level for warn about not found objectid in feature --- .../telefonica/iot/cygnus/backends/arcgis/model/Feature.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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."); From 87cd0a431ca05667be581e7cdf3c10772975bb14 Mon Sep 17 00:00:00 2001 From: Alvaro Vega Date: Wed, 23 Oct 2024 11:13:05 +0200 Subject: [PATCH 2/3] Update CHANGES_NEXT_RELEASE --- CHANGES_NEXT_RELEASE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES_NEXT_RELEASE b/CHANGES_NEXT_RELEASE index 8b1378917..f731df0cd 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 From b479024c629060a682d6d3ad52a98fd565435e56 Mon Sep 17 00:00:00 2001 From: Alvaro Vega Date: Wed, 23 Oct 2024 11:20:42 +0200 Subject: [PATCH 3/3] Update CHANGES_NEXT_RELEASE --- CHANGES_NEXT_RELEASE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES_NEXT_RELEASE b/CHANGES_NEXT_RELEASE index f731df0cd..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 +- [cygnus-ngsi][arcgis] fix log warn to debug level in arcgis feature when no object id is found (#2430)