We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4dcb9a commit d9507bdCopy full SHA for d9507bd
src/execution/live_updater.rs
@@ -252,10 +252,10 @@ impl FlowLiveUpdater {
252
while let Some(result) = self.tasks.join_next().await {
253
match result {
254
Err(e) if !e.is_cancelled() => {
255
- error!("{:?}", e);
+ error!("A background task in FlowLiveUpdater failed to join: {:?}", e);
256
}
257
Ok(Err(e)) => {
258
- error!("{:?}", e.context("Error in applying changes from a source"));
+ error!("Error reported by a source update task during live update: {:?}", e);
259
260
_ => {}
261
0 commit comments