Sha256: 010db480639dbbee5ecf35fcbab8c12f795f78783099325d7215620129675011

Contents?: true

Size: 943 Bytes

Versions: 3

Compression:

Stored size: 943 Bytes

Contents

# frozen_string_literal: true

module Logster
  class Configuration
    attr_accessor(
      :allow_grouping,
      :application_version,
      :current_context,
      :env_expandable_keys,
      :enable_custom_patterns_via_ui,
      :enable_js_error_reporting,
      :environments,
      :rate_limit_error_reporting,
      :web_title
    )

    attr_writer :subdirectory

    def initialize
      # lambda |env,block|
      @current_context = lambda { |_, &block| block.call }
      @environments = [:development, :production]
      @subdirectory = nil
      @env_expandable_keys = []
      @enable_custom_patterns_via_ui = false
      @rate_limit_error_reporting = true
      @enable_js_error_reporting = true

      @allow_grouping = false

      if defined?(::Rails) && defined?(::Rails.env) && ::Rails.env.production?
        @allow_grouping = true
      end
    end

    def subdirectory
      @subdirectory || '/logs'
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
logster-2.4.0 lib/logster/configuration.rb
logster-2.3.3 lib/logster/configuration.rb
logster-2.3.2 lib/logster/configuration.rb