1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 09:57:02 +01:00

Set Chrome logger to level 3: Log_Fatal (#14044)

This commit is contained in:
seaona 2022-03-18 18:45:23 +01:00 committed by GitHub
parent 0c8c272521
commit 22306826ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,6 +18,7 @@ class ChromeDriver {
if (responsive) {
args.push('--auto-open-devtools-for-tabs');
}
args.push('--log-level=3');
const options = new chrome.Options().addArguments(args);
options.setProxy(proxy.manual({ https: HTTPS_PROXY_HOST }));
options.setAcceptInsecureCerts(true);