From: Ankur Verma Date: Sat, 15 Nov 2025 11:41:16 +0000 (-0800) Subject: mtmd-cli: Avoid logging to stdout for model loading messages in mtmd-cli (#17277) X-Git-Tag: upstream/0.0.7446~379 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=c7b7db04456da9839ebd81ecde6f488c5fe41cbc;p=pkg%2Fggml%2Fsources%2Fllama.cpp mtmd-cli: Avoid logging to stdout for model loading messages in mtmd-cli (#17277) --- diff --git a/tools/mtmd/mtmd-cli.cpp b/tools/mtmd/mtmd-cli.cpp index bd20aad9..6679de30 100644 --- a/tools/mtmd/mtmd-cli.cpp +++ b/tools/mtmd/mtmd-cli.cpp @@ -285,7 +285,7 @@ int main(int argc, char ** argv) { } mtmd_cli_context ctx(params); - LOG("%s: loading model: %s\n", __func__, params.model.path.c_str()); + LOG_INF("%s: loading model: %s\n", __func__, params.model.path.c_str()); bool is_single_turn = !params.prompt.empty() && !params.image.empty();