class Process::Daemon

def mark_log

Mark the output log.
def mark_log
	File.open(log_file_path, "a") do |log_file|
		log_file.puts "=== Log Marked @ #{Time.now.to_s} [#{Process.pid}] ==="
	end
end