Skip to content

Commit

Permalink
Remove extra logs
Browse files Browse the repository at this point in the history
  • Loading branch information
spectranaut committed Jul 17, 2024
1 parent 90e5d94 commit b5c17b6
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion tools/wpt/virtualenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ def bin_path(self):

@property
def pip_path(self):
print(f"pip_path, self.bin_path is {self.bin_path}", file=sys.stderr)
path = which("pip3", path=self.bin_path)
if path is None:
path = which("pip", path=self.bin_path)
Expand Down
1 change: 0 additions & 1 deletion tools/wpt/wpt.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ def create_complete_parser():
# `wpt build-docs` command but we need to look up the environment to
# find out where it's located.
venv_path = os.environ["VIRTUAL_ENV"]
print(f"venv_path: {venv_path}", file=sys.stderr)
venv = virtualenv.Virtualenv(venv_path, True)

for command in commands:
Expand Down
2 changes: 1 addition & 1 deletion tools/wptrunner/wptrunner/executors/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,7 @@ def process_complete(self, url, payload):
def process_action(self, url, payload):
action = payload["action"]
cmd_id = payload["id"]
self.logger.info(f"Got action: {action}")
self.logger.debug(f"Got action: {action}")
try:
action_handler = self.actions[action]
except KeyError as e:
Expand Down
1 change: 0 additions & 1 deletion tools/wptrunner/wptrunner/testdriver-extra.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@
return selector;
};

// NOTE(alice): this is where the action is :D
const create_action = function(name, props) {
let cmd_id;
const action_msg = {type: "action",
Expand Down
2 changes: 1 addition & 1 deletion tools/wptrunner/wptrunner/testrunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ def wait_event(self):
}
try:
command, data = self.command_queue.get(True, 1)
# self.logger.debug("Got command: %r" % command)
self.logger.debug("Got command: %r" % command)
except OSError:
self.logger.error("Got IOError from poll")
return RunnerManagerState.restarting(self.state.subsuite,
Expand Down

0 comments on commit b5c17b6

Please sign in to comment.