From: Lennart Poettering Date: Mon, 26 Feb 2024 14:47:40 +0000 (+0100) Subject: import: downgrade HTTP error code log message levels X-Git-Tag: v256-rc1~671^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d304686ca39603016044bf8fe839c54007e6756e;p=thirdparty%2Fsystemd.git import: downgrade HTTP error code log message levels 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. --- diff --git a/src/import/pull-job.c b/src/import/pull-job.c index bed7e640305..a4feda40812 100644 --- a/src/import/pull-job.c +++ b/src/import/pull-job.c @@ -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;