# File lib/pilfer/middleware.rb, line 23
    def run_profiler(description, &downstream)
      if file_matcher
        profiler.profile_files_matching(file_matcher, description,
                                        :submit => :async, &downstream)
      else
        profiler.profile(description, :submit => :async, &downstream)
      end
    end