我看到有关于在http://wiremock.org/running-standalone.html上以独立方式运行wiremock 时启用详细日志记录的说明(参见--verbose)。
从java代码启动它时如何启用它?
我看到有关于在http://wiremock.org/running-standalone.html上以独立方式运行wiremock 时启用详细日志记录的说明(参见--verbose)。
从java代码启动它时如何启用它?
如果您使用的是 JUnit 规则,则可以将通知程序设置为详细模式,如下所示:
@Rule
public WireMockRule serviceMock = new WireMockRule(new WireMockConfiguration().notifier(new Slf4jNotifier(true)));
WireMock 使用 SLF4J。将类别的级别设置com.github.tomakehurst.wiremock
为TRACE
。请查阅SLF4J 手册以了解如何在您的情况下完成此操作。
将通知程序设置为 ConsoleNotifier(true)。
WireMockRule wireMockRule = new WireMockRule(WireMockConfiguration.options().port(8080).httpsPort(443)
.notifier(new ConsoleNotifier(true)).extensions(new ResponseTemplateTransformer(true)));