Flowdock
method

benchmark

Importance_1
v1.0.0 - Show latest stable - 0 notes - Class: ActionView::Helpers::BenchmarkHelper
benchmark(message = "Benchmarking", level = :info) public

Measures the execution time of a block in a template and reports the result to the log. Example:

 <% benchmark "Notes section" do %>
   <%= expensive_notes_operation %>
 <% end %>

Will add something like "Notes section (0.34523)" to the log.

You may give an optional logger level as the second argument (:debug, :info, :warn, :error). The default is :info.

Show source
Register or log in to add new notes.