]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
common: fix --help for --verbosity (#23278)
authorJohannes Gäßler <redacted>
Tue, 19 May 2026 19:34:04 +0000 (21:34 +0200)
committerGitHub <redacted>
Tue, 19 May 2026 19:34:04 +0000 (21:34 +0200)
common/arg.cpp

index 13dfd4135627b48f21c3583513e4153bebba624b..87462f49e76cfbe9683d53ec579d313e012ea0db 100644 (file)
@@ -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;