Răsfoiți Sursa

mtmd-cli: Avoid logging to stdout for model loading messages in mtmd-cli (#17277)

Ankur Verma 2 luni în urmă
părinte
comite
c7b7db0445
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      tools/mtmd/mtmd-cli.cpp

+ 1 - 1
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();