Skip to content

Instantly share code, notes, and snippets.

@pocke
Created August 16, 2018 13:21
Show Gist options
  • Save pocke/09cd1d2c283a9effc35ca929ac38fed4 to your computer and use it in GitHub Desktop.
Save pocke/09cd1d2c283a9effc35ca929ac38fed4 to your computer and use it in GitHub Desktop.
def log(msg)
puts "[#{Time.now}]: #{msg}"
end
log 'start'
big_str = 'a' * 500_000_000
log 'prepared'
begin
big_str.a
rescue => ex
log 'rescued'
ex.message
log 'message'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment