fatal?()
public
True if the log level allows entries
with severity Logger::FATAL to be written to at least one broadcast. False otherwise.
# File activesupport/lib/active_support/broadcast_logger.rb, line 212
def fatal?
@broadcasts.any? { |logger| logger.fatal? }
end