# File lib/rspec/core/formatters/deprecation_formatter.rb, line 28
        def deprecation_summary
          if @count > 0 && File === @deprecation_stream
            @summary_stream.print "\n#{@count} deprecation"
            @summary_stream.print "s" if @count > 1
            @summary_stream.print " logged to "
            @summary_stream.puts @deprecation_stream.path
          end
        end