Remove unnecessary logging

This commit is contained in:
pjht 2024-09-23 15:42:12 -05:00
parent b903788696
commit 432a89e3e9
Signed by: pjht
GPG Key ID: CA239FC6934E6F3A

View File

@ -48,14 +48,7 @@ fn main() {
};
let syslog_client = syslog_rpc::Client::new(syslog_pid);
syslog_client.subscribe_to_binary("devfs".to_string(), vec![1]);
syslog_client
.send_text_message("init_phase2", "Starting PS/2 driver")
.unwrap();
Command::new("/bin/ps2").spawn().unwrap();
syslog_client
.send_text_message("init_phase2", "Starting PTY server")
.unwrap();
Command::new("/bin/pty_server").spawn().unwrap();
let mut msg_handler = SyslogMessageHandler::new();