How can I display the page load time in the view, similar to how the log file shows "Completed 200 OK in 19ms (Views: 16.8ms | Models: 0.497ms)"
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You might wanna use Microseconds better:
View Code:
|
|||
|
|
|
You can do this.. add a before_filter to your application_controller:
in the view (I am using HAML):
This is not going to be exactly the same as the time you see in the logs, since it's only from the before_filter to the place where it was called in the view, but it should be close. |
|||||
|