Skip to content

Commit 1e31bc3

Browse files
authored
Reduce log message about diff timeout from warn to info (helix-editor#5012)
1 parent 03ca18b commit 1e31bc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

helix-vcs/src/diff/worker.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ impl<'a> EventAccumulator {
185185
}
186186
// Diff failed to complete in time log the event
187187
// and wait until the diff occurs to trigger an async redraw
188-
log::warn!("Diff computation timed out, update of diffs might appear delayed");
188+
log::info!("Diff computation timed out, update of diffs might appear delayed");
189189
diff_finished_notify.notified().await;
190190
redraw_notify.notify_one();
191191
});

0 commit comments

Comments
 (0)