diff options
author | Christopher Baines <mail@cbaines.net> | 2019-09-01 12:35:29 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2019-09-01 13:12:10 +0100 |
commit | af581784b2bdbd41dbef18cb154c8ce4e3a5a511 (patch) | |
tree | fe8debf593e8025d24fedaa5134d3e3529f9bb48 /guix-data-service | |
parent | f118ed0bf9a4ed9e94722399a787a46f9b0304eb (diff) | |
download | data-service-af581784b2bdbd41dbef18cb154c8ce4e3a5a511.tar data-service-af581784b2bdbd41dbef18cb154c8ce4e3a5a511.tar.gz |
Log the guix store path being used
In the load-new-guix-revision module.
Diffstat (limited to 'guix-data-service')
-rw-r--r-- | guix-data-service/jobs/load-new-guix-revision.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/guix-data-service/jobs/load-new-guix-revision.scm b/guix-data-service/jobs/load-new-guix-revision.scm index 3c2fb45..041d3fe 100644 --- a/guix-data-service/jobs/load-new-guix-revision.scm +++ b/guix-data-service/jobs/load-new-guix-revision.scm @@ -559,6 +559,9 @@ WHERE job_id = $1" (let ((new-store-path (derivation->output-path derivation))) (set! store-path new-store-path) + (simple-format (current-error-port) + "debug: guix-store-path: ~A\n" + new-store-path) new-store-path))))))))) (define (nss-certs-store-path store) |