Skip to content

Commit

Permalink
Add some debug logspam
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeZielinski committed Oct 4, 2019
1 parent cf29fd0 commit 8661ef1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/webdriver/webdriver/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ def send_command(self, method, url, body=None):

if response.status != 200:
err = error.from_response(response)

print("Lpz: got an error %s\n" % str(err))
if isinstance(err, error.InvalidSessionIdException):
# The driver could have already been deleted the session.
self.session_id = None
Expand Down
2 changes: 1 addition & 1 deletion tools/wptrunner/wptrunner/wptcommandline.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def create_parser(product_choices=None):
parser.add_argument("--processes", action="store", type=int, default=None,
help="Number of simultaneous processes to use")

parser.add_argument("--no-capture-stdio", action="store_true", default=False,
parser.add_argument("--no-capture-stdio", action="store_true", default=True,
help="Don't capture stdio and write to logging")
parser.add_argument("--no-fail-on-unexpected", action="store_false",
default=True,
Expand Down

0 comments on commit 8661ef1

Please sign in to comment.