method

query_source_location

Importance_0
v7.2.3 - Show latest stable - 0 notes - Class: ActiveRecord::LogSubscriber
query_source_location() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/log_subscriber.rb, line 130
        def query_source_location
          Thread.each_caller_location do |location|
            frame = backtrace_cleaner.clean_frame(location)
            return frame if frame
          end
          nil
        end
Register or log in to add new notes.