summaryrefslogtreecommitdiff
path: root/nex.go
diff options
context:
space:
mode:
authortjp <tjp@ctrl-c.club>2023-11-14 21:48:48 -0700
committertjp <tjp@ctrl-c.club>2023-11-14 21:48:48 -0700
commitb081308884cb01d235336c900f65dc0a638f08c8 (patch)
tree6174e31ca0a4b03aab568c74591d35e8c9a2a29f /nex.go
parent04b5ba5d9d02a987e74d04bd61b6dc2c49c31a5d (diff)
minor optimization for git routes
Diffstat (limited to 'nex.go')
-rw-r--r--nex.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/nex.go b/nex.go
index 06cbb4d..d64f588 100644
--- a/nex.go
+++ b/nex.go
@@ -20,6 +20,8 @@ func buildNexServer(server Server, config *Configuration) (sr.Server, error) {
info := level.Info(baselog)
errlog := level.Error(baselog)
+ _ = info.Log("msg", "starting nex server", "addr", addr)
+
hostname := ""
if len(server.Hostnames) > 0 {
hostname = server.Hostnames[0]