Sha256: 4b11351254cc2560e7b10501e49a09cf123b5d312575cce501ccae6bf006ec47

Contents?: true

Size: 1.21 KB

Versions: 5

Compression:

Stored size: 1.21 KB

Contents

#          Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com
# All files in this distribution are subject to the terms of the MIT license.

module Ramaze
  module Logger
    ##
    # Bundles different informer instances and sends incoming messages to each.
    # This is the default with Informer as only member.
    #
    class LogHub
      include Logging

      attr_accessor :loggers
      attr_accessor :ignored_tags

      ##
      # Takes a list of instances or classes (which will be initialized) and that
      # are added to @loggers. All messages are then sent to each member.
      #
      # @param [Array] loggers
      #
      def initialize(*loggers)
        @loggers = loggers
        @ignored_tags = Set.new
        @loggers.map! do |logger|
          next(nil) if logger == self
          logger.is_a?(Class) ? logger.new : logger
        end
        @loggers.uniq!
        @loggers.compact!
      end

      ##
      # Integration to Logging
      #
      # @param [String] tag
      # @param [Hash] args
      #
      def log(tag, *args)
        return if @ignored_tags.include?(tag)
        @loggers.each do |logger|
          logger.log(tag, *args)
        end
      end
    end # Hub
  end # log
end # Ramaze

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ramaze-2023.01.06 lib/ramaze/log/hub.rb
ramaze-2012.12.08 lib/ramaze/log/hub.rb
ramaze-2012.12.08b lib/ramaze/log/hub.rb
ramaze-2012.04.14 lib/ramaze/log/hub.rb
ramaze-2012.03.07 lib/ramaze/log/hub.rb