MCPcopy Create free account
hub / github.com/seleniumbase/SeleniumBase / log_d

Function log_d

seleniumbase/core/browser_launcher.py:104–110  ·  view source on GitHub ↗

If setting sb_config.settings.HIDE_DRIVER_DOWNLOADS to True, output from driver downloads are logged instead of printed.

(message)

Source from the content-addressed store, hash-verified

102
103
104def log_d(message):
105 """If setting sb_config.settings.HIDE_DRIVER_DOWNLOADS to True,
106 output from driver downloads are logged instead of printed."""
107 if getattr(settings, "HIDE_DRIVER_DOWNLOADS", None):
108 logging.debug(message)
109 else:
110 print(message)
111
112
113def override_driver_dir(driver_dir):

Callers 4

override_driver_dirFunction · 0.70
_repair_edgedriverFunction · 0.70
get_driverFunction · 0.70
get_local_driverFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…