From: Johannes Gäßler Date: Wed, 17 Dec 2025 17:44:13 +0000 (+0100) Subject: common: clarify instructions for bug reports (#18134) X-Git-Tag: upstream/0.0.7599~143 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=a2c199e479bc739222c3ef24e563935dbaaf077c;p=pkg%2Fggml%2Fsources%2Fllama.cpp common: clarify instructions for bug reports (#18134) --- diff --git a/common/common.cpp b/common/common.cpp index 5a8cf524..d4e8c740 100644 --- a/common/common.cpp +++ b/common/common.cpp @@ -1092,7 +1092,7 @@ common_init_result::common_init_result(common_params & params) : auto cparams = common_context_params_to_llama(params); if (params.fit_params) { - LOG_INF("%s: fitting params to device memory, to report bugs during this step use -fit off (or --verbose if you can't)\n", __func__); + LOG_INF("%s: fitting params to device memory, for bugs during this step try to reproduce them with -fit off, or provide --verbose logs if the bug only occurs with -fit on\n", __func__); llama_params_fit(params.model.path.c_str(), &mparams, &cparams, params.tensor_split, params.tensor_buft_overrides.data(), params.fit_params_target, params.fit_params_min_ctx, params.verbosity >= 4 ? GGML_LOG_LEVEL_DEBUG : GGML_LOG_LEVEL_ERROR);