diff options
| -rw-r--r-- | cmd/authzd/main.go | 2 | ||||
| -rw-r--r-- | cmd/sparkled/main.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cmd/authzd/main.go b/cmd/authzd/main.go index ebc23f7..d18aab6 100644 --- a/cmd/authzd/main.go +++ b/cmd/authzd/main.go @@ -74,7 +74,7 @@ func main() { defer server.GracefulStop() - pls.LogNow(ctx, log.Fields{"status": "read"}) + pls.LogNow(ctx, log.Fields{"status": "ready"}) socket := x.Must(net.Listen("tcp", ":10003")) pls.LogErrorNow(ctx, server.Serve(socket)) } diff --git a/cmd/sparkled/main.go b/cmd/sparkled/main.go index adc7ed1..c58d1ba 100644 --- a/cmd/sparkled/main.go +++ b/cmd/sparkled/main.go @@ -12,7 +12,7 @@ import ( ) func main() { - pls.LogError(context.Background(), http.ListenAndServe( + pls.LogErrorNow(context.Background(), http.ListenAndServe( env.Fetch("BIND_ADDR", ":8080"), app.New(x.Must(os.Getwd())), )) |
