diff --git a/src/utils/process.c b/src/utils/process.c index 9552385..669f874 100644 --- a/src/utils/process.c +++ b/src/utils/process.c @@ -72,6 +72,7 @@ void process_exec(process *proc) { } } proc->pid = pid; + usleep(8000); // wait 8ms prevent log clutter log_info("%s running success -> PID = %d", proc->name, proc->pid); }