aboutsummaryrefslogtreecommitdiff
path: root/helix-vcs
diff options
context:
space:
mode:
authorPascal Kuthe2022-12-05 13:18:42 +0000
committerGitHub2022-12-05 13:18:42 +0000
commit1e31bc3f77040d4a3663b8b6bf72d8d3a632b88a (patch)
tree168b9268dd692130e3a299d16136986def745e5c /helix-vcs
parent03ca18b377c1dfd78e8ff6bfac6d418de237923b (diff)
Reduce log message about diff timeout from warn to info (#5012)
Diffstat (limited to 'helix-vcs')
-rw-r--r--helix-vcs/src/diff/worker.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-vcs/src/diff/worker.rs b/helix-vcs/src/diff/worker.rs
index b8659c9b..f4bb4dbf 100644
--- a/helix-vcs/src/diff/worker.rs
+++ b/helix-vcs/src/diff/worker.rs
@@ -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();
});