diff --git a/src/main.rs b/src/main.rs index a708e60..028a2de 100644 --- a/src/main.rs +++ b/src/main.rs @@ -22,9 +22,6 @@ struct Serv { impl proc_man_rpc::Server for Serv { fn new_proc(&self, pid: u64, parent: Option) -> Result<(), Errno> { - let syslog_pid = syscalls::try_get_registered(2).unwrap(); - let syslog_client = syslog_rpc::Client::new(syslog_pid); - syslog_client.send_text_message("proc_man", format!("Process {pid} created with parent {parent:?}")).unwrap(); self.processes.write().insert(pid, Process { stdio: [None; 3], cli_args: Vec::new(),