Joe Risner
01/22/2024, 7:54 PMpact-ruby on the provider and pact-js on the consumer. When I run the provider verification, I see WARN logs for
> WARN: Ignoring unsupported combine AND for path
On the consumer side, we're using matchers from the V2 version, not V3, since V3 matchers aren't yet supported by pact-ruby. Still seeing these logs, though. Is there any way to suppress these logs on provider verifications other than by increasing the log level to ERROR?
Thanks.Joe Risner
01/29/2024, 6:34 PMpact-ruby related. I've tried configuring the logger as outlined below, to no avail unfortunately. Do you happen to have any suggestions on suppressing these in console output?
Tried both:
Pact.configure do |config|
config.logger = Logger.new($stderr, level: Logger::ERROR)
end
Pact.configure do |config|
config.logger = Logger.new($stderr)
config.logger.level = Logger::ERROR
end