log_cache_store.rb 284 B

1234567
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. if Rails.application.config.cache_store.first.eql? :mem_cache_store
  3. Rails.logger.info 'Using memcached as Rails cache store.'
  4. else
  5. Rails.logger.info "Using Zammad's file store as Rails cache store."
  6. end