From b480799281ea3f8cd0f199fbccbe74331b9be3d7 Mon Sep 17 00:00:00 2001 From: Seth Hubbard Date: Sun, 19 Jan 2025 19:04:26 -0600 Subject: [PATCH] Add `--verbose`, an alias for `--log-filter ghciwatch=debug,info`. --- src/cli.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/cli.rs b/src/cli.rs index 4d76eeaf..26baeb7a 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -82,6 +82,10 @@ pub struct Opts { #[arg(long, alias = "allow-eval")] pub enable_eval: bool, + /// More verbose logging output. + #[arg(long, alias = "--log-filter ghciwatch=debug,info")] + pub verbose: bool, + /// Clear the screen before reloads and restarts. #[arg(long)] pub clear: bool,