diff --git a/crates/project/src/debugger/dap_store.rs b/crates/project/src/debugger/dap_store.rs index 9598edfd52..ae6aff1f3f 100644 --- a/crates/project/src/debugger/dap_store.rs +++ b/crates/project/src/debugger/dap_store.rs @@ -431,7 +431,6 @@ impl DapStore { let (initialized_tx, initialized_rx) = oneshot::channel(); let start_debugging_tx = self.start_debugging_tx.clone(); - dbg!(&binary); let task = cx.spawn(async move |this, cx| { let start_client_task = this.update(cx, |this, cx| { diff --git a/crates/project/src/terminals.rs b/crates/project/src/terminals.rs index 9aaaa438ff..8ce6a7f8da 100644 --- a/crates/project/src/terminals.rs +++ b/crates/project/src/terminals.rs @@ -569,7 +569,6 @@ pub fn wrap_for_ssh( } else { shlex::try_quote(command).ok() }; - dbg!(&command); let args = args.iter().filter_map(|arg| shlex::try_quote(arg).ok()); command.into_iter().chain(args).join(" ") } else { diff --git a/crates/workspace/src/tasks.rs b/crates/workspace/src/tasks.rs index 13a478212e..5b5f0b4f72 100644 --- a/crates/workspace/src/tasks.rs +++ b/crates/workspace/src/tasks.rs @@ -97,8 +97,6 @@ impl Workspace { if !exit_code.success() { return anyhow::Ok(()); } - dbg!("a"); - let ret = project .update(cx, |project, cx| { project.dap_store().update(cx, |dap_store, cx| { @@ -106,7 +104,6 @@ impl Workspace { }) })? .await?; - dbg!("a"); ret } else { debug_config.definition