Hello, I have an integration that uses `pact-ruby`...
# pact-ruby
j
Hello, I have an integration that uses
pact-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.
@Beth (pactflow.io/Pact Broker/pact-ruby) Sorry for the ping, but I figured you'd be the best to ask about this since it seems to be
pact-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?
Copy code
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