diff --git a/Cargo.lock b/Cargo.lock index 95ed1ba504af2fcc6c54766128884151b20a98b1..aa3f6a0ec0457e1eaadebfced815eda0e8a66541 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4642,6 +4642,7 @@ dependencies = [ "sysinfo 0.37.2", "task", "tasks_ui", + "telemetry", "terminal_view", "text", "theme", diff --git a/crates/debugger_ui/Cargo.toml b/crates/debugger_ui/Cargo.toml index f95712b05129b7f86699f658c4c2c3effbd7d216..fb79b1b0790b28d7204774720bf9c413cfed64e6 100644 --- a/crates/debugger_ui/Cargo.toml +++ b/crates/debugger_ui/Cargo.toml @@ -64,6 +64,7 @@ settings.workspace = true sysinfo.workspace = true task.workspace = true tasks_ui.workspace = true +telemetry.workspace = true terminal_view.workspace = true text.workspace = true theme.workspace = true diff --git a/crates/debugger_ui/src/stack_trace_view.rs b/crates/debugger_ui/src/stack_trace_view.rs index adefa5e499341fb4f4a3a89eb1f18579721794b6..02d6e793f290863cc002101bba00ac7a46446bb7 100644 --- a/crates/debugger_ui/src/stack_trace_view.rs +++ b/crates/debugger_ui/src/stack_trace_view.rs @@ -47,6 +47,8 @@ impl StackTraceView { window: &mut Window, cx: &mut Context, ) -> Self { + telemetry::event!("Stack Trace View Deployed"); + let multibuffer = cx.new(|_| MultiBuffer::new(Capability::ReadWrite)); let editor = cx.new(|cx| { let mut editor =