Chrome Flags Reference

Chrome command line switches and startup flags for automation, headless mode, and debugging.

--glic-host-logging

What does --glic-host-logging do?

Whether additional logging is enabled in the glic api host.

Usage

CLILaunch Chrome with --glic-host-logging using CLI

chrome --glic-host-logging

PuppeteerLaunch Chrome with --glic-host-logging using Puppeteer

const browser = await puppeteer.launch({
  args: ['--glic-host-logging']
});

PlaywrightLaunch Chrome with --glic-host-logging using Playwright

const browser = await chromium.launch({
  args: ['--glic-host-logging']
});

SeleniumLaunch Chrome with --glic-host-logging using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--glic-host-logging')

driver = webdriver.Chrome(options=options)

Build Conditions

ANDROID!(CHROMEOS)MACWINENABLE_GLIC