19 lines
544 B
Plaintext
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
|
|
----
|
|
|