I use the below that I found on SO here
options = webdriver.ChromeOptions()
# disable some annoying debug output to console
options.add_argument('--log-level=3')
options.add_experimental_option('excludeSwitches', ['enable-logging'])
browser = webdriver.Chrome(
"C://Program Files (x86)//Google//Chrome//Application//chromedriver.exe", options=options)
CLICK HERE to find out more related problems solutions.