Method: Main::Daemon#log!

Defined in:
lib/main/daemon.rb

#log!Object



355
356
357
358
359
360
361
# File 'lib/main/daemon.rb', line 355

def log!
  logger.info("DAEMON START - #{ Process.pid }")

  at_exit do
    logger.info("DAEMON STOP - #{ Process.pid }") rescue nil
  end
end