fix: configure medium importance in configuration (#1273)

This commit is contained in:
Zaki Ali
2025-02-18 08:21:55 -08:00
committed by GitHub
parent c071900022
commit 4eb6d979d0

View File

@@ -634,7 +634,7 @@ pub fn configure_tool_output_dialog() -> Result<(), Box<dyn Error>> {
config.set("GOOSE_CLI_MIN_PRIORITY", Value::from(0.8))?;
cliclack::outro("Showing tool output of high importance only.")?;
}
"med" => {
"medium" => {
config.set("GOOSE_CLI_MIN_PRIORITY", Value::from(0.2))?;
cliclack::outro("Showing tool output of medium importance.")?;
}