Stopped logging WebAPI related exceptions

This commit is contained in:
Rsl1122 2017-09-27 19:57:14 +03:00
parent bbfb78d0b8
commit 161fe4bdd6

View File

@ -128,7 +128,6 @@ public abstract class WebAPI {
} catch (SocketTimeoutException e) {
throw new WebAPIConnectionFailException("Connection timed out after 10 seconds.", e);
} catch (NoSuchAlgorithmException | KeyManagementException | IOException e) {
Log.toLog(this.getClass().getName(), e);
throw new WebAPIConnectionFailException("API connection failed. address: " + address, e);
}
}