lib/active_genie/configuration/log_config.rb
module ActiveGenie::Configuration class LogConfig attr_writer :log_level def log_level @log_level ||= :info end def to_h(config = {}) { log_level: }.merge(config) end end end
module ActiveGenie::Configuration class LogConfig attr_writer :log_level def log_level @log_level ||= :info end def to_h(config = {}) { log_level: }.merge(config) end end end