diff --git a/spring-cloud-contract-stub-runner/src/main/java/org/springframework/cloud/contract/stubrunner/provider/wiremock/WireMockHttpServerStub.java b/spring-cloud-contract-stub-runner/src/main/java/org/springframework/cloud/contract/stubrunner/provider/wiremock/WireMockHttpServerStub.java index 28c0c06046..c63f3d4b23 100644 --- a/spring-cloud-contract-stub-runner/src/main/java/org/springframework/cloud/contract/stubrunner/provider/wiremock/WireMockHttpServerStub.java +++ b/spring-cloud-contract-stub-runner/src/main/java/org/springframework/cloud/contract/stubrunner/provider/wiremock/WireMockHttpServerStub.java @@ -74,7 +74,7 @@ public class WireMockHttpServerStub implements HttpServerStub { public HttpServerStub start() { if (isRunning()) { if (log.isDebugEnabled()) { - log.info("The server is already running at port [" + port() + "]"); + log.debug("The server is already running at port [" + port() + "]"); } return this; } @@ -92,7 +92,7 @@ public class WireMockHttpServerStub implements HttpServerStub { public HttpServerStub stop() { if (!isRunning()) { if (log.isDebugEnabled()) { - log.warn("Trying to stop a non started server!"); + log.debug("Trying to stop a non started server!"); } return this; }