Skip to content

Commit 4e44e01

Browse files
committed
enable trace logging geckodriver [run ci]
1 parent e8ab563 commit 4e44e01

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/server/lib/browsers/firefox.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const debugVerbose = Debug('cypress-verbose:server:browsers:firefox')
3030
// packages. To see verbose logs from Firefox, set both of these options to the
3131
// DEBUG variable.
3232
const WEBDRIVER_DEBUG_NAMESPACE_VERBOSE = 'cypress-verbose:server:browsers:webdriver'
33-
const GECKODRIVER_DEBUG_NAMESPACE_VERBOSE = 'cypress-verbose:server:browsers:geckodriver'
33+
// const GECKODRIVER_DEBUG_NAMESPACE_VERBOSE = 'cypress-verbose:server:browsers:geckodriver'
3434

3535
// used to prevent the download prompt for the specified file types.
3636
// this should cover most/all file types, but if it's necessary to
@@ -579,9 +579,9 @@ export async function open (browser: Browser, url: string, options: BrowserLaunc
579579
...process.env,
580580
},
581581
},
582-
jsdebugger: Debug.enabled(GECKODRIVER_DEBUG_NAMESPACE_VERBOSE) || false,
583-
log: Debug.enabled(GECKODRIVER_DEBUG_NAMESPACE_VERBOSE) ? 'debug' : 'error',
584-
logNoTruncate: Debug.enabled(GECKODRIVER_DEBUG_NAMESPACE_VERBOSE),
582+
jsdebugger: false,
583+
log: 'trace',
584+
logNoTruncate: true,
585585
}
586586

587587
// since we no longer directly control the browser with webdriver, we need to make the browserInstance

0 commit comments

Comments
 (0)