From 869ac46d1b359b1f8d91c051772ae78f251e81fe Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Thu, 10 Feb 2022 18:50:51 +0100 Subject: [PATCH] nvme: Allow --verbose flag to increase log level Mark the option as an increase option to increase the log level if needed. Signed-off-by: Daniel Wagner --- nvme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvme.c b/nvme.c index 59c687a3..c4d1be35 100644 --- a/nvme.c +++ b/nvme.c @@ -2423,7 +2423,7 @@ static int list_subsys(int argc, char **argv, struct command *cmd, OPT_ARGS(opts) = { OPT_FMT("output-format", 'o', &cfg.output_format, output_format_no_binary), - OPT_FLAG("verbose", 'v', &cfg.verbose, verbose), + OPT_INCR("verbose", 'v', &cfg.verbose, verbose), OPT_END() }; -- 2.50.1