mirror of
https://github.com/watchexec/watchexec.git
synced 2024-11-13 07:41:11 +01:00
Differentiate trace logs when ending supervisor
This commit is contained in:
parent
f880b0b38a
commit
b728bfecfc
1 changed files with 2 additions and 2 deletions
|
@ -69,7 +69,7 @@ impl Supervisor {
|
|||
Err(err) => {
|
||||
error!(%err, "while waiting on process");
|
||||
errors.send(err).await.ok();
|
||||
trace!("marking process as done");
|
||||
trace!("marking process as done, closing supervisor task early");
|
||||
mark_done.send(true).ok();
|
||||
return;
|
||||
}
|
||||
|
@ -124,7 +124,7 @@ impl Supervisor {
|
|||
}
|
||||
}
|
||||
|
||||
trace!("marking process as done");
|
||||
trace!("marking process as done, closing supervisor task");
|
||||
mark_done.send(true).ok();
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue