module ProcessHost::Process::Start

Public Instance Methods

start() click to toggle source
Calls superclass method
# File lib/process_host/process.rb, line 18
def start
  logger.trace { "Starting process (ProcessName: #{self.class.process_name})" }

  super

  logger.debug { "Process started (ProcessName: #{self.class.process_name})" }

  AsyncInvocation::Incorrect
end