Removing locations logging in ResourceHttpRequestHandler

See gh-27575
This commit is contained in:
Rossen Stoyanchev
2021-10-19 12:25:11 +01:00
parent a248a52575
commit 05ea991d62
2 changed files with 0 additions and 12 deletions

View File

@@ -336,12 +336,6 @@ public class ResourceWebHandler implements WebHandler, InitializingBean {
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.");
}
}
/**

View File

@@ -467,12 +467,6 @@ public class ResourceHttpRequestHandler extends WebContentGenerator
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.");
}
}
/**