From: Johannes Gäßler Date: Tue, 19 May 2026 19:34:04 +0000 (+0200) Subject: common: fix --help for --verbosity (#23278) X-Git-Tag: upstream/0.0.10438~1198 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=57cb35c8867fce383140d9b34a811920daed8c46;p=pkg%2Fggml%2Fsources%2Fllama.cpp common: fix --help for --verbosity (#23278) --- diff --git a/common/arg.cpp b/common/arg.cpp index 13dfd4135..87462f49e 100644 --- a/common/arg.cpp +++ b/common/arg.cpp @@ -3364,7 +3364,8 @@ common_params_context common_params_parser_init(common_params & params, llama_ex " - 1: error\n" " - 2: warning\n" " - 3: info\n" - " - 4: debug\n" + " - 4: trace (more info)\n" + " - 5: debug\n" "(default: %d)\n", params.verbosity), [](common_params & params, int value) { params.verbosity = value;