Simple question: how to completely disable logging when using Selenium from Python bindings, ex code as follows:
browser = webdriver.Chrome()
Just example for Windows people:
webdriver.Firefox(log_path='NUL')
Accepted answer is correct, but if you are new to Python / windows like i am, example like this will cut you few hours of google time.