From: Michael Tremer Date: Fri, 4 Oct 2024 17:33:23 +0000 (+0000) Subject: job: Show what job we are connecting to X-Git-Tag: 0.9.30~1170 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5e3072b37ee88543ee7eea02a010cb0ac49bfe03;p=pakfire.git job: Show what job we are connecting to Signed-off-by: Michael Tremer --- diff --git a/src/libpakfire/job.c b/src/libpakfire/job.c index 4ff2bfa46..982ffabe9 100644 --- a/src/libpakfire/job.c +++ b/src/libpakfire/job.c @@ -275,11 +275,11 @@ static int pakfire_job_connect(sd_event_source* s, uint64_t usec, void* data) { char job_id[UUID_STR_LEN]; int r; - CTX_INFO(job->ctx, "Connecting...\n"); - // Format the job ID as string uuid_unparse(job->job_id, job_id); + CTX_INFO(job->ctx, "Connecting to job %s...\n", job_id); + // Create a new xfer r = pakfire_httpclient_create_xfer(&xfer, job->client, "/api/v1/jobs/%s", job_id); if (r)