Skip to content

Commit 0f5acf2

Browse files
committed
do not need an extra log message that manager is being used
1 parent 9d08a5c commit 0f5acf2

3 files changed

Lines changed: 0 additions & 6 deletions

File tree

java/src/org/openqa/selenium/manager/SeleniumManager.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,6 @@ private String getBrowserBinary(Capabilities options) {
224224
* @return the location of the driver.
225225
*/
226226
public String getDriverPath(Capabilities options, boolean offline) {
227-
LOG.fine("Applicable driver not found; attempting to install with Selenium Manager (Beta)");
228227
File binaryFile = getBinary();
229228
if (binaryFile == null) {
230229
return null;

py/selenium/webdriver/common/selenium_manager.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,6 @@ def driver_location(self, options: BaseOptions) -> str:
6868
:Returns: The driver path to use
6969
"""
7070

71-
logger.debug("Applicable driver not found; attempting to install with Selenium Manager (Beta)")
72-
7371
browser = options.capabilities["browserName"]
7472

7573
args = [str(self.get_binary()), "--browser", browser, "--output", "json"]

rb/lib/selenium/webdriver/common/selenium_manager.rb

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,6 @@ def bin_path
3737
# @param [Options] options browser options.
3838
# @return [String] the path to the correct driver.
3939
def driver_path(options)
40-
message = 'applicable driver not found; attempting to install with Selenium Manager (Beta)'
41-
WebDriver.logger.debug(message, id: :selenium_manager)
42-
4340
command = generate_command(binary, options)
4441

4542
location = run(*command)

0 commit comments

Comments
 (0)