diff --git a/crates/goose-cli/src/session/output.rs b/crates/goose-cli/src/session/output.rs index c4801c4182ca..07659f592820 100644 --- a/crates/goose-cli/src/session/output.rs +++ b/crates/goose-cli/src/session/output.rs @@ -76,7 +76,9 @@ thread_local! { .unwrap_or(Theme::Ansi) ) ); - static SHOW_FULL_TOOL_OUTPUT: RefCell = const { RefCell::new(false) }; + static SHOW_FULL_TOOL_OUTPUT: RefCell = RefCell::new( + Config::global().get_param::("GOOSE_SHOW_FULL_OUTPUT").unwrap_or(false) + ); } pub fn set_theme(theme: Theme) {