Skip to content

Commit

Permalink
Merge pull request #2429 from telefonicaid/AlvaroVega-patch-1
Browse files Browse the repository at this point in the history
change log level for warn about not found objectid in feature
  • Loading branch information
fgalan authored Oct 23, 2024
2 parents 274b4fb + b479024 commit 7920161
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGES_NEXT_RELEASE
Original file line number Diff line number Diff line change
@@ -1 +1 @@

- [cygnus-ngsi][arcgis] fix log warn to debug level in arcgis feature when no object id is found (#2430)
Original file line number Diff line number Diff line change
Expand Up @@ -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.");
Expand Down

0 comments on commit 7920161

Please sign in to comment.