Fixed the logging level for #329

This commit is contained in:
Marcin Grzejszczak
2017-06-21 06:57:13 +02:00
parent 97380129a4
commit 49a542e214

View File

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