Sha256: 075bd73669cf85546dcfa08355f7d1198823a4ae2fabd57bbde7e6a257f396b1
Contents?: true
Size: 1.79 KB
Versions: 2
Compression:
Stored size: 1.79 KB
Contents
#-- # Configure logging #++ module Mack def self.logger $mack_default_logger end def self.logger=(log) $mack_default_logger = log end end unless Mack.logger log_directory = app_config.log_root || File.join(Mack.root, "log") FileUtils.mkdir_p(log_directory) Mack.logger = Log4r::Logger.new('') Mack.logger.level = Module.instance_eval("Log4r::#{(app_config.log_level || :info).to_s.upcase}") format = Log4r::PatternFormatter.new(:pattern => "%l:\t[%d]\t%M") if Mack.env == "development" # console: Mack.logger.add(Log4r::StdoutOutputter.new('console', :formatter => format)) end # file: Mack.logger.add(Log4r::FileOutputter.new('fileOutputter', :filename => File.join(log_directory, "#{Mack.env}.log"), :trunc => false, :formatter => format)) end module Mack module Logging # :nodoc: # Used to house a list of filters for parameter logging. The initial list # includes password and password_confirmation class Filter include Singleton # The list of parameters you want filtered for logging. attr_reader :list def initialize @list = [:password, :password_confirmation] end # Adds 'n' number of parameter names to the list def add(*args) @list << args @list.flatten! end # Removes 'n' number of parameter names from the list def remove(*args) @list.delete_values(*args) end class << self def remove(*args) Mack::Logging::Filter.instance.remove(*args) end def add(*args) Mack::Logging::Filter.instance.add(*args) end def list Mack::Logging::Filter.instance.list end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mack-0.6.0 | lib/initialization/logging.rb |
mack-0.6.0.1 | lib/initialization/logging.rb |