From 6998cc47604670bdc4e3fa142da33b0faf7892d3 Mon Sep 17 00:00:00 2001 From: Gabriele Musco Date: Sat, 17 Jun 2023 10:23:13 +0200 Subject: [PATCH] feat: always print runner stdout/err --- src/runner.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/runner.rs b/src/runner.rs index fbab65a..cb78490 100644 --- a/src/runner.rs +++ b/src/runner.rs @@ -48,6 +48,7 @@ macro_rules! logger_thread { if buf.is_empty() { continue; } + print!("{}", buf); match $sender .clone() .lock()