Skip to content

Commit

Permalink
Make --verify-log-full not override log level
Browse files Browse the repository at this point in the history
  • Loading branch information
gsnedders committed Jun 5, 2018
1 parent 5bd42c1 commit d564a34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/wptrunner/wptrunner/stability.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,8 @@ def run_step(logger, iterations, restart_after_iteration, kwargs_extras, **kwarg
kwargs.update(kwargs_extras)

def wrap_handler(x):
x = LogLevelFilter(x, "WARNING")
if not kwargs["verify_log_full"]:
x = LogLevelFilter(x, "WARNING")
x = LogActionFilter(x, ["log", "process_output"])
return x

Expand Down

0 comments on commit d564a34

Please sign in to comment.