# File lib/action_controller/caching.rb, line 278 def write_fragment(name, content, options = {}) return unless perform_caching key = fragment_cache_key(name) fragment_cache_store.write(key, content, options) logger.info "Cached fragment: #{key}" unless logger.nil? content end