fixed logging bug

This commit is contained in:
Jeremy Long
2016-10-28 19:18:20 -04:00
parent 358367ef9e
commit 9c6053a60a

View File

@@ -154,7 +154,7 @@ public final class Downloader {
if ("Connection reset".equalsIgnoreCase(ex.getMessage())) { if ("Connection reset".equalsIgnoreCase(ex.getMessage())) {
final String msg = format("TLS Connection Reset%nPlease see " final String msg = format("TLS Connection Reset%nPlease see "
+ "http://jeremylong.github.io/DependencyCheck/general/tlsfailures.html " + "http://jeremylong.github.io/DependencyCheck/general/tlsfailures.html "
+ "for more information regarding how to resolve the issue.", url.toString()); + "for more information regarding how to resolve the issue.");
LOGGER.error(msg); LOGGER.error(msg);
throw new DownloadFailedException(msg, ex); throw new DownloadFailedException(msg, ex);
} }