diff --git a/lib/win-exception-handler/src/exception_handling.rs b/lib/win-exception-handler/src/exception_handling.rs index 82992e721..04c3c7f2e 100644 --- a/lib/win-exception-handler/src/exception_handling.rs +++ b/lib/win-exception-handler/src/exception_handling.rs @@ -45,11 +45,9 @@ pub fn _call_protected( &mut out_result, ) }; - println!("result from __call_protected: {}", result); if result == 1 { Ok(()) } else { - println!("returning error from _call_protected"); Err(out_result) } }