Skip to content

Commit

Permalink
Remove not useful redundant logging (#911)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggallotti authored Oct 31, 2024
1 parent 4f92ac8 commit 276cbd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -727,8 +727,7 @@ private boolean checkFileExists(String fileName)
boolean fileExists = false;
try
{
fileExists = ApplicationContext.getInstance().checkIfResourceExist(getDefaultPath() + staticContentBase + fileName);
com.genexus.diagnostics.Log.info("Searching if file exists (" + fileName + "). Found: " + String.valueOf(fileExists));
fileExists = ApplicationContext.getInstance().checkIfResourceExist(getDefaultPath() + staticContentBase + fileName);
}
catch (Exception e)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,7 @@ public HttpClientJavaLib() {
getPoolInstance();
ConnectionKeepAliveStrategy myStrategy = generateKeepAliveStrategy();
httpClientBuilder = HttpClients.custom().setConnectionManager(connManager).setConnectionManagerShared(true).setKeepAliveStrategy(myStrategy);
cookies = new BasicCookieStore();
logger.info("Using apache http client implementation");
cookies = new BasicCookieStore();
streamsToClose = new Vector<>();
}

Expand Down

0 comments on commit 276cbd1

Please sign in to comment.