Files
spring-cloud-contract/docs/modules/ROOT/pages/howto/how-to-debug-wiremock.adoc
Marcin Grzejszczak 0159bcde09 Updated antora docs
2023-09-14 15:43:24 +02:00

19 lines
544 B
Plaintext

[[how-to-debug-wiremock]]
= How Can I Debug the Mapping, Request, or Response Being Sent by WireMock?
include::partial$_attributes.adoc[]
Starting from version `1.2.0`, we set WireMock logging to
`info` and set the WireMock notifier to being verbose. Now you can
exactly know what request was received by the WireMock server and which
matching response definition was picked.
To turn off this feature, set WireMock logging to `ERROR`, as follows:
[source,properties,indent=0]
----
logging.level.com.github.tomakehurst.wiremock=ERROR
----