Skip to content

Commit

Permalink
Reduce log message about diff timeout from warn to info (helix-editor…
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalkuthe authored and Shekhinah Memmel committed Dec 11, 2022
1 parent 0442698 commit 2165686
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helix-vcs/src/diff/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ impl<'a> EventAccumulator {
}
// Diff failed to complete in time log the event
// and wait until the diff occurs to trigger an async redraw
log::warn!("Diff computation timed out, update of diffs might appear delayed");
log::info!("Diff computation timed out, update of diffs might appear delayed");
diff_finished_notify.notified().await;
redraw_notify.notify_one();
});
Expand Down

0 comments on commit 2165686

Please sign in to comment.