diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-04-30 08:19:14 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-04-30 08:19:14 +0000 |
commit | fe00c275cd1c379af5e4e2a72040febea6b98632 (patch) | |
tree | 1346cec9cc49eb7a204da072d1e2046b76361616 /actionpack/CHANGELOG | |
parent | 8694a79bb2d543a46867454b743c38ce85380e4e (diff) | |
download | rails-fe00c275cd1c379af5e4e2a72040febea6b98632.tar.gz rails-fe00c275cd1c379af5e4e2a72040febea6b98632.tar.bz2 rails-fe00c275cd1c379af5e4e2a72040febea6b98632.zip |
Removed dumping of template assigns on the rescue page as it would very easily include a ton of data making page loads take seconds (and the information was rarely helpful) #1222
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1246 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r-- | actionpack/CHANGELOG | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 3f7f3220b0..1c2e54418f 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Removed dumping of template assigns on the rescue page as it would very easily include a ton of data making page loads take seconds (and the information was rarely helpful) #1222 + * Added BenchmarkHelper that can measure the execution time of a block in a template and reports the result to the log. Example: <% benchmark "Notes section" do %> |