diff --git a/examples/http/main.go b/examples/http/main.go index 834b522..9c2c15a 100644 --- a/examples/http/main.go +++ b/examples/http/main.go @@ -42,7 +42,7 @@ func (this *httpServer) Init(ctx context.Context) error { } func (this *httpServer) Run() error { - log.Printf("[http] listening on %s", this.server.Addr) + log.Printf("(i) [http-server] listening on %s", this.server.Addr) err := this.server.ListenAndServe() if errors.Is(err, http.ErrServerClosed) { return nil } return err