Skip to content

Commit

Permalink
Move URI to the end for greater overview
Browse files Browse the repository at this point in the history
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1716 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
dhh committed Jul 5, 2005
1 parent 84afbbb commit 607ce7f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion actionpack/lib/action_controller/benchmarking.rb
Expand Up @@ -39,9 +39,10 @@ def perform_action_with_benchmark
perform_action_without_benchmark perform_action_without_benchmark
else else
runtime = [Benchmark::measure{ perform_action_without_benchmark }.real, 0.0001].max runtime = [Benchmark::measure{ perform_action_without_benchmark }.real, 0.0001].max
log_message = "Completed #{complete_request_uri} in #{sprintf("%.5f", runtime)} (#{(1 / runtime).floor} reqs/sec)" log_message = "Completed in #{sprintf("%.5f", runtime)} (#{(1 / runtime).floor} reqs/sec)"
log_message << rendering_runtime(runtime) if @rendering_runtime log_message << rendering_runtime(runtime) if @rendering_runtime
log_message << active_record_runtime(runtime) if Object.const_defined?("ActiveRecord") && ActiveRecord::Base.connected? log_message << active_record_runtime(runtime) if Object.const_defined?("ActiveRecord") && ActiveRecord::Base.connected?
log_message << " [#{complete_request_uri}]"
logger.info(log_message) logger.info(log_message)
end end
end end
Expand Down

0 comments on commit 607ce7f

Please sign in to comment.