Skip to content

Commit

Permalink
fix logger
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvaroVega committed Oct 28, 2024
1 parent 8268d3d commit a76671f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ public void persistAggregation(NGSIArcgisAggregator aggregator) throws CygnusRun

featureTable.addToBatch(aggregation.getFeature());
if (featureTable.hasError()){
logger.error("feature table " + featureTableUrl + " has error code " + featureTable.getErrorCode() + " with desc " + featureTable.getErrorDesc());
LOGGER.error("feature table " + featureTableUrl + " has error code " + featureTable.getErrorCode() + " with desc " + featureTable.getErrorDesc());
throw new ArcgisException(featureTable.getErrorCode(), featureTable.getErrorDesc());
}
}
Expand Down

0 comments on commit a76671f

Please sign in to comment.