aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-09-12 18:14:16 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-09-12 18:14:16 +0000
commit33e2ccfb2672f23589643dcd94f1f10b7a284b06 (patch)
treefd7861a4c766b0a14d4b632dd3e1ce61b73f42c1 /actionpack
parent284570fd00cc2a61dd93b35d270b1d8386618185 (diff)
downloadrails-33e2ccfb2672f23589643dcd94f1f10b7a284b06.tar.gz
rails-33e2ccfb2672f23589643dcd94f1f10b7a284b06.tar.bz2
rails-33e2ccfb2672f23589643dcd94f1f10b7a284b06.zip
Dont log creation of view class
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2225 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rwxr-xr-xactionpack/lib/action_controller/base.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb
index 71df8c23c4..59160c3e81 100755
--- a/actionpack/lib/action_controller/base.rb
+++ b/actionpack/lib/action_controller/base.rb
@@ -780,7 +780,6 @@ module ActionController #:nodoc:
def self.view_class
unless @view_class
# create a new class based on the default template class and include helper methods
- logger.debug "defining view class for #{name}" if logger
@view_class = Class.new(ActionView::Base)
@view_class.send(:include, master_helper_module)
end