More dbgs!
This commit is contained in:
@@ -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| {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user