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