method

local_level=

Importance_0
v7.2.3 - Show latest stable - 0 notes - Class: BroadcastLogger
local_level=(level) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/broadcast_logger.rb, line 107
    def local_level=(level)
      @broadcasts.each do |logger|
        logger.local_level = level if logger.respond_to?(:local_level=)
      end
    end
Register or log in to add new notes.