]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
import: downgrade HTTP error code log message levels
authorLennart Poettering <lennart@poettering.net>
Mon, 26 Feb 2024 14:47:40 +0000 (15:47 +0100)
committerLennart Poettering <lennart@poettering.net>
Fri, 1 Mar 2024 21:25:42 +0000 (22:25 +0100)
Let's downgrade log levels a bit on HTTP error codes. After all we
gracefully handle many of them, and we do generated an extra message for
the ones which are fatal anyway, hence there's no point in emphasizing
the HTTP erro message levels as we currently do.

src/import/pull-job.c

index bed7e6403057057c986a16f1a26baf38fb1064f9..a4feda40812539ba4d0326cefd6b38e490c3e5d8 100644 (file)
@@ -187,7 +187,7 @@ void pull_job_curl_on_finished(CurlGlue *g, CURL *curl, CURLcode result) {
                                 }
                         }
 
-                        r = log_error_errno(
+                        r = log_notice_errno(
                                         status == 404 ? SYNTHETIC_ERRNO(ENOMEDIUM) : SYNTHETIC_ERRNO(EIO), /* Make the most common error recognizable */
                                         "HTTP request to %s failed with code %li.", j->url, status);
                         goto finish;