Sha256: 22e216439edeac96b9144bb7558aa86c5f32280b3bf98ac219fde183f68d5f23
Contents?: true
Size: 581 Bytes
Versions: 6
Compression:
Stored size: 581 Bytes
Contents
# frozen_string_literal: true require "active_support/cache/file_store" Ductr.configure do |config| # Store configuration. # # You can pass an `ActiveSupport::Cache::Store` class or a symbol config.store(ActiveSupport::Cache::FileStore, "tmp/store") # Logging configuration. # # The following logging levels are available: # :debug, :info, :warn, :error, :fatal config.logging.level = :debug # Append logs to the stdout by default, you can add/replace outputs at will. config.logging.add_output(Ductr::Log::StandardOutput, Ductr::Log::ColorFormatter) end
Version data entries
6 entries across 6 versions & 1 rubygems