Skip to content

Commit 827efd4

Browse files
committed
[rb] make logging of test guards debug level not info
logs are too noisy as info
1 parent 0e9e9de commit 827efd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rb/lib/selenium/webdriver/support/guards.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def initialize(example, bug_tracker: '', conditions: nil)
4040
def add_condition(name, condition = false, &block)
4141
condition = false if condition.nil?
4242
@guard_conditions << GuardCondition.new(name, condition, &block)
43-
WebDriver.logger.info "Running with Guard '#{name}' set to: #{condition}"
43+
WebDriver.logger.debug "Running with Guard '#{name}' set to: #{condition}"
4444
end
4545

4646
def add_message(name, message)

0 commit comments

Comments
 (0)