Skip to content

Commit d257645

Browse files
cleanup
1 parent e765368 commit d257645

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

py/selenium/webdriver/common/service.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ def __init__(
5454
env: typing.Optional[typing.Mapping[typing.Any, typing.Any]] = None,
5555
**kwargs,
5656
) -> None:
57-
print("__init__ Main Service")
5857
if isinstance(log_output, str):
5958
self.log_output = open(log_output, "a+", encoding="utf-8")
6059
elif log_output is subprocess.STDOUT:

py/selenium/webdriver/ie/service.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ def __init__(
3939
- executable_path : Path to the IEDriver
4040
- port : Port the service is running on
4141
- host : IP address the service port is bound
42-
- log_level : Level of logging of service, may be "DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL".
43-
Default is "WARNING".
42+
- log_level : Level of logging of service, may be "FATAL", "ERROR", "WARN", "INFO", "DEBUG", "TRACE".
43+
Default is "FATAL".
4444
- log_output: (Optional) int representation of STDOUT/DEVNULL, any IO instance or String path to file.
4545
Default is "stdout".
4646
"""

0 commit comments

Comments
 (0)