purge the word app

This commit is contained in:
Aiden McClelland
2021-09-09 12:53:37 -06:00
committed by Aiden McClelland
parent 558d4196a7
commit 0847389cd1
7 changed files with 18 additions and 18 deletions

View File

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