evidenceProcessThread = EvidenceProcess(evidenceProcessQueue, outputProcessQueue, config)
evidenceProcessThread.start()
evidenceProcessQueue.close()
outputProcessQueue.put("30|main|Started Evidence thread")
// Profile thread
// Create the queue for the profile thread
profilerProcessQueue = Queue()
After Change
cursesProcessQueue = Queue()
cursesProcessThread = CursesProcess(cursesProcessQueue, outputProcessQueue, args.verbose, args.debug, config)
cursesProcessThread.start()
outputProcessQueue.put("30|main|Started Curses thread [PID {}]".format(cursesProcessThread.pid))
elif not args.nologfiles:
// By parameter, this is True. Then check the conf. Only create the logs if the conf file says True
do_logs = read_configuration(config, "parameters", "create_log_files")