diff --git a/src/main.rs b/src/main.rs index 6754f7b..f693af8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -13,6 +13,7 @@ fn get_job_stats(lodestone_ids: &[usize]) -> anyhow::Result>> let output = Command::new("lodestone-fetcher") .args(lodestone_ids.iter().map(|id| id.to_string())) .stdout(Stdio::piped()) + .stderr(Stdio::inherit()) .output() .expect("Failed to execute lodestone-fetcher");