Skip to content

Commit 2621f82

Browse files
committed
[py] add more logging to driver startup
1 parent 6f7c5ac commit 2621f82

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

py/selenium/webdriver/common/service.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,13 @@ def _start_process(self, path: str) -> None:
212212
startupinfo=start_info,
213213
**self.popen_kw,
214214
)
215-
logger.debug("Started executable: `%s` in a child process with pid: %s", self._path, self.process.pid)
215+
logger.debug(
216+
"Started executable: `%s` in a child process with pid: %s using %s to output %s",
217+
self._path,
218+
self.process.pid,
219+
self.creation_flags,
220+
self.log_output,
221+
)
216222
except TypeError:
217223
raise
218224
except OSError as err:

0 commit comments

Comments
 (0)