summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/trace.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/trace.rs b/src/trace.rs
index bd38fa4..cbb52c3 100644
--- a/src/trace.rs
+++ b/src/trace.rs
@@ -10,10 +10,9 @@ use nix::{
};
use std::{
fs::File,
- // fs::File,
io::{self, Write},
os::unix::process::CommandExt,
- process::Command,
+ process::{Command, Stdio},
str,
};
@@ -23,6 +22,7 @@ pub fn exec(command: &str) -> anyhow::Result<()> {
let mut command = Command::new(params[0]);
command.args(params[1..].iter());
+ command.stdout(Stdio::null());
unsafe {
command.pre_exec(|| ptrace::traceme().map_err(|e| e.into()));