20

我看到有关于在http://wiremock.org/running-standalone.html上以独立方式运行wiremock 时启用详细日志记录的说明(参见--verbose)。

从java代码启动它时如何启用它?

4

3 回答 3

22

如果您使用的是 JUnit 规则,则可以将通知程序设置为详细模式,如下所示:

@Rule
public WireMockRule serviceMock = new WireMockRule(new WireMockConfiguration().notifier(new Slf4jNotifier(true)));
于 2016-10-27T14:18:56.343 回答
9

WireMock 使用 SLF4J。将类别的级别设置com.github.tomakehurst.wiremockTRACE。请查阅SLF4J 手册以了解如何在您的情况下完成此操作。

于 2016-01-27T03:23:01.617 回答
0

将通知程序设置为 ConsoleNotifier(true)。

WireMockRule wireMockRule = new WireMockRule(WireMockConfiguration.options().port(8080).httpsPort(443)
.notifier(new ConsoleNotifier(true)).extensions(new ResponseTemplateTransformer(true)));
于 2020-03-17T04:26:29.090 回答