1 2 # Show a list of actions sorted by time taken. Useful for finding slow actions. 3 cat log/development.log | awk '/Completed/ { print "[" $3 "] - " $0 }' | sort -nr
Then again, I don't have anything beyond double digits in the test log.
This line can be added to a script, such as script/analyze_logs for convenience.
-Q
You need to create an account or log in to post comments to this site.
I guess that's motivation to get all actions in the single digits :)