Sha256: 1c2ebeb100eb3988c56f4ee5400e6df1a5470309e066510bbf5d28cca1b444eb
Contents?: true
Size: 414 Bytes
Versions: 4
Compression:
Stored size: 414 Bytes
Contents
if ActiveSupport::VERSION::STRING == "7.1.1" require "active_support/log_subscriber" module ActiveSupport class LogSubscriber # @override Rails 7.1 def silenced?(event) native_log_level = @event_levels.fetch(event, ::Logger::Severity::FATAL) logger.nil? || SemanticLogger::Levels.index(logger.level) > SemanticLogger::Levels.index(native_log_level) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems