diff options
author | Christopher Baines <mail@cbaines.net> | 2022-11-18 10:49:07 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2022-11-18 10:49:07 +0000 |
commit | 76daf7f6bcec8b8a83c66593c314201888452b8c (patch) | |
tree | b6cbdc45838e69367ba8b2fbf8920aee81d16d75 | |
parent | 2b00c7071b58ab2ec348b5020d9a1840df53d90f (diff) | |
download | qa-frontpage-76daf7f6bcec8b8a83c66593c314201888452b8c.tar qa-frontpage-76daf7f6bcec8b8a83c66593c314201888452b8c.tar.gz |
Add more logging around creating patch branches
-rw-r--r-- | guix-qa-frontpage/manage-patch-branches.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/guix-qa-frontpage/manage-patch-branches.scm b/guix-qa-frontpage/manage-patch-branches.scm index 657af1c..7db0ef5 100644 --- a/guix-qa-frontpage/manage-patch-branches.scm +++ b/guix-qa-frontpage/manage-patch-branches.scm @@ -362,6 +362,7 @@ (assoc-ref patchwork-series "date") "~Y-~m-~dT~H:~M:~S"))) #f))) + (simple-format #t "creating branch for issue ~A\n" issue-number) (create-branch-for-issue issue-number (number->string (assoc-ref patchwork-series @@ -370,7 +371,8 @@ 100))) (simple-format (current-error-port) - "finished processing patch branches\n") + "finished processing patch branches (last issue: ~A)\n" + (car (last patchwork-series))) (sleep 3600)) (setenv "GIT_SSH_COMMAND" |