fix error log on service issue (#360)

This commit is contained in:
Groovie | Mango 2024-03-15 12:27:23 +01:00 committed by GitHub
parent 41c40a8128
commit af2e41d6ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -460,7 +460,7 @@ pub async fn main() -> anyhow::Result<()> {
res = main => {
// This should never happen
log::error!("Services quit unexpectedly {res:?}");
bail!("")
bail!("Service quit unexpectedly {res:?}");
}
_ = ctrl_c_signal => {
log::info!("Received ctrl+c signal");