removeHandler method

bool removeHandler(
  1. BDLogHandler handler
)

Removes a log handler from the logger. The handler will no longer be used to process log records.

Implementation

bool removeHandler(final BDLogHandler handler) {
  return _handlers.remove(handler);
}