Skip to content

Commit

Permalink
do not need an extra log message that manager is being used
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Jul 21, 2023
1 parent 9d08a5c commit 0f5acf2
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion java/src/org/openqa/selenium/manager/SeleniumManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@ private String getBrowserBinary(Capabilities options) {
* @return the location of the driver.
*/
public String getDriverPath(Capabilities options, boolean offline) {
LOG.fine("Applicable driver not found; attempting to install with Selenium Manager (Beta)");
File binaryFile = getBinary();
if (binaryFile == null) {
return null;
Expand Down
2 changes: 0 additions & 2 deletions py/selenium/webdriver/common/selenium_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@ def driver_location(self, options: BaseOptions) -> str:
:Returns: The driver path to use
"""

logger.debug("Applicable driver not found; attempting to install with Selenium Manager (Beta)")

browser = options.capabilities["browserName"]

args = [str(self.get_binary()), "--browser", browser, "--output", "json"]
Expand Down
3 changes: 0 additions & 3 deletions rb/lib/selenium/webdriver/common/selenium_manager.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@ def bin_path
# @param [Options] options browser options.
# @return [String] the path to the correct driver.
def driver_path(options)
message = 'applicable driver not found; attempting to install with Selenium Manager (Beta)'
WebDriver.logger.debug(message, id: :selenium_manager)

command = generate_command(binary, options)

location = run(*command)
Expand Down

0 comments on commit 0f5acf2

Please sign in to comment.