diff options
Diffstat (limited to 'pkg/worker')
| -rw-r--r-- | pkg/worker/http.go | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/pkg/worker/http.go b/pkg/worker/http.go index c4f9950..1559ba2 100644 --- a/pkg/worker/http.go +++ b/pkg/worker/http.go @@ -3,6 +3,7 @@ package worker  import (  	"context"  	"errors" +	"log/slog"  	"net"  	"net/http"  	"net/url" @@ -36,6 +37,7 @@ func (s *ServerTask) Start(ctx context.Context) error {  	}  	go func() { +		slog.Info("Serving", "addr", listen.Addr().String(), "network", listen.Addr().Network())  		done <- server.Serve(listen)  	}() | 
