Remove stack trace output

Signed-off-by: Andrew DeMaria <lostonamountain@gmail.com>
This commit is contained in:
Andrew DeMaria
2017-03-14 21:12:00 -06:00
parent f8a0aa8e0a
commit b9b34d22d7
@@ -46,7 +46,7 @@ public class NetworkService {
try {
uri = calculateProxyUri(request);
} catch (Exception e) {
LOG.debug("Could not calculate proxy uri", e);
LOG.debug("Could not calculate proxy uri: " + e.getMessage());
uri = calculateNonProxyUri(request);
}
@@ -54,7 +54,7 @@ public class NetworkService {
LOG.debug("Calculated base url to " + baseUrl);
return baseUrl;
} catch (MalformedURLException | URISyntaxException e) {
throw new RuntimeException("Could not calculate base url", e);
throw new RuntimeException("Could not calculate base url: " + e.getMessage());
}
}