mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-22 00:59:34 +01:00
removed unnecassary stacktrace from logs per issue #544
This commit is contained in:
@@ -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();
|
||||||
|
|||||||
Reference in New Issue
Block a user