aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-02-20 23:36:41 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-02-20 23:36:41 +0000
commit9ee1302f86e2b2f7cf0aec9fad8a89e05eaf9195 (patch)
tree7b53353aaa98d36ed67294f95d2151ee581a4962 /actionpack/lib/action_controller
parent656fe3ccb609669fe76b48a07446618742e71970 (diff)
downloadrails-9ee1302f86e2b2f7cf0aec9fad8a89e05eaf9195.tar.gz
rails-9ee1302f86e2b2f7cf0aec9fad8a89e05eaf9195.tar.bz2
rails-9ee1302f86e2b2f7cf0aec9fad8a89e05eaf9195.zip
Remove debugging statement
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@725 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r--actionpack/lib/action_controller/caching.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/caching.rb b/actionpack/lib/action_controller/caching.rb
index c1c78147e3..173457ace0 100644
--- a/actionpack/lib/action_controller/caching.rb
+++ b/actionpack/lib/action_controller/caching.rb
@@ -111,7 +111,6 @@ module ActionController #:nodoc:
# If no options are provided, the current +options+ for this action is used. Example:
# cache_page "I'm the cached content", :controller => "lists", :action => "show"
def cache_page(content = nil, options = {})
- logger.info "Cached page: #{options.inspect} || #{caching_allowed}"
return unless perform_caching && caching_allowed
self.class.cache_page(content || @response.body, url_for(options.merge({ :only_path => true })))
end