summaryrefslogtreecommitdiffstats
path: root/glutin/src/application.rs
diff options
context:
space:
mode:
authorLibravatar Bingus <shankern@protonmail.com>2023-01-13 11:56:28 -0800
committerLibravatar Bingus <shankern@protonmail.com>2023-01-13 12:26:23 -0800
commit790fa3e7a01a790aa3f07083fe9abf6b68fa7ba1 (patch)
tree5fbbc65e7724cee44e9a180b5a0ca7edeb38f301 /glutin/src/application.rs
parentf78ccd9af9ced4c18ed4b56cbf838c6c5a5119ad (diff)
downloadiced-790fa3e7a01a790aa3f07083fe9abf6b68fa7ba1.tar.gz
iced-790fa3e7a01a790aa3f07083fe9abf6b68fa7ba1.tar.bz2
iced-790fa3e7a01a790aa3f07083fe9abf6b68fa7ba1.zip
Added tracing to multi_window applications
Diffstat (limited to '')
-rw-r--r--glutin/src/application.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/glutin/src/application.rs b/glutin/src/application.rs
index f43a47b9..a6479597 100644
--- a/glutin/src/application.rs
+++ b/glutin/src/application.rs
@@ -33,7 +33,7 @@ use std::ffi::CString;
use std::mem::ManuallyDrop;
use std::num::NonZeroU32;
-#[cfg(feature = "tracing")]
+#[cfg(feature = "trace")]
use tracing::{info_span, instrument::Instrument};
#[allow(unsafe_code)]
@@ -62,7 +62,7 @@ where
let mut debug = Debug::new();
debug.startup_started();
- #[cfg(feature = "tracing")]
+ #[cfg(feature = "trace")]
let _ = info_span!("Application::Glutin", "RUN").entered();
let mut event_loop = EventLoopBuilder::with_user_event().build();
@@ -298,7 +298,7 @@ where
settings.exit_on_close_request,
);
- #[cfg(feature = "tracing")]
+ #[cfg(feature = "trace")]
let run_instance =
run_instance.instrument(info_span!("Application", "LOOP"));
@@ -509,7 +509,7 @@ async fn run_instance<A, E, C>(
messages.push(message);
}
event::Event::RedrawRequested(_) => {
- #[cfg(feature = "tracing")]
+ #[cfg(feature = "trace")]
let _ = info_span!("Application", "FRAME").entered();
debug.render_started();