Add debug logging to process spawning for distant-local

pull/218/head
Chip Senkbeil 10 months ago
parent c08224c4b7
commit 894e6541ea
No known key found for this signature in database
GPG Key ID: 35EF1F8EC72A4131

@ -85,6 +85,7 @@ impl ProcessInstance {
let args = cmd_and_args.split_off(1);
let cmd = cmd_and_args.into_iter().next().unwrap();
debug!("Spawning process: {cmd} {args:?}");
let mut child: Box<dyn Process> = match pty {
Some(size) => Box::new(PtyProcess::spawn(
cmd.clone(),

Loading…
Cancel
Save