diff options
-rw-r--r-- | winit/src/debug/basic.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/winit/src/debug/basic.rs b/winit/src/debug/basic.rs index 09bb5ae1..67c6d8a2 100644 --- a/winit/src/debug/basic.rs +++ b/winit/src/debug/basic.rs @@ -149,6 +149,12 @@ impl Debug { format!("{: <30} {:?}", key, value) } + lines.push(format!( + "{} {} - {}", + env!("CARGO_PKG_NAME"), + env!("CARGO_PKG_VERSION"), + env!("CARGO_PKG_REPOSITORY"), + )); lines.push(key_value("Startup:", self.startup_duration)); lines.push(key_value("Update:", self.update_durations.average())); lines.push(key_value("View:", self.view_durations.average())); |