Skip to content

Commit

Permalink
log in info creation/reuse feature table
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvaroVega committed Sep 30, 2024
1 parent da48cc7 commit 5e71ef4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,10 +168,10 @@ protected ArcgisFeatureTable getPersistenceBackend(String featureServiceUrl) thr

if (arcgisPersistenceBackend.containsKey(featureServiceUrl) &&
arcgisPersistenceBackend.get(featureServiceUrl).connected() ){
LOGGER.debug("Using persistenceBackend which contains key for Feature table: " + featureServiceUrl);
LOGGER.info("Using persistenceBackend which contains key for Feature table: " + featureServiceUrl);
return arcgisPersistenceBackend.get(featureServiceUrl);
} else {
LOGGER.debug("Creating new persistenceBackend for Feature table: " + featureServiceUrl);
LOGGER.info("Creating new persistenceBackend for Feature table: " + featureServiceUrl);
LOGGER.debug("Token url: " + getGetTokenUrl());
try {
NGSIArcgisFeatureTable newTable = new NGSIArcgisFeatureTable(featureServiceUrl, getUsername(),
Expand Down

0 comments on commit 5e71ef4

Please sign in to comment.