From 0eb7c42aa1f9de452d7cc56ed4af384a5bb23e25 Mon Sep 17 00:00:00 2001 From: Vishal Rana Date: Tue, 18 Oct 2016 13:11:07 -0700 Subject: [PATCH] fixed #680 Signed-off-by: Vishal Rana --- echo.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/echo.go b/echo.go index 4d7b72d8..a520c5a7 100644 --- a/echo.go +++ b/echo.go @@ -526,10 +526,6 @@ func (e *Echo) config(gs *graceful.Server, s *http.Server, address string) { if gs == e.gracefulTLS && !e.DisableHTTP2 { e.TLSConfig.NextProtos = append(e.TLSConfig.NextProtos, "h2") } - // Global log - slog.SetOutput(e.Logger.Output()) - slog.SetPrefix(e.Logger.Prefix() + ": ") - slog.SetFlags(0) } // Start starts the HTTP server.