Skip to content

Instantly share code, notes, and snippets.

@iamatypeofwalrus
Last active April 2, 2025 14:18
Show Gist options
  • Save iamatypeofwalrus/9237651 to your computer and use it in GitHub Desktop.
Save iamatypeofwalrus/9237651 to your computer and use it in GitHub Desktop.
Print stacktrace without raising and Exception in Ruby and/or Rails

Print a stacktrace in Ruby or Rails without raising an exception

Why

You know what method is being and you want to figure out how it got there. Raising an exception is a bit harsh since all you want is a stack trace

How

puts caller

Seriously. It's that easy. If you're getting too much information you could

puts caller[0..2]

Since caller is just an array of strings.

@alexmiddeleer
Copy link

alexmiddeleer commented Aug 31, 2018

❤️ Luckily this is now the first result in google for ruby put stack.

@mddoor
Copy link

mddoor commented Apr 21, 2021

excellent

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment