class ActiveSupport::BroadcastLogger

def fatal?

to at least one broadcast. +False+ otherwise.
+True+ if the log level allows entries with severity Logger::FATAL to be written
def fatal?
  @broadcasts.any? { |logger| logger.fatal? }
end