From ff32aa899e5153346beb6f9ba4bb7d75ebe83831 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Thu, 24 Oct 2024 18:55:12 +0200 Subject: [PATCH] Include the package version in the "error when computing" messages As this helps when there are lots of packages with the same name. --- guix-data-service/jobs/load-new-guix-revision.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/guix-data-service/jobs/load-new-guix-revision.scm b/guix-data-service/jobs/load-new-guix-revision.scm index 67023b3..294c830 100644 --- a/guix-data-service/jobs/load-new-guix-revision.scm +++ b/guix-data-service/jobs/load-new-guix-revision.scm @@ -517,8 +517,9 @@ (lambda args (simple-format (current-error-port) - "warning: error when computing ~A derivation for system ~A (~A): ~A\n" + "warning: error when computing ~A@~A derivation for system ~A (~A): ~A\n" (package-name package) + (package-version package) system (or target "no target") args)