Sha256: ecedb3d051ae1623c96e03b014f8c9afc263b54b2d6fd5e68860b0c7bc639769
Contents?: true
Size: 1.67 KB
Versions: 3
Compression:
Stored size: 1.67 KB
Contents
# namespace module TeeLogger # configuration module Configration extend Gem::Deprecate # @attr logdev [String, File] # @attr level [Logger::Severity, Integer] # @attr progname [String, Symbol] # @attr formatter [Logger::Formatter, Proc] # @attr datetime_format [String] Configration = Struct.new(:logdev, :level, :progname, :formatter, :datetime_format) # Yields the global configuration to a block. # @yield [Configuration] global configuration def configure yield configuration if block_given? end # reset configuration def configuration_reset @configuration = nil end # set TeeLogger::Configuration::Configration's member :logdev. # extend or include TeeLogger then, :logdev is default argument # for Logger.new(logdev). # @param logdev [String, File] def logdev=(logdev) configuration.logdev = logdev end deprecate :logdev=, 'TeeLogger.configure', 2016, 1 # @return [String, File] `configuration.logdev` or `DEFAULT_FILE`. def logdev configuration.logdev || DEFAULT_FILE end # @return `configuration.level` def level configuration.level end # @return `configuration.progname` def progname configuration.progname end # @return `configuration.formatter` def formatter configuration.formatter end # @return `configuration.datetime_format` def datetime_format configuration.datetime_format end private def configuration @configuration ||= Configration.new end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
tee_logger-3.2.4 | lib/tee_logger/configuration.rb |
tee_logger-3.2.3 | lib/tee_logger/configuration.rb |
tee_logger-3.2.2 | lib/tee_logger/configuration.rb |