Skip to content

Commit

Permalink
log when globalId is found
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvaroVega committed Oct 11, 2024
1 parent 9744ef7 commit 9296c15
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,7 @@ protected void splitFeatureListIfExists(List<Feature> featureArray,
} else {
Integer gid = serverFeature.getGlobalId();
if (!gid.equals(-1)) {
LOGGER.info(" GlobalId " + gid + " found in serverFeature " + serverFeatureId);
feature.setGlobalId(gid);
} else {
LOGGER.warn("None ObjectId neither GlobalId were found in serverFeature " + serverFeatureId);
Expand Down

0 comments on commit 9296c15

Please sign in to comment.