class Dynflow::LoggerAdapters::Delegator
Attributes
action_logger[R]
dynflow_logger[R]
Public Class Methods
new(action_logger, dynflow_logger, formatters = [Formatters::Exception])
click to toggle source
# File lib/dynflow/logger_adapters/delegator.rb, line 7 def initialize(action_logger, dynflow_logger, formatters = [Formatters::Exception]) @action_logger = apply_formatters action_logger, formatters @dynflow_logger = apply_formatters dynflow_logger, formatters end