MCPcopy Index your code
hub / github.com/SeleniumHQ/selenium / logOutput

Function logOutput

javascript/selenium-webdriver/common/seleniumManager.js:103–112  ·  view source on GitHub ↗
(output)

Source from the content-addressed store, hash-verified

101}
102
103function logOutput(output) {
104 for (const key in output.logs) {
105 if (output.logs[key].level === 'WARN') {
106 log_.warning(`${output.logs[key].message}`)
107 }
108 if (['DEBUG', 'INFO'].includes(output.logs[key].level)) {
109 log_.debug(`${output.logs[key].message}`)
110 }
111 }
112}
113
114// PUBLIC API
115module.exports = { binaryPaths }

Callers 1

binaryPathsFunction · 0.85

Calls 2

warningMethod · 0.80
debugMethod · 0.45

Tested by

no test coverage detected