Reduce log message about diff timeout from warn to info (#5012)

This commit is contained in:
Pascal Kuthe 2022-12-05 14:18:42 +01:00 committed by GitHub
parent 03ca18b377
commit 1e31bc3f77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -185,7 +185,7 @@ async fn accumulate_debounced_events(
}
// 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();
});