From 9936ad45e186ee431aade920674a2dc283937355 Mon Sep 17 00:00:00 2001 From: Jack Wills <32690432+mrjackwills@users.noreply.github.com> Date: Sun, 6 Oct 2024 15:16:29 +0000 Subject: [PATCH] fix: use stderr when saving logs --- src/input_handler/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/input_handler/mod.rs b/src/input_handler/mod.rs index 5ea42ee..8228f59 100644 --- a/src/input_handler/mod.rs +++ b/src/input_handler/mod.rs @@ -200,6 +200,7 @@ impl InputHandler { let docker = rx.await?; let options = Some(LogsOptions:: { + stderr: true, stdout: true, timestamps: args.timestamp, since: 0,