# File lib/daemons/application.rb, line 173
    def start
      @group.create_monitor(@group.applications[0] || self)
      
      case options[:mode]
        when :none
          start_none
        when :exec
          start_exec
        when :load
          start_load
        when :proc
          start_proc
        else
          start_load
      end
    end