We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bfaeb3 commit 477e486Copy full SHA for 477e486
src/shims/trace/parent.rs
@@ -57,7 +57,6 @@ impl Iterator for ChildListener {
57
match stat {
58
// Child exited normally with a specific code set
59
wait::WaitStatus::Exited(_, code) => {
60
- //eprintln!("Exited main {code}");
61
let code = self.override_retcode.unwrap_or(code);
62
return Some(ExecEvent::Died(Some(code)));
63
}
@@ -243,7 +242,6 @@ fn wait_for_signal(
243
242
let (signal, pid) = match stat {
244
// Report the cause of death, if we know it
245
246
- //eprintln!("Exited sig1 {code}");
247
return Err(ExecError::Died(Some(code)));
248
249
wait::WaitStatus::Signaled(_, _, _) => return Err(ExecError::Died(None)),
0 commit comments