diff --git a/spring-cloud-sleuth-core/src/test/java/org/springframework/cloud/sleuth/instrument/web/client/feign/servererrors/FeignClientServerErrorTests.java b/spring-cloud-sleuth-core/src/test/java/org/springframework/cloud/sleuth/instrument/web/client/feign/servererrors/FeignClientServerErrorTests.java index 7715e9676..1fbbe84b0 100644 --- a/spring-cloud-sleuth-core/src/test/java/org/springframework/cloud/sleuth/instrument/web/client/feign/servererrors/FeignClientServerErrorTests.java +++ b/spring-cloud-sleuth-core/src/test/java/org/springframework/cloud/sleuth/instrument/web/client/feign/servererrors/FeignClientServerErrorTests.java @@ -97,6 +97,7 @@ public class FeignClientServerErrorTests { log.info("sending a request"); this.feignInterface.internalError(); } catch (HystrixRuntimeException e) { + log.info("Expected exception thrown", e); } Awaitility.await().untilAsserted(() -> { @@ -117,6 +118,7 @@ public class FeignClientServerErrorTests { log.info("sending a request"); this.feignInterface.notFound(); } catch (HystrixRuntimeException e) { + log.info("Expected exception thrown", e); } Awaitility.await().untilAsserted(() -> { @@ -136,6 +138,7 @@ public class FeignClientServerErrorTests { log.info("sending a request"); this.feignInterface.ok(); } catch (HystrixRuntimeException e) { + log.info("Expected exception thrown", e); } Awaitility.await().untilAsserted(() -> { @@ -156,6 +159,7 @@ public class FeignClientServerErrorTests { log.info("sending a request"); this.customConfFeignInterface.ok(); } catch (HystrixRuntimeException e) { + log.info("Expected exception thrown", e); } Awaitility.await().untilAsserted(() -> { @@ -176,6 +180,7 @@ public class FeignClientServerErrorTests { log.info("sending a request"); this.customConfFeignInterface.notFound(); } catch (HystrixRuntimeException e) { + log.info("Expected exception thrown", e); } Awaitility.await().untilAsserted(() -> {