From: Alberto Leiva Popper Date: Tue, 16 Nov 2021 19:27:18 +0000 (-0600) Subject: Logging: Upgrade HTTP and rsync requests to INFO X-Git-Tag: 1.5.4~26 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dbc0e29cae744d0d2ff949cdb3635af5335db9f1;p=thirdparty%2FFORT-validator.git Logging: Upgrade HTTP and rsync requests to INFO Maybe f1xes #62. Needs feedback. --- diff --git a/src/http/http.c b/src/http/http.c index 3aa82c96..b63a008a 100644 --- a/src/http/http.c +++ b/src/http/http.c @@ -240,7 +240,7 @@ http_fetch(struct http_handler *handler, char const *uri, long *response_code, args.dst = file; setopt_writedata(handler->curl, &args); - pr_val_debug("HTTP GET: %s", uri); + pr_val_info("HTTP GET: %s", uri); res = curl_easy_perform(handler->curl); pr_val_debug("Done. Total bytes transferred: %zu", args.total_bytes); diff --git a/src/rsync/rsync.c b/src/rsync/rsync.c index 091025c7..f8336ca4 100644 --- a/src/rsync/rsync.c +++ b/src/rsync/rsync.c @@ -400,6 +400,7 @@ do_rsync(struct rpki_uri *uri, bool is_ta, bool log_operation) if (error) return error; + pr_val_info("rsync: %s", uri_get_global(uri)); if (log_val_enabled(LOG_DEBUG)) { pr_val_debug("Executing RSYNC:"); for (i = 0; i < args_len + 1; i++)