From 12af7ede88e25ce133bb860661ae1d8cc57d8f54 Mon Sep 17 00:00:00 2001 From: Eric Curtin Date: Thu, 6 Feb 2025 15:36:05 +0000 Subject: [PATCH] Make logging more verbose 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; }