From 49a542e214afd15219e02fa58545e40ac178bafb Mon Sep 17 00:00:00 2001 From: Marcin Grzejszczak Date: Wed, 21 Jun 2017 06:57:13 +0200 Subject: [PATCH] Fixed the logging level for #329 --- .../stubrunner/provider/wiremock/WireMockHttpServerStub.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }