instance method
finish_request_instrumentation
Ruby on Rails 7.2.3
Since v7.2.3 PrivateSignature
finish_request_instrumentation(handle, logger_tag_pop_count)
No documentation comment.
Parameters
-
handlereq -
logger_tag_pop_countreq
Source
# File railties/lib/rails/rack/logger.rb, line 81
def finish_request_instrumentation(handle, logger_tag_pop_count)
handle.finish
logger.pop_tags(logger_tag_pop_count) if logger.respond_to?(:pop_tags) && logger_tag_pop_count > 0
ActiveSupport::LogSubscriber.flush_all!
end
Defined in railties/lib/rails/rack/logger.rb line 81
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Rails::Rack::Logger