Browse Source

added debug logging to hystrix dashboard proxy servlet

pull/6/head
Spencer Gibb 10 years ago
parent
commit
20bb1af655
  1. 4
      spring-cloud-netflix-hystrix-dashboard/src/main/java/org/springframework/cloud/netflix/hystrix/dashboard/HystrixDashboardConfiguration.java

4
spring-cloud-netflix-hystrix-dashboard/src/main/java/org/springframework/cloud/netflix/hystrix/dashboard/HystrixDashboardConfiguration.java

@ -187,6 +187,10 @@ public class HystrixDashboardConfiguration { @@ -187,6 +187,10 @@ public class HystrixDashboardConfiguration {
}
}
}
else {
log.debug("Failed opening connection to " + proxyUrl + " : "
+ statusCode + " : " + httpResponse.getStatusLine());
}
}
catch (Exception ex) {
log.error("Error proxying request: " + url, ex);

Loading…
Cancel
Save