Reduce output from connection retry

This commit is contained in:
Liam Newman
2020-01-29 17:00:48 -08:00
parent 92a86f4d1c
commit c5c8596664
2 changed files with 5 additions and 6 deletions

View File

@@ -549,9 +549,9 @@ class Requester {
|| e instanceof SSLHandshakeException;
if (connectionError && retries > 0) {
LOGGER.log(INFO,
"Error while connecting to " + uc.getURL() + ". Sleeping " + Requester.retryTimeoutMillis
+ " milliseconds before retrying... ; will try " + retries + " more time(s)",
e);
e.getMessage() + " while connecting to " + uc.getURL() + ". Sleeping "
+ Requester.retryTimeoutMillis + " milliseconds before retrying... ; will try " + retries
+ " more time(s)");
try {
Thread.sleep(Requester.retryTimeoutMillis);
} catch (InterruptedException ie) {