Skip to content

Commit f96a86b

Browse files
author
Pil Eghoff
committed
Dont panic on unhandled message
1 parent fb3e87a commit f96a86b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/app_state.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,8 @@ impl RunningState {
449449
return Ok(Some(AppState::Exit));
450450
}
451451

452-
_ => panic!("Unhandled request"),
452+
Command::SetExceptionBreakpoints(_) => {}
453+
_ => error!("Unhandled request: {:?}", request),
453454
}
454455
Ok(None)
455456
}

0 commit comments

Comments
 (0)