# File lib/vegas/runner.rb, line 229
    def status
      if File.exists?(pid_file)
        logger.info "#{quoted_app_name} running"
        logger.info "PID #{File.read(pid_file)}"
        logger.info "URL #{File.read(url_file)}" if File.exists?(url_file)
      else
        logger.info "#{quoted_app_name} not running!"
      end
    end