removed unnecassary stacktrace from logs per issue #544

This commit is contained in:
Jeremy Long
2016-08-18 09:59:21 -04:00
parent 48bc4570e1
commit 36de3d1e25

View File

@@ -220,11 +220,11 @@ public class EngineVersionCheck implements CachedWebDataSource {
return releaseVersion.trim(); return releaseVersion.trim();
} }
} catch (MalformedURLException ex) { } catch (MalformedURLException ex) {
LOGGER.debug("Unable to retrieve current release version of dependency-check", ex); LOGGER.debug("Unable to retrieve current release version of dependency-check - malformed url?");
} catch (URLConnectionFailureException ex) { } catch (URLConnectionFailureException ex) {
LOGGER.debug("Unable to retrieve current release version of dependency-check", ex); LOGGER.debug("Unable to retrieve current release version of dependency-check - connection failed");
} catch (IOException ex) { } catch (IOException ex) {
LOGGER.debug("Unable to retrieve current release version of dependency-check", ex); LOGGER.debug("Unable to retrieve current release version of dependency-check - i/o exception");
} finally { } finally {
if (conn != null) { if (conn != null) {
conn.disconnect(); conn.disconnect();