Remove stack trace output

Signed-off-by: Andrew DeMaria <lostonamountain@gmail.com>
master
Andrew DeMaria 8 years ago
parent f8a0aa8e0a
commit b9b34d22d7
  1. 4
      libresonic-main/src/main/java/org/libresonic/player/service/NetworkService.java

@ -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());
}
}

Loading…
Cancel
Save