Class: ActiveSupport::Logger
- Includes:
- LoggerSilence
- Defined in:
- activesupport/lib/active_support/logger.rb
Defined Under Namespace
Classes: SimpleFormatter
Class Method Summary collapse
-
.logger_outputs_to?(logger, *sources) ⇒ Boolean
Returns true if the logger destination matches one of the sources.
Instance Method Summary collapse
-
#initialize(*args, **kwargs) ⇒ Logger
constructor
A new instance of Logger.
Methods included from LoggerSilence
Methods included from Concern
#append_features, #class_methods, extended, #included, #prepend_features, #prepended
Constructor Details
#initialize(*args, **kwargs) ⇒ Logger
Returns a new instance of Logger.
33 34 35 36 |
# File 'activesupport/lib/active_support/logger.rb', line 33 def initialize(*args, **kwargs) super @formatter ||= SimpleFormatter.new end |
Class Method Details
.logger_outputs_to?(logger, *sources) ⇒ Boolean
Returns true if the logger destination matches one of the sources
logger = Logger.new(STDOUT)
ActiveSupport::Logger.logger_outputs_to?(logger, STDOUT)
# => true
logger = Logger.new('/var/log/rails.log')
ActiveSupport::Logger.logger_outputs_to?(logger, '/var/log/rails.log')
# => true
20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'activesupport/lib/active_support/logger.rb', line 20 def self.logger_outputs_to?(logger, *sources) loggers = if logger.is_a?(BroadcastLogger) logger.broadcasts else [logger] end logdevs = loggers.map { |logger| logger.instance_variable_get(:@logdev) } logger_sources = logdevs.filter_map { |logdev| logdev.try(:filename) || logdev.try(:dev) } normalize_sources(sources).intersect?(normalize_sources(logger_sources)) end |