Remove log on process creation

This commit is contained in:
pjht 2024-11-08 14:09:40 -06:00
parent c6c2136a9f
commit 4336130353
Signed by: pjht
GPG Key ID: CA239FC6934E6F3A

View File

@ -22,9 +22,6 @@ struct Serv {
impl proc_man_rpc::Server for Serv {
fn new_proc(&self, pid: u64, parent: Option<u64>) -> 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(),