# File lib/rack/mount/utils.rb, line 17
    def silence_debug
      old_debug, $DEBUG = $DEBUG, nil
      yield
    ensure
      $DEBUG = old_debug
    end