1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 22:53:14 -04:00

eframe: reduce repaint log level from debug to trace

This commit is contained in:
Emil Ernerfeldt
2022-09-07 16:27:53 +02:00
parent 4b6826575e
commit 1fe08bf7e4

View File

@@ -120,7 +120,7 @@ fn run_and_return(event_loop: &mut EventLoop<RequestRepaintEvent>, mut winit_app
match event_result {
EventResult::Wait => {}
EventResult::RepaintAsap => {
tracing::debug!("Repaint caused by winit::Event: {:?}", event);
tracing::trace!("Repaint caused by winit::Event: {:?}", event);
next_repaint_time = Instant::now();
}
EventResult::RepaintAt(repaint_time) => {