From 0077a5d115669938d5d68ac5cdeea4e0c80bc49f Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Thu, 30 Jan 2025 19:37:49 -0500 Subject: [PATCH] examples/http: Fix logging --- examples/http/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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