Skip to content

Instantly share code, notes, and snippets.

@creadone
Created January 13, 2020 18:09
Show Gist options
  • Save creadone/bf6e11dcd52db2cba2eadd083c670a19 to your computer and use it in GitHub Desktop.
Save creadone/bf6e11dcd52db2cba2eadd083c670a19 to your computer and use it in GitHub Desktop.
Trace caller method
class Record < ApplicationRecord
TracePoint.trace(:call) do |tp|
pp [tp.method_id, tp.lineno, tp.path]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment