diff options
author | Christopher Baines <mail@cbaines.net> | 2024-06-11 15:12:54 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-06-12 17:37:28 +0100 |
commit | 675317772920faf66d0568ca40cac467e4588174 (patch) | |
tree | 48ae91b28f4b5ca3b95db1c71af794a304061aaf | |
parent | 76e3d605c207e7ddd648ad8f7396c6b919c09f77 (diff) | |
download | nar-herder-675317772920faf66d0568ca40cac467e4588174.tar nar-herder-675317772920faf66d0568ca40cac467e4588174.tar.gz |
Include the pid in the starting server message
As this can be useful to see what process the log line relates to.
-rw-r--r-- | nar-herder/server.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nar-herder/server.scm b/nar-herder/server.scm index 3087b09..b1c85ef 100644 --- a/nar-herder/server.scm +++ b/nar-herder/server.scm @@ -913,7 +913,7 @@ (iota (length schedulers)) schedulers)) - (log-msg 'INFO "starting server, listening on " + (log-msg 'INFO "starting server (" (getpid) "), listening on " (assq-ref opts 'host) ":" (assq-ref opts 'port)) (run-server/patched |