Skip to content

Commit d9507bd

Browse files
authored
chore: add more info in log (#614)
1 parent e4dcb9a commit d9507bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/execution/live_updater.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,10 +252,10 @@ impl FlowLiveUpdater {
252252
while let Some(result) = self.tasks.join_next().await {
253253
match result {
254254
Err(e) if !e.is_cancelled() => {
255-
error!("{:?}", e);
255+
error!("A background task in FlowLiveUpdater failed to join: {:?}", e);
256256
}
257257
Ok(Err(e)) => {
258-
error!("{:?}", e.context("Error in applying changes from a source"));
258+
error!("Error reported by a source update task during live update: {:?}", e);
259259
}
260260
_ => {}
261261
}

0 commit comments

Comments
 (0)