method
log
v4.2.9 -
Show latest stable
- Class:
ActiveSupport::Cache::Store
log(operation, key, options = nil)private
No documentation available.
# File activesupport/lib/active_support/cache.rb, line 550
def log(operation, key, options = nil)
return unless logger && logger.debug? && !silence?
logger.debug("Cache #{operation}: #{key}#{options.blank? ? "" : " (#{options.inspect})"}")
end