From e4864b095e8d0435fc6e7d479c1fb04914990f6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0ediv=C3=BD?= Date: Sat, 7 Nov 2020 20:12:37 +0100 Subject: [PATCH] http listening not warning. --- internal/http/http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/http/http.go b/internal/http/http.go index 7ffe76dc..524c2510 100644 --- a/internal/http/http.go +++ b/internal/http/http.go @@ -85,7 +85,7 @@ func (s *ServerCtx) Start() { s.logger.Panic().Err(err).Msg("unable to start http server") } }() - s.logger.Warn().Msgf("http listening on %s", s.http.Addr) + s.logger.Info().Msgf("http listening on %s", s.http.Addr) } }