aboutsummaryrefslogtreecommitdiff
path: root/src/background.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/background.rs')
-rw-r--r--src/background.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/background.rs b/src/background.rs
index f4b889ea..34e96ff7 100644
--- a/src/background.rs
+++ b/src/background.rs
@@ -78,6 +78,8 @@ impl BackgroundRunner {
workers.push(tokio::spawn(async move {
if let Err(e) = worker(stop_signal).await {
eprintln!("Worker stopped with error: {}", e);
+ } else {
+ println!("A worker exited successfully (which one?)");
}
}));
}