diff options
Diffstat (limited to 'guix-build-coordinator/agent-messaging/http')
-rw-r--r-- | guix-build-coordinator/agent-messaging/http/server.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/guix-build-coordinator/agent-messaging/http/server.scm b/guix-build-coordinator/agent-messaging/http/server.scm index 798e8fc..4233ebc 100644 --- a/guix-build-coordinator/agent-messaging/http/server.scm +++ b/guix-build-coordinator/agent-messaging/http/server.scm @@ -390,6 +390,8 @@ port. Also, the port used can be changed by passing the --port option.\n" (hash-ref update-channels-by-filename filename) (lambda (existing-channels) + (log-msg logger 'DEBUG build-uuid + ": adding channel to list for " filename) (hash-set! update-channels-by-filename filename (cons update-channel @@ -407,6 +409,9 @@ port. Also, the port used can be changed by passing the --port option.\n" (stat:size (stat filename)) 0)) + (log-msg logger 'DEBUG build-uuid + ": starting thread to compute hash for " filename) + (call-with-new-thread (lambda () (with-exception-handler |