--enable-gpu-driver-debug-logging
What does --enable-gpu-driver-debug-logging do?
Enable logging of GPU driver debug messages.
Usage
CLILaunch Chrome with --enable-gpu-driver-debug-logging using CLI
chrome --enable-gpu-driver-debug-loggingPuppeteerLaunch Chrome with --enable-gpu-driver-debug-logging using Puppeteer
const browser = await puppeteer.launch({
args: ['--enable-gpu-driver-debug-logging']
});PlaywrightLaunch Chrome with --enable-gpu-driver-debug-logging using Playwright
const browser = await chromium.launch({
args: ['--enable-gpu-driver-debug-logging']
});SeleniumLaunch Chrome with --enable-gpu-driver-debug-logging using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--enable-gpu-driver-debug-logging')
driver = webdriver.Chrome(options=options)