From db94c5b7c3d66a6c3bae7687e10d0a82b2bd1103 Mon Sep 17 00:00:00 2001 From: Michael Neale Date: Thu, 4 Sep 2025 00:27:09 +1000 Subject: [PATCH] fix: need to send errors to appropriate stream (#4491) --- crates/goose-cli/src/logging.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/goose-cli/src/logging.rs b/crates/goose-cli/src/logging.rs index 97ae3f1c..4ffacaaa 100644 --- a/crates/goose-cli/src/logging.rs +++ b/crates/goose-cli/src/logging.rs @@ -106,6 +106,7 @@ fn setup_logging_internal( // Create console logging layer for development - INFO and above only let console_layer = fmt::layer() + .with_writer(std::io::stderr) .with_target(true) .with_level(true) .with_ansi(true)