diff --git a/appmgr/src/action/docker.rs b/appmgr/src/action/docker.rs index adb1f3781..9e0123c0e 100644 --- a/appmgr/src/action/docker.rs +++ b/appmgr/src/action/docker.rs @@ -68,7 +68,7 @@ impl DockerAction { }; cmd.stdout(std::process::Stdio::piped()); cmd.stderr(std::process::Stdio::piped()); - let mut handle = dbg!(cmd).spawn().with_kind(crate::ErrorKind::Docker)?; + let mut handle = cmd.spawn().with_kind(crate::ErrorKind::Docker)?; if let (Some(input), Some(stdin)) = (&input_buf, &mut handle.stdin) { use tokio::io::AsyncWriteExt; stdin