class ActiveRecord::LogSubscriber

def query_source_location

Experimental RBS support (using type sampling data from the type_fusion project).

def query_source_location: () -> String

This signature was generated using 1 sample from 1 application.

def query_source_location
  Thread.each_caller_location do |location|
    frame = backtrace_cleaner.clean_frame(location)
    return frame if frame
  end
  nil
end