# File lib/vegas/runner.rb, line 103
    def start(path = nil)
      logger.info "Running with Windows Settings" if WINDOWS
      logger.info "Running with JRuby" if JRUBY
      logger.info "Starting #{quoted_app_name}..."
      begin
        check_for_running(path)
        find_port
        write_url
        launch!(url, path)
        daemonize! unless options[:foreground]
        run!
      rescue RuntimeError => e
        logger.warn "There was an error starting #{quoted_app_name}: #{e}"
        exit
      end
    end