Skip to content

Commit

Permalink
Remove debug statements in lightproc code (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
vertexclique committed Jan 29, 2020
1 parent e72d87e commit 3561ba0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions lightproc/src/recoverable_handle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,7 @@ impl<R> Future for RecoverableHandle<R> {
Poll::Ready(Some(Ok(val))) => Poll::Ready(Some(val)),
Poll::Ready(Some(Err(_))) => {
if let Some(after_panic_cb) = self.0.stack().after_panic.clone() {
println!("EXECUTED");
(*after_panic_cb.clone())(self.0.stack().state.clone());
println!("DONE");
}

Poll::Ready(None)
Expand Down

0 comments on commit 3561ba0

Please sign in to comment.