aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--guix-build-coordinator/agent-messaging/http/server.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/guix-build-coordinator/agent-messaging/http/server.scm b/guix-build-coordinator/agent-messaging/http/server.scm
index cc88659..23fa120 100644
--- a/guix-build-coordinator/agent-messaging/http/server.scm
+++ b/guix-build-coordinator/agent-messaging/http/server.scm
@@ -409,15 +409,16 @@ port. Also, the port used can be changed by passing the --port option.\n"
(display
(simple-format
#f
- "receiving ~A
+ "received ~A
took ~A seconds
- data transfered: ~AMB
+ data transfered: ~AMB (~A bytes)
speed (MB/s): ~A
"
(basename output-file-name)
seconds-elapsed
(rationalize (exact->inexact (/ bytes-read 1000000))
0.1)
+ bytes-read
(rationalize (/ (/ bytes-read 1000000)
seconds-elapsed)
0.1))))