MCPcopy Create free account
hub / github.com/SeleniumHQ/selenium / removeHandler

Method removeHandler

javascript/selenium-webdriver/lib/logging.js:338–343  ·  view source on GitHub ↗

* Removes a handler from this logger. * * @param {function(!Entry)} handler the handler to remove. * @return {boolean} whether a handler was successfully removed.

(handler)

Source from the content-addressed store, hash-verified

336 * @return {boolean} whether a handler was successfully removed.
337 */
338 removeHandler(handler) {
339 if (!this.handlers_) {
340 return false
341 }
342 return this.handlers_.delete(handler)
343 }
344
345 /**
346 * Logs a message at the given level. The message may be defined as a string

Callers 8

captureLogRecordsMethod · 0.95
removeConsoleHandlerFunction · 0.80
logging_test.jsFile · 0.80
logging.jsFile · 0.80
endLogCaptureMethod · 0.80

Calls 1

deleteMethod · 0.45