debug print removed

This commit is contained in:
Drew Tada 2024-02-07 17:18:51 -05:00
parent dd64718e40
commit e3ae308461

View File

@ -137,7 +137,6 @@ impl Guest for Component {
&& state.our.package() == source.package()
{
let Ok(action) = serde_json::from_slice::<TerminalAction>(&body) else {
println!("HERE {}", String::from_utf8(body).unwrap_or_default());
println!("terminal: failed to parse action from: {}", source);
continue;
};
@ -473,3 +472,5 @@ fn handle_process_cleanup(caps_to_remove: Vec<(ProcessId, Capability)>) -> anyho
}
Ok(())
}
fn get_entry() -> anyhow::Result<()> {}