Skip to content

Commit

Permalink
Removing locations logging in ResourceHttpRequestHandler
Browse files Browse the repository at this point in the history
  • Loading branch information
rstoyanchev committed Oct 19, 2021
1 parent a248a52 commit 05ea991
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
Expand Up @@ -336,12 +336,6 @@ private void resolveResourceLocations() {

this.locationsToUse.clear();
this.locationsToUse.addAll(result);

if (logger.isInfoEnabled()) {
logger.info(!this.locationsToUse.isEmpty() ?
"Locations in use: " + locationToString(this.locationsToUse) :
"0 locations in use.");
}
}

/**
Expand Down
Expand Up @@ -467,12 +467,6 @@ private void resolveResourceLocations() {

this.locationsToUse.clear();
this.locationsToUse.addAll(result);

if (logger.isInfoEnabled()) {
logger.info(!this.locationsToUse.isEmpty() ?
"Locations in use: " + locationToString(this.locationsToUse) :
"0 locations in use.");
}
}

/**
Expand Down

0 comments on commit 05ea991

Please sign in to comment.