Skip to content

Instantly share code, notes, and snippets.

@gabeodess
Last active August 29, 2015 14:10
Show Gist options
  • Save gabeodess/99aa8831afe8d0883486 to your computer and use it in GitHub Desktop.
Save gabeodess/99aa8831afe8d0883486 to your computer and use it in GitHub Desktop.
A simple helper for debugging long running code.
# Usage:
# timestamp('some descriptive key') do
# sleep 20
# end
# => check your logs.
def timestamp(key, &block)
start = Time.now
yield
p ["custom-timestamp: #{key}", Time.now - start] if !Rails.env.test?
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment