From: Eric Curtin Date: Fri, 7 Feb 2025 14:42:46 +0000 (+0000) Subject: Make logging more verbose (#11714) X-Git-Tag: upstream/0.0.4719~52 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=d2fe216fb2fb7ca8627618c9ea3a2e7886325780;p=pkg%2Fggml%2Fsources%2Fllama.cpp Make logging more verbose (#11714) Debugged an issue with a user who was on a read-only filesystem. Signed-off-by: Eric Curtin --- diff --git a/examples/run/run.cpp b/examples/run/run.cpp index 39353ba3..eab60cad 100644 --- a/examples/run/run.cpp +++ b/examples/run/run.cpp @@ -346,7 +346,7 @@ class HttpClient { if (!output_file.empty()) { output_file_partial = output_file + ".partial"; if (!out.open(output_file_partial, "ab")) { - printe("Failed to open file\n"); + printe("Failed to open file for writing\n"); return 1; }