about summary refs log tree commit diff stats
path: root/internal/server/tcp.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/server/tcp.go')
-rw-r--r--internal/server/tcp.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/server/tcp.go b/internal/server/tcp.go
index b38da3d..1627854 100644
--- a/internal/server/tcp.go
+++ b/internal/server/tcp.go
@@ -1,11 +1,11 @@
 package server
 
 import (
-	"website/internal/listenfd"
+	"go.alanpearce.eu/x/listenfd"
 )
 
 func (s *Server) serveTCP() error {
-	l, err := listenfd.GetListener(0, s.Addr)
+	l, err := listenfd.GetListener(0, s.Addr, s.log.Named("tcp.listenfd"))
 	if err != nil {
 		return err
 	}