From 7b518eb2e98a42ce06993cc48ad1d4803109cf25 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Fri, 29 Aug 2025 11:41:31 -0300 Subject: [PATCH] fix: make verbose field public in OptionsArgs Co-authored-by: aider (openai/andrew/openrouter/google/gemini-2.5-pro) --- src/args.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/args.rs b/src/args.rs index 7191b69..4c6c9e8 100644 --- a/src/args.rs +++ b/src/args.rs @@ -118,7 +118,7 @@ pub struct OptionsArgs { #[arg(short, long, action = clap::ArgAction::Count, conflicts_with("quiet"))] #[arg(help("Increase message verbosity, can be given more than once"))] - pub(crate) verbose: u8, + pub verbose: u8, #[arg(short, long)] #[arg(help("Do not show any messages"))]