1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-30 13:20:05 -04:00

Lower some logging from debug -> trace

This commit is contained in:
Emil Ernerfeldt
2024-01-19 13:44:04 +01:00
parent f7ec8f210d
commit 76ec982958
3 changed files with 6 additions and 6 deletions

View File

@@ -66,7 +66,7 @@ fn run_and_return(
) -> Result<()> {
use winit::{event_loop::ControlFlow, platform::run_on_demand::EventLoopExtRunOnDemand};
log::debug!("Entering the winit event loop (run_on_demand)…");
log::trace!("Entering the winit event loop (run_on_demand)…");
// When to repaint what window
let mut windows_next_repaint_times = HashMap::default();
@@ -231,7 +231,7 @@ fn run_and_exit(
mut winit_app: impl WinitApp + 'static,
) -> Result<()> {
use winit::event_loop::ControlFlow;
log::debug!("Entering the winit event loop (run)…");
log::trace!("Entering the winit event loop (run)…");
// When to repaint what window
let mut windows_next_repaint_times = HashMap::default();