Enable logging for WebPageReplay recording phase (#3999)
* Add verbose logging to recording * Add possible to enable Chromedriver log
This commit is contained in:
parent
ddfaabec16
commit
09c1ebb60c
|
|
@ -123,6 +123,23 @@ async function runBrowsertime() {
|
|||
describe:
|
||||
'Short key to use Android. Will automatically use com.android.chrome for Chrome and stable Firefox. If you want to use another Chrome version, use --chrome.android.package'
|
||||
})
|
||||
.option('chrome.enableChromeDriverLog', {
|
||||
describe: 'Log Chromedriver communication to a log file.',
|
||||
type: 'boolean',
|
||||
group: 'chrome'
|
||||
})
|
||||
.option('chrome.enableVerboseChromeDriverLog', {
|
||||
describe: 'Log verboose Chromedriver communication to a log file.',
|
||||
type: 'boolean',
|
||||
group: 'chrome'
|
||||
})
|
||||
.option('verbose', {
|
||||
alias: ['v'],
|
||||
describe:
|
||||
'Verbose mode prints progress messages to the console. Enter up to three times (-vvv)' +
|
||||
' to increase the level of detail.',
|
||||
type: 'count'
|
||||
})
|
||||
.config(config);
|
||||
|
||||
const defaultConfig = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue