From d2fe216fb2fb7ca8627618c9ea3a2e7886325780 Mon Sep 17 00:00:00 2001 From: Eric Curtin Date: Fri, 7 Feb 2025 14:42:46 +0000 Subject: [PATCH] Make logging more verbose (#11714) Debugged an issue with a user who was on a read-only filesystem. Signed-off-by: Eric Curtin --- examples/run/run.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/run/run.cpp b/examples/run/run.cpp index 39353ba30..eab60cad1 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; }