Sha256: 81dc554dab39b4eae18336303fc7b1e78f5cd73fc7523c067053c8d69020a932

Contents?: true

Size: 693 Bytes

Versions: 1

Compression:

Stored size: 693 Bytes

Contents

# namespace
module TeeLogger
  # no param of filename, set this filename
  DEFAULT_FILE = './tee_logger.log'
  # Implements targets
  LOGGING_METHODS = [:debug, :info, :warn, :error, :fatal]
  # defined logdev names
  LOGDEV_NAMES = [:console, :logfile]
  # defined paired of logdev name
  LOGDEV_REVERSE = { console: :logfile, logfile: :console }

  FORMATTER_FOR_DISABLING = proc { |_severity, _time, _progname, _msg| '' }

  # using private method #parse_to_hash
  ParsedOption = Struct.new(:logdev_name, :indent_level)
  # LOGDEV_NAMES not included error
  class IncorrectNameError < StandardError; end
  # option's class is not allow
  class IncorrectOptionError < StandardError; end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tee_logger-3.1.0 lib/tee_logger/constants.rb