More dbgs!

This commit is contained in:
Conrad Irwin
2025-04-18 11:51:56 -06:00
parent 3f283bd325
commit f47fcb9afa
3 changed files with 0 additions and 5 deletions

View File

@@ -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| {

View File

@@ -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 {

View File

@@ -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