diff options
author | Christopher Baines <mail@cbaines.net> | 2020-04-09 22:33:05 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-04-10 20:34:47 +0100 |
commit | 89a47de2fb202560b4872be5b48119d5fdc9a733 (patch) | |
tree | a1124659eedd7c3e8509e38024d7f68b3940f1db /scripts | |
parent | 8094709aeb975585b1c9290774c35a678b2f10a3 (diff) | |
download | build-coordinator-89a47de2fb202560b4872be5b48119d5fdc9a733.tar build-coordinator-89a47de2fb202560b4872be5b48119d5fdc9a733.tar.gz |
Print out the host and port when running a HTTP server
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/guix-build-coordinator.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/guix-build-coordinator.in b/scripts/guix-build-coordinator.in index 1e4fdc3..bfc17d4 100644 --- a/scripts/guix-build-coordinator.in +++ b/scripts/guix-build-coordinator.in @@ -176,6 +176,9 @@ (parameterize ((%show-error-details (assoc-ref opts 'show-error-details))) + (simple-format #t "listening on ~A:~A\n" + (assq-ref opts 'host) + (assq-ref opts 'port)) (http-agent-messaging-start-server (assq-ref opts 'port) (assq-ref opts 'host) |