parent
c0aa8f63fd
commit
10af3c7e58
1 changed files with 2 additions and 2 deletions
|
@ -354,7 +354,7 @@ impl DebugPanel {
|
||||||
}
|
}
|
||||||
|
|
||||||
let Some(worktree) = curr_session.read(cx).worktree() else {
|
let Some(worktree) = curr_session.read(cx).worktree() else {
|
||||||
log::error!("Attempted to start a child session from non local debug session");
|
log::error!("Attempted to restart a non-running session");
|
||||||
return;
|
return;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -389,7 +389,7 @@ impl DebugPanel {
|
||||||
cx: &mut Context<Self>,
|
cx: &mut Context<Self>,
|
||||||
) {
|
) {
|
||||||
let Some(worktree) = parent_session.read(cx).worktree() else {
|
let Some(worktree) = parent_session.read(cx).worktree() else {
|
||||||
log::error!("Attempted to start a child session from non local debug session");
|
log::error!("Attempted to start a child-session from a non-running session");
|
||||||
return;
|
return;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue