address bugs

This commit is contained in:
Aiden McClelland
2021-08-30 13:31:51 -06:00
committed by Aiden McClelland
parent c278e7fbc2
commit cdca5e1b67
8 changed files with 232 additions and 83 deletions

View File

@@ -291,10 +291,10 @@ impl Manager {
.unwrap(); // recv is still in scope, cannot fail
}
Ok(Err(e)) => {
todo!("application crashed")
log::error!("application crashed: {}: {}", e.0, e.1)
}
Err(e) => {
todo!("failed to start application: {}", e)
log::error!("failed to start application: {}", e)
}
}
}