Skip to content

Commit

Permalink
In Manager.DriverManager constructor named argument log_level is neve…
Browse files Browse the repository at this point in the history
…r passed to log() function (#172)
  • Loading branch information
harishankarindora authored Jul 27, 2021
1 parent ed07277 commit f687370
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webdriver_manager/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def __init__(self, root_dir=None, log_level=None, print_first_line=None, cache_v
self.driver_cache = DriverCache(root_dir, cache_valid_range)
if os.environ.get('WDM_PRINT_FIRST_LINE', str(print_first_line)) == 'True':
log("\n", formatter='%(message)s')
log("====== WebDriver manager ======")
log("====== WebDriver manager ======", level=log_level)

def install(self):
raise NotImplementedError("Please Implement this method")
Expand Down

0 comments on commit f687370

Please sign in to comment.