--enable-sandbox-logging
What does --enable-sandbox-logging do?
Cause the OS X sandbox write to syslog every time an access to a resource is denied by the sandbox.
Usage
CLILaunch Chrome with --enable-sandbox-logging using CLI
chrome --enable-sandbox-loggingPuppeteerLaunch Chrome with --enable-sandbox-logging using Puppeteer
const browser = await puppeteer.launch({
args: ['--enable-sandbox-logging']
});PlaywrightLaunch Chrome with --enable-sandbox-logging using Playwright
const browser = await chromium.launch({
args: ['--enable-sandbox-logging']
});SeleniumLaunch Chrome with --enable-sandbox-logging using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--enable-sandbox-logging')
driver = webdriver.Chrome(options=options)Build Conditions
MAC