aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/caching.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-07-22 11:28:58 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-07-22 11:28:58 +0000
commit3835f6ab25053a64d9bac63bda5d3b62a242f91a (patch)
treea47eceab9c27958e4400746d687016c320783cfb /actionpack/lib/action_controller/caching.rb
parentd76439239dc7b8870afef34afccfedcd1ffd7ad0 (diff)
downloadrails-3835f6ab25053a64d9bac63bda5d3b62a242f91a.tar.gz
rails-3835f6ab25053a64d9bac63bda5d3b62a242f91a.tar.bz2
rails-3835f6ab25053a64d9bac63bda5d3b62a242f91a.zip
Changed caching/expiration/hit to report using the DEBUG log level and errors to use the ERROR log level instead of both using INFO
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1889 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_controller/caching.rb')
-rw-r--r--actionpack/lib/action_controller/caching.rb18
1 files changed, 9 insertions, 9 deletions
diff --git a/actionpack/lib/action_controller/caching.rb b/actionpack/lib/action_controller/caching.rb
index 0868e896b7..bad397c2a8 100644
--- a/actionpack/lib/action_controller/caching.rb
+++ b/actionpack/lib/action_controller/caching.rb
@@ -75,7 +75,7 @@ module ActionController #:nodoc:
def expire_page(path)
return unless perform_caching
File.delete(page_cache_path(path)) if File.exists?(page_cache_path(path))
- logger.info "Expired page: #{page_cache_file(path)}" unless logger.nil?
+ logger.debug "Expired page: #{page_cache_file(path)}" unless logger.nil?
end
# Manually cache the +content+ in the key determined by +path+. Example:
@@ -84,7 +84,7 @@ module ActionController #:nodoc:
return unless perform_caching
FileUtils.makedirs(File.dirname(page_cache_path(path)))
File.open(page_cache_path(path), "w+") { |f| f.write(content) }
- logger.info "Cached page: #{page_cache_file(path)}" unless logger.nil?
+ logger.debug "Cached page: #{page_cache_file(path)}" unless logger.nil?
end
# Caches the +actions+ using the page-caching approach that'll store the cache in a path within the page_cache_directory that
@@ -280,7 +280,7 @@ module ActionController #:nodoc:
key = fragment_cache_key(name)
fragment_cache_store.write(key, content, options)
- logger.info "Cached fragment: #{key}" unless logger.nil?
+ logger.debug "Cached fragment: #{key}" unless logger.nil?
content
end
@@ -289,7 +289,7 @@ module ActionController #:nodoc:
key = fragment_cache_key(name)
if cache = fragment_cache_store.read(key, options)
- logger.info "Fragment hit: #{key}" unless logger.nil?
+ logger.debug "Fragment hit: #{key}" unless logger.nil?
cache
else
false
@@ -307,10 +307,10 @@ module ActionController #:nodoc:
if key.is_a?(Regexp)
fragment_cache_store.delete_matched(key, options)
- logger.info "Expired fragments matching: #{key.source}" unless logger.nil?
+ logger.debug "Expired fragments matching: #{key.source}" unless logger.nil?
else
fragment_cache_store.delete(key, options)
- logger.info "Expired fragment: #{key}" unless logger.nil?
+ logger.debug "Expired fragment: #{key}" unless logger.nil?
end
end
@@ -362,7 +362,7 @@ module ActionController #:nodoc:
ensure_cache_path(File.dirname(real_file_path(name)))
File.open(real_file_path(name), "w+") { |f| f.write(value) }
rescue => e
- Base.logger.info "Couldn't create cache directory: #{name} (#{e.message})" unless Base.logger.nil?
+ Base.logger.error "Couldn't create cache directory: #{name} (#{e.message})" unless Base.logger.nil?
end
def read(name, options = {}) #:nodoc:
@@ -372,7 +372,7 @@ module ActionController #:nodoc:
def delete(name, options) #:nodoc:
File.delete(real_file_path(name))
rescue SystemCallError => e
- Base.logger.info "Couldn't expire cache #{name} (#{e.message})" unless Base.logger.nil?
+ Base.logger.error "Couldn't expire cache #{name} (#{e.message})" unless Base.logger.nil?
end
def delete_matched(matcher, options) #:nodoc:
@@ -381,7 +381,7 @@ module ActionController #:nodoc:
begin
File.delete(f)
rescue Object => e
- Base.logger.info "Couldn't expire cache: #{f} (#{e.message})" unless Base.logger.nil?
+ Base.logger.error "Couldn't expire cache: #{f} (#{e.message})" unless Base.logger.nil?
end
end
end