Skip to content

Commit

Permalink
[py] add more logging to driver startup
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Nov 5, 2023
1 parent 6f7c5ac commit 2621f82
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion py/selenium/webdriver/common/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,13 @@ def _start_process(self, path: str) -> None:
startupinfo=start_info,
**self.popen_kw,
)
logger.debug("Started executable: `%s` in a child process with pid: %s", self._path, self.process.pid)
logger.debug(
"Started executable: `%s` in a child process with pid: %s using %s to output %s",
self._path,
self.process.pid,
self.creation_flags,
self.log_output,
)
except TypeError:
raise
except OSError as err:
Expand Down

0 comments on commit 2621f82

Please sign in to comment.