method

call

rails latest stable - Class: Rails::Rack::SilenceRequest

Method not available on this version

This method is only available on newer versions. The first available version (v8.0.0) is shown here.

call(env)
public

No documentation available.

# File railties/lib/rails/rack/silence_request.rb, line 24
      def call(env)
        if env["PATH_INFO"] == @path
          Rails.logger.silence { @app.call(env) }
        else
          @app.call(env)
        end
      end